The Cicada Vaccine Forecasting Engine and Guide
0.1.0 - ci-build
The Cicada Vaccine Forecasting Engine and Guide - Local Development build (v0.1.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions
| Draft as of 2026-02-11 |
<StructureMap xmlns="http://hl7.org/fhir">
<id value="MapVaccineCodes"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml"><pre>/// url = "http://fhirfli.dev/fhir/ig/cicada/StructureMap/map-vaccine-codes"
/// name = "MapVaccineCodes"
/// title = "null"
/// status = "draft"
// Define the usage of FHIR resource types with specific aliases
uses "http://hl7.org/fhir/StructureDefinition/Observation" alias sourceObservation as source
uses "http://hl7.org/fhir/StructureDefinition/Condition" alias sourceCondition as source
uses "http://hl7.org/fhir/StructureDefinition/Procedure" alias sourceProcedure as source
uses "http://hl7.org/fhir/StructureDefinition/Immunization" alias sourceImmunization as source
uses "http://hl7.org/fhir/StructureDefinition/Medication" alias sourceMedication as source
uses "http://hl7.org/fhir/StructureDefinition/MedicationStatement" alias sourceMedicationStatement as source
uses "http://hl7.org/fhir/StructureDefinition/MedicationRequest" alias sourceMedicationRequest as source
uses "http://hl7.org/fhir/StructureDefinition/MedicationAdministration" alias sourceMedicationAdministration as source
uses "http://hl7.org/fhir/StructureDefinition/MedicationDispense" alias sourceMedicationDispense as source
uses "http://hl7.org/fhir/StructureDefinition/Condition" alias targetCondition as target
group MapToVaccineConditionObservation(source src : any, target tgt : targetCondition) {
src as sourceObservation where (src is Observation) -> tgt then MapFromObservation(src, tgt) "SourceObservationToTarget";
src as sourceCondition where (src is Condition) -> tgt then MapFromCondition(src, tgt) "SourceConditionToTarget";
src as sourceProcedure where (src is Procedure) -> tgt then MapFromProcedure(src, tgt) "SourceProcedureToTarget";
src as sourceImmunization where (src is Immunization) -> tgt then MapFromImmunization(src, tgt) "SourceImmunizationToTarget";
src as sourceMedication where (src is Medication) -> tgt then MapFromMedication(src, tgt) "SourceMedicationToTarget";
src as sourceMedicationStatement where (src is MedicationStatement) -> tgt then MapFromMedicationStatement(src, tgt) "SourceMedStatementToTarget";
src as sourceMedicationRequest where (src is MedicationRequest) -> tgt then MapFromMedicationRequest(src, tgt) "SourceMedRequestToTarget";
src as sourceMedicationAdministration where (src is MedicationAdministration) -> tgt then MapFromMedicationAdministration(src, tgt) "SourceMedAdminToTarget";
src as sourceMedicationDispense where (src is MedicationDispense) -> tgt then MapFromMedicationDispense(src, tgt) "SourceMedDispenseToTarget";
}
group MapFromObservation(source src : sourceObservation, target tgt : targetCondition) {
src -> tgt.status = 'active' "SetObservationStatus";
src.code as code -> code.coding as coding then ApplyCommonMappings(coding, tgt) "ApplyObsMappings";
src -> tgt.onsetDateTime = src.effectiveDateTime "SetObsOnsetDateTime";
src -> tgt.onsetPeriod = src.effectivePeriod "SetObsOnsetPeriod";
src -> tgt.onsetDateTime = src.effectiveInstant "SetObsOnsetInstant";
}
group MapFromCondition(source src : sourceCondition, target tgt : targetCondition) {
src -> tgt.status = 'active' "SetConditionStatus";
src.code as code -> code.coding as coding then ApplyCommonMappings(coding, tgt) "ApplyCondMappings";
src -> tgt.onsetDateTime = src.onsetDateTime "SetCondOnsetDateTime";
src -> tgt.onsetAge = src.onsetAge "SetCondOnsetAge";
src -> tgt.onsetPeriod = src.onsetPeriod "SetCondOnsetPeriod";
src -> tgt.onsetRange = src.onsetRange "SetCondOnsetRange";
src -> tgt.onsetString = src.onsetString "SetCondOnsetString";
src -> tgt.abatementDateTime = src.abatementDateTime "SetCondAbatementDateTime";
src -> tgt.abatementAge = src.abatementAge "SetCondAbatementAge";
src -> tgt.abatementPeriod = src.abatementPeriod "SetCondAbatementPeriod";
src -> tgt.abatementRange = src.abatementRange "SetCondAbatementRange";
src -> tgt.abatementString = src.abatementString "SetCondAbatementString";
}
group MapFromProcedure(source src : sourceProcedure, target tgt : targetCondition) {
src -> tgt.status = 'active' "SetProcedureStatus";
src.code as code -> code.coding as coding then ApplyCommonMappings(coding, tgt) "ApplyProcedureMappings";
src -> tgt.onsetDateTime = src.performedDateTime "SetProcedureOnsetDateTime";
src -> tgt.onsetAge = src.performedAge "SetProcedureOnsetAge";
src -> tgt.onsetPeriod = src.performedPeriod "SetProcedureOnsetPeriod";
src -> tgt.onsetRange = src.performedRange "SetProcedureOnsetRange";
src -> tgt.onsetString = src.performedString "SetProcedureOnsetString";
}
group MapFromImmunization(source src : sourceImmunization, target tgt : targetCondition) {
src -> tgt.status = 'active' "SetImmunizationStatus";
src.vaccineCode as code -> code.coding as coding then ApplyCommonMappings(coding, tgt) "ApplyImmunizationMappings";
src -> tgt.onsetDateTime = src.occurrenceDateTime "SetImmunizationOnsetDateTime";
src -> tgt.onsetString = src.occurrenceString "SetImmunizationOnsetString";
}
group MapFromMedication(source src : sourceMedication, target tgt : targetCondition) {
src -> tgt.status = 'active' "SetMedicationStatus";
src.code as code -> code.coding as coding then ApplyCommonMappings(coding, tgt) "ApplyMedicationMappings";
}
// TODO(Dokotela): what about medicationReference?
group MapFromMedicationStatement(source src : sourceMedicationStatement, target tgt : targetCondition) {
src -> tgt.status = 'active' "SetMedStatementStatus";
src.medicationCodeableConcept as code -> code.coding as coding then ApplyCommonMappings(coding, tgt) "ApplyMedStatementMappings";
}
group MapFromMedicationRequest(source src : sourceMedicationRequest, target tgt : targetCondition) {
src -> tgt.status = 'active' "SetMedRequestStatus";
src.medicationCodeableConcept as code -> code.coding as coding then ApplyCommonMappings(coding, tgt) "ApplyMedRequestMappings";
src -> tgt.onsetDateTime = src.authoredOn "SetMedRequestOnsetDateTime";
}
group MapFromMedicationAdministration(source src : sourceMedicationAdministration, target tgt : targetCondition) {
src -> tgt.status = 'active' "SetMedAdminStatus";
src.medicationCodeableConcept as code -> code.coding as coding then ApplyCommonMappings(coding, tgt) "ApplyMedAdminMappings";
src -> tgt.onsetDateTime = src.effectiveDateTime "SetMedAdminOnsetDateTime";
src -> tgt.onsetPeriod = src.effectivePeriod "SetMedAdminOnsetPeriod";
}
group MapFromMedicationDispense(source src : sourceMedicationDispense, target tgt : targetCondition) {
src -> tgt.status = 'active' "SetMedDispenseStatus";
src.medicationCodeableConcept as code -> code.coding as coding then ApplyCommonMappings(coding, tgt) "ApplyMedDispenseMappings";
src -> tgt.onsetDateTime = src.whenHandedOver "SetMedDispenseOnsetDateTime";
}
group ApplyCommonMappings(source src : Coding, target tgt : targetCondition) {
src.system as systemValue where systemValue = 'http://snomed.info/sct' -> tgt.code = create('CodeableConcept') as newCC then {
src -> newCC.coding = create('Coding') as newCoding then {
src.code as codeValue where codeValue = '370388006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '003', newCoding.display = 'Patient Immunocompromised' "SetSNOMEDCode370388006";
src.code as codeValue where codeValue = '234336002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '004', newCoding.display = 'Hemopoietic stem cell transplant [procedure]' "SetSNOMEDCode234336002";
src.code as codeValue where codeValue = '50711007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '005', newCoding.display = 'Viral hepatitis type C [disorder]' "SetSNOMEDCode50711007";
src.code as codeValue where codeValue = '77386006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '007', newCoding.display = 'Patient currently pregnant [finding]' "SetSNOMEDCode77386006";
src.code as codeValue where codeValue = '102874004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '007', newCoding.display = 'Possible pregnancy [finding]' "SetSNOMEDCode102874004";
src.code as codeValue where codeValue = '255409004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '007', newCoding.display = 'Pregnant woman [person]' "SetSNOMEDCode255409004";
src.code as codeValue where codeValue = '413712001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '009', newCoding.display = 'Breastfeeding [mother] [observable entity]' "SetSNOMEDCode413712001";
src.code as codeValue where codeValue = '230744007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '010', newCoding.display = 'Cerebrospinal fluid leak [disorder]' "SetSNOMEDCode230744007";
src.code as codeValue where codeValue = '449840001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '011', newCoding.display = 'Cochlear prosthesis in situ [finding]' "SetSNOMEDCode449840001";
src.code as codeValue where codeValue = '43252007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '011', newCoding.display = 'Cochlear prosthesis, device [physical object]' "SetSNOMEDCode43252007";
src.code as codeValue where codeValue = '359612003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '011', newCoding.display = 'Implantation of cochlear prosthetic device [procedure]' "SetSNOMEDCode359612003";
src.code as codeValue where codeValue = '31323000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '013', newCoding.display = 'Severe combined immunodeficiency disease [disorder]' "SetSNOMEDCode31323000";
src.code as codeValue where codeValue = '73211009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '014', newCoding.display = 'Diabetes mellitus [disorder]' "SetSNOMEDCode73211009";
src.code as codeValue where codeValue = '328383001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '015', newCoding.display = 'Chronic liver disease [disorder]' "SetSNOMEDCode328383001";
src.code as codeValue where codeValue = '19943007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '015', newCoding.display = 'Cirrhosis of liver [disorder]' "SetSNOMEDCode19943007";
src.code as codeValue where codeValue = '128238001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '016', newCoding.display = 'Chronic heart disease [disorder]' "SetSNOMEDCode128238001";
src.code as codeValue where codeValue = '42343007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '016', newCoding.display = 'Congestive heart failure [disorder]' "SetSNOMEDCode42343007";
src.code as codeValue where codeValue = '57809008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '016', newCoding.display = 'Myocardial disease [disorder]' "SetSNOMEDCode57809008";
src.code as codeValue where codeValue = '12770006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '016', newCoding.display = 'Cyanotic congenital heart disease [disorder]' "SetSNOMEDCode12770006";
src.code as codeValue where codeValue = '413839001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '017', newCoding.display = 'Chronic lung disease [disorder]' "SetSNOMEDCode413839001";
src.code as codeValue where codeValue = '13645005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '017', newCoding.display = 'Chronic obstructive lung disease [disorder]' "SetSNOMEDCode13645005";
src.code as codeValue where codeValue = '87433001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '017', newCoding.display = 'Pulmonary emphysema [disorder]' "SetSNOMEDCode87433001";
src.code as codeValue where codeValue = '278971009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '018', newCoding.display = 'Hepatitis A Immune [Finding]' "SetSNOMEDCode278971009";
src.code as codeValue where codeValue = '271511000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '019', newCoding.display = 'Hepatitis B Immune [Finding]' "SetSNOMEDCode271511000";
src.code as codeValue where codeValue = '371111005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '020', newCoding.display = 'Measles Immune [finding]' "SetSNOMEDCode371111005";
src.code as codeValue where codeValue = '371112003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '021', newCoding.display = 'Mumps Immune [finding]' "SetSNOMEDCode371112003";
src.code as codeValue where codeValue = '278968001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '022', newCoding.display = 'Rubella Immune [finding]' "SetSNOMEDCode278968001";
src.code as codeValue where codeValue = '371113008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '023', newCoding.display = 'Varicella Immune' "SetSNOMEDCode371113008";
src.code as codeValue where codeValue = '38907003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '024', newCoding.display = 'Varicella [Disorder]' "SetSNOMEDCode38907003";
src.code as codeValue where codeValue = '4740000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '025', newCoding.display = 'Herpes Zoster [Disorder]' "SetSNOMEDCode4740000";
src.code as codeValue where codeValue = '86406008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '026', newCoding.display = 'Human immunodeficiency virus infection [disorder]' "SetSNOMEDCode86406008";
src.code as codeValue where codeValue = '427314002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '026', newCoding.display = 'Antiviral therapy [procedure]' "SetSNOMEDCode427314002";
src.code as codeValue where codeValue = '390798007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '027', newCoding.display = 'Asthma finding [finding]' "SetSNOMEDCode390798007";
src.code as codeValue where codeValue = '195967001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '027', newCoding.display = 'Asthma [disorder]' "SetSNOMEDCode195967001";
src.code as codeValue where codeValue = '35327006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '028', newCoding.display = 'Intussusception [morphologic abnormality]' "SetSNOMEDCode35327006";
src.code as codeValue where codeValue = '49723003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '028', newCoding.display = 'Intussusception of intestine [disorder]' "SetSNOMEDCode49723003";
src.code as codeValue where codeValue = '69776003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '029', newCoding.display = 'Acute gastroenteritis [disorder]' "SetSNOMEDCode69776003";
src.code as codeValue where codeValue = '56717001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '031', newCoding.display = 'Tuberculosis [disorder]' "SetSNOMEDCode56717001";
src.code as codeValue where codeValue = '372763006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '033', newCoding.display = 'Amantadine [substance]' "SetSNOMEDCode372763006";
src.code as codeValue where codeValue = '51361008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '033', newCoding.display = 'Amantadine [product]' "SetSNOMEDCode51361008";
src.code as codeValue where codeValue = '372532009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '033', newCoding.display = 'Rimantadine [substance]' "SetSNOMEDCode372532009";
src.code as codeValue where codeValue = '108712009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '033', newCoding.display = 'Rimantadine [product]' "SetSNOMEDCode108712009";
src.code as codeValue where codeValue = '387010007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '033', newCoding.display = 'Zanamivir [substance]' "SetSNOMEDCode387010007";
src.code as codeValue where codeValue = '116100000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '033', newCoding.display = 'Zanamivir [product]' "SetSNOMEDCode116100000";
src.code as codeValue where codeValue = '412261005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '033', newCoding.display = 'Oseltamivir [substance]' "SetSNOMEDCode412261005";
src.code as codeValue where codeValue = '386142008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '033', newCoding.display = 'Oseltamivir [product]' "SetSNOMEDCode386142008";
src.code as codeValue where codeValue = '405742008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '034', newCoding.display = 'Aspirin therapy finding [finding]' "SetSNOMEDCode405742008";
src.code as codeValue where codeValue = '76102007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '036', newCoding.display = 'Male homosexual [finding]' "SetSNOMEDCode76102007";
src.code as codeValue where codeValue = '225531006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '036', newCoding.display = 'Homosexual behavior [finding]' "SetSNOMEDCode225531006";
src.code as codeValue where codeValue = '225516002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '037', newCoding.display = 'Multiple sexual contacts [finding]' "SetSNOMEDCode225516002";
src.code as codeValue where codeValue = '228460004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '037', newCoding.display = 'Multiple current sexual partners [finding]' "SetSNOMEDCode228460004";
src.code as codeValue where codeValue = '228466005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '037', newCoding.display = 'Commitment to sexual relationship [observable entity]' "SetSNOMEDCode228466005";
src.code as codeValue where codeValue = '225517006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '038', newCoding.display = 'Sexual partners [observable entity]' "SetSNOMEDCode225517006";
src.code as codeValue where codeValue = '11723008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '038', newCoding.display = 'Contact with [contextual qualifier] [qualifier value]' "SetSNOMEDCode11723008";
src.code as codeValue where codeValue = '165806002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '038', newCoding.display = 'Hepatitis B surface antigen positive [finding]' "SetSNOMEDCode165806002";
src.code as codeValue where codeValue = '305489005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '039', newCoding.display = 'Under care of genitourinary medicine physician [finding]' "SetSNOMEDCode305489005";
src.code as codeValue where codeValue = '305679000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '039', newCoding.display = 'Seen by genitourinary medicine physician [finding]' "SetSNOMEDCode305679000";
src.code as codeValue where codeValue = '8098009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '039', newCoding.display = 'Sexually transmitted infectious disease [disorder]' "SetSNOMEDCode8098009";
src.code as codeValue where codeValue = '307052004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '040', newCoding.display = 'Illicit drug use [finding]' "SetSNOMEDCode307052004";
src.code as codeValue where codeValue = '228366006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '040', newCoding.display = 'Finding relating to drug misuse behavior [finding]' "SetSNOMEDCode228366006";
src.code as codeValue where codeValue = '226034001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '041', newCoding.display = 'Injecting drug user [finding]' "SetSNOMEDCode226034001";
src.code as codeValue where codeValue = '228388006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '041', newCoding.display = 'Intravenous drug user [finding]' "SetSNOMEDCode228388006";
src.code as codeValue where codeValue = '145101000119102' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '041', newCoding.display = 'Intravenous cocaine abuse [disorder]' "SetSNOMEDCode145101000119102";
src.code as codeValue where codeValue = '403746009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '041', newCoding.display = 'Skin lesion due to intravenous drug abuse [disorder]' "SetSNOMEDCode403746009";
src.code as codeValue where codeValue = '860699005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '041', newCoding.display = 'Deep vein thrombosis of lower extremity due to intravenous drug use [disorder]' "SetSNOMEDCode860699005";
src.code as codeValue where codeValue = '77176002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '042', newCoding.display = 'Smoker [finding]' "SetSNOMEDCode77176002";
src.code as codeValue where codeValue = '228281002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '043', newCoding.display = 'Problem drinker [finding]' "SetSNOMEDCode228281002";
src.code as codeValue where codeValue = '7200002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '043', newCoding.display = 'Alcoholism [disorder]' "SetSNOMEDCode7200002";
src.code as codeValue where codeValue = '159138004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '050', newCoding.display = 'Microbiologist [occupation]' "SetSNOMEDCode159138004";
src.code as codeValue where codeValue = '14698002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '050', newCoding.display = 'Medical microbiologist [occupation]' "SetSNOMEDCode14698002";
src.code as codeValue where codeValue = '24932003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '050', newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' "SetSNOMEDCode24932003";
src.code as codeValue where codeValue = '17872004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '050', newCoding.display = 'Neisseria meningitidis [organism]' "SetSNOMEDCode17872004";
src.code as codeValue where codeValue = '159138004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '051', newCoding.display = 'Microbiologist [occupation]' "SetSNOMEDCode159138004";
src.code as codeValue where codeValue = '14698002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '051', newCoding.display = 'Medical microbiologist [occupation]' "SetSNOMEDCode14698002";
src.code as codeValue where codeValue = '159282002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '051', newCoding.display = 'Laboratory technician [occupation]' "SetSNOMEDCode159282002";
src.code as codeValue where codeValue = '24932003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '051', newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' "SetSNOMEDCode24932003";
src.code as codeValue where codeValue = '5595000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '051', newCoding.display = 'Salmonella Typhi [organism]' "SetSNOMEDCode5595000";
src.code as codeValue where codeValue = '159282002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '052', newCoding.display = 'Laboratory technician [occupation]' "SetSNOMEDCode159282002";
src.code as codeValue where codeValue = '24932003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '052', newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' "SetSNOMEDCode24932003";
src.code as codeValue where codeValue = '26630006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '052', newCoding.display = 'Yellow fever virus [organism]' "SetSNOMEDCode26630006";
src.code as codeValue where codeValue = '159282002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '053', newCoding.display = 'Laboratory technician [occupation]' "SetSNOMEDCode159282002";
src.code as codeValue where codeValue = '24932003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '053', newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' "SetSNOMEDCode24932003";
src.code as codeValue where codeValue = '59881000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '053', newCoding.display = 'Rabies virus [organism]' "SetSNOMEDCode59881000";
src.code as codeValue where codeValue = '159282002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '054', newCoding.display = 'Laboratory technician [occupation]' "SetSNOMEDCode159282002";
src.code as codeValue where codeValue = '24932003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '054', newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' "SetSNOMEDCode24932003";
src.code as codeValue where codeValue = '44172002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '054', newCoding.display = 'Human poliovirus [organism]' "SetSNOMEDCode44172002";
src.code as codeValue where codeValue = '223366009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '055', newCoding.display = 'Healthcare professional [occupation]' "SetSNOMEDCode223366009";
src.code as codeValue where codeValue = '223366009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '056', newCoding.display = 'Healthcare professional [occupation]' "SetSNOMEDCode223366009";
src.code as codeValue where codeValue = '24932003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '056', newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' "SetSNOMEDCode24932003";
src.code as codeValue where codeValue = '44172002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '056', newCoding.display = 'Human poliovirus [organism]' "SetSNOMEDCode44172002";
src.code as codeValue where codeValue = '26369006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '057', newCoding.display = 'Public health nurse [occupation]' "SetSNOMEDCode26369006";
src.code as codeValue where codeValue = '68867008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '057', newCoding.display = 'Public health dentist [occupation]' "SetSNOMEDCode68867008";
src.code as codeValue where codeValue = '307969004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '057', newCoding.display = 'Public health officer [occupation]' "SetSNOMEDCode307969004";
src.code as codeValue where codeValue = '56466003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '057', newCoding.display = 'Public health physician [occupation]' "SetSNOMEDCode56466003";
src.code as codeValue where codeValue = '56079002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '057', newCoding.display = 'Public health veterinarian [occupation]' "SetSNOMEDCode56079002";
src.code as codeValue where codeValue = '60008001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '057', newCoding.display = 'Public health nutritionist [occupation]' "SetSNOMEDCode60008001";
src.code as codeValue where codeValue = '24932003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '057', newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' "SetSNOMEDCode24932003";
src.code as codeValue where codeValue = '87612001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '057', newCoding.display = 'Blood [substance]' "SetSNOMEDCode87612001";
src.code as codeValue where codeValue = '32457005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '057', newCoding.display = 'Body fluid [substance]' "SetSNOMEDCode32457005";
src.code as codeValue where codeValue = '223366009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '059', newCoding.display = 'Healthcare professional [occupation]' "SetSNOMEDCode223366009";
src.code as codeValue where codeValue = '158942005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '059', newCoding.display = 'Residential child care worker [occupation]' "SetSNOMEDCode158942005";
src.code as codeValue where codeValue = '158939004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '059', newCoding.display = 'Child care officer [occupation]' "SetSNOMEDCode158939004";
src.code as codeValue where codeValue = '73851001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '059', newCoding.display = 'Plumber [general] [occupation]' "SetSNOMEDCode73851001";
src.code as codeValue where codeValue = '160157004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '059', newCoding.display = 'Sewerman [occupation]' "SetSNOMEDCode160157004";
src.code as codeValue where codeValue = '266006009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '059', newCoding.display = 'Food/drink processor [occupation]' "SetSNOMEDCode266006009";
src.code as codeValue where codeValue = '274272004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '059', newCoding.display = 'Catering services occupation [occupation]' "SetSNOMEDCode274272004";
src.code as codeValue where codeValue = '160133004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '059', newCoding.display = 'Packer - food/garden produce [occupation]' "SetSNOMEDCode160133004";
src.code as codeValue where codeValue = '265940000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '060', newCoding.display = 'Animal health occupation [occupation]' "SetSNOMEDCode265940000";
src.code as codeValue where codeValue = '159091009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '061', newCoding.display = 'Trainer - performing animals [occupation]' "SetSNOMEDCode159091009";
src.code as codeValue where codeValue = '24932003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '062', newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' "SetSNOMEDCode24932003";
src.code as codeValue where codeValue = '59881000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '062', newCoding.display = 'Rabies virus [organism]' "SetSNOMEDCode59881000";
src.code as codeValue where codeValue = '65853000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '063', newCoding.display = 'Student [occupation]' "SetSNOMEDCode65853000";
src.code as codeValue where codeValue = '257561002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '063', newCoding.display = 'Further education establishment [environment]' "SetSNOMEDCode257561002";
src.code as codeValue where codeValue = '90688005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '066', newCoding.display = 'Chronic renal failure syndrome [disorder]' "SetSNOMEDCode90688005";
src.code as codeValue where codeValue = '20078004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '068', newCoding.display = 'Substance abuse treatment center [environment]' "SetSNOMEDCode20078004";
src.code as codeValue where codeValue = '257656006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '069', newCoding.display = 'Penal institution [environment]' "SetSNOMEDCode257656006";
src.code as codeValue where codeValue = '410519009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '070', newCoding.display = 'At risk context [qualifier value]' "SetSNOMEDCode410519009";
src.code as codeValue where codeValue = '443684005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '070', newCoding.display = 'Disease outbreak [event]' "SetSNOMEDCode443684005";
src.code as codeValue where codeValue = '11723008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '071', newCoding.display = 'Contact with [contextual qualifier] [qualifier value]' "SetSNOMEDCode11723008";
src.code as codeValue where codeValue = '165806002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '071', newCoding.display = 'Hepatitis B surface antigen positive [finding]' "SetSNOMEDCode165806002";
src.code as codeValue where codeValue = '170484009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '072', newCoding.display = 'Typhoid carrier [finding]' "SetSNOMEDCode170484009";
src.code as codeValue where codeValue = '12271241000119109' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '075', newCoding.display = 'Transgender identify [finding]' "SetSNOMEDCode12271241000119109";
src.code as codeValue where codeValue = '84757009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '076', newCoding.display = 'Epilepsy [disorder]' "SetSNOMEDCode84757009";
src.code as codeValue where codeValue = '192711008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '079', newCoding.display = 'Post diphtheria vaccination encephalitis [disorder]' "SetSNOMEDCode192711008";
src.code as codeValue where codeValue = '192710009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '079', newCoding.display = 'Post tetanus vaccination encephalitis [disorder]' "SetSNOMEDCode192710009";
src.code as codeValue where codeValue = '192712001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '079', newCoding.display = 'Post pertussis vaccination encephalitis [disorder]' "SetSNOMEDCode192712001";
src.code as codeValue where codeValue = '293104008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '080', newCoding.display = 'Vaccines adverse reaction [disorder]' "SetSNOMEDCode293104008";
src.code as codeValue where codeValue = '293117006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '081', newCoding.display = 'Poliomyelitis vaccine adverse reaction [disorder]' "SetSNOMEDCode293117006";
src.code as codeValue where codeValue = '451301000124103' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '082', newCoding.display = 'Adverse reaction caused by Japanese encephalitis virus vaccine [disorder]' "SetSNOMEDCode451301000124103";
src.code as codeValue where codeValue = '429301000124101' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '083', newCoding.display = 'Adverse reaction to rotavirus vaccine [disorder]' "SetSNOMEDCode429301000124101";
src.code as codeValue where codeValue = '293122006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '084', newCoding.display = 'Typhoid vaccine adverse reaction [disorder]' "SetSNOMEDCode293122006";
src.code as codeValue where codeValue = '420113004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza virus vaccine adverse reaction [disorder]' "SetSNOMEDCode420113004";
src.code as codeValue where codeValue = '293115003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'Pertussis vaccine adverse reaction [disorder]' "SetSNOMEDCode293115003";
src.code as codeValue where codeValue = '219085007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'Adverse reaction to diphtheria vaccine [disorder]' "SetSNOMEDCode219085007";
src.code as codeValue where codeValue = '219084006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'Adverse reaction to tetanus vaccine [disorder]' "SetSNOMEDCode219084006";
src.code as codeValue where codeValue = '451331000124106' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '089', newCoding.display = 'Adverse reaction caused by varicella virus live vaccine [disorder]' "SetSNOMEDCode451331000124106";
src.code as codeValue where codeValue = '429311000124103' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '090', newCoding.display = 'Adverse reaction to human papillomavirus vaccine [disorder]' "SetSNOMEDCode429311000124103";
src.code as codeValue where codeValue = '219096004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '091', newCoding.display = 'Adverse reaction to measles vaccine [disorder]' "SetSNOMEDCode219096004";
src.code as codeValue where codeValue = '293114004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '092', newCoding.display = 'Mumps vaccine adverse reaction [disorder]' "SetSNOMEDCode293114004";
src.code as codeValue where codeValue = '293119009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '093', newCoding.display = 'Rubella vaccine adverse reaction [disorder]' "SetSNOMEDCode293119009";
src.code as codeValue where codeValue = '293116002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '094', newCoding.display = 'Pneumococcal vaccine adverse reaction [disorder]' "SetSNOMEDCode293116002";
src.code as codeValue where codeValue = '2219088009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '095', newCoding.display = 'Adverse reaction to meningococcal vaccine [disorder]' "SetSNOMEDCode2219088009";
src.code as codeValue where codeValue = '451111000124103' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '095', newCoding.display = 'Adverse reaction caused by meningococcal conjugate vaccine [disorder]' "SetSNOMEDCode451111000124103";
src.code as codeValue where codeValue = '293126009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '096', newCoding.display = 'Hepatitis A vaccine adverse reaction [disorder]' "SetSNOMEDCode293126009";
src.code as codeValue where codeValue = '293110008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'Hepatitis B vaccine adverse reaction [disorder]' "SetSNOMEDCode293110008";
src.code as codeValue where codeValue = '293127000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'Haemophilus influenzae Type B vaccine adverse reaction [disorder]' "SetSNOMEDCode293127000";
src.code as codeValue where codeValue = '219095000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '099', newCoding.display = 'Adverse reaction to yellow fever vaccine [disorder]' "SetSNOMEDCode219095000";
src.code as codeValue where codeValue = '451291000124104' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '100', newCoding.display = 'Adverse reaction caused by zoster vaccine [disorder]' "SetSNOMEDCode451291000124104";
src.code as codeValue where codeValue = '213020009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '101', newCoding.display = 'Egg protein allergy [disorder]' "SetSNOMEDCode213020009";
src.code as codeValue where codeValue = '91930004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '101', newCoding.display = 'Allergy to eggs [disorder]' "SetSNOMEDCode91930004";
src.code as codeValue where codeValue = '293309006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '102', newCoding.display = 'Gelatin adverse reaction [disorder]' "SetSNOMEDCode293309006";
src.code as codeValue where codeValue = '294847001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '102', newCoding.display = 'Gelatin allergy [disorder]' "SetSNOMEDCode294847001";
src.code as codeValue where codeValue = '300916003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '104', newCoding.display = 'Latex allergy [disorder]' "SetSNOMEDCode300916003";
src.code as codeValue where codeValue = '441593005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '104', newCoding.display = 'Anaphylaxis due to latex [disorder]' "SetSNOMEDCode441593005";
src.code as codeValue where codeValue = '419522004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '106', newCoding.display = 'Gentamycin sensitivity [disorder]' "SetSNOMEDCode419522004";
src.code as codeValue where codeValue = '420094007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '106', newCoding.display = 'Gentamicin adverse reaction [disorder]' "SetSNOMEDCode420094007";
src.code as codeValue where codeValue = '294469003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '106', newCoding.display = 'Gentamicin allergy [disorder]' "SetSNOMEDCode294469003";
src.code as codeValue where codeValue = '294468006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '107', newCoding.display = 'Neomycin allergy [disorder]' "SetSNOMEDCode294468006";
src.code as codeValue where codeValue = '292927007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '107', newCoding.display = 'Neomycin adverse reaction [disorder]' "SetSNOMEDCode292927007";
src.code as codeValue where codeValue = '294466005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '108', newCoding.display = 'Streptomycin allergy [disorder]' "SetSNOMEDCode294466005";
src.code as codeValue where codeValue = '292925004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '108', newCoding.display = 'Streptomycin adverse reaction [disorder]' "SetSNOMEDCode292925004";
src.code as codeValue where codeValue = '294530006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '109', newCoding.display = 'Polymyxin B allergy [disorder]' "SetSNOMEDCode294530006";
src.code as codeValue where codeValue = '292992006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '109', newCoding.display = 'Polymyxin B adverse reaction [disorder]' "SetSNOMEDCode292992006";
src.code as codeValue where codeValue = '703936006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '110', newCoding.display = 'Allergy to yeast [disorder]' "SetSNOMEDCode703936006";
src.code as codeValue where codeValue = '293118001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '113', newCoding.display = 'Rabies vaccine adverse reaction [disorder]' "SetSNOMEDCode293118001";
src.code as codeValue where codeValue = '46177005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '114', newCoding.display = 'End stage renal disease [disorder]' "SetSNOMEDCode46177005";
src.code as codeValue where codeValue = '64520006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '115', newCoding.display = 'Protamine sulfate [substance]' "SetSNOMEDCode64520006";
src.code as codeValue where codeValue = '294278007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '115', newCoding.display = 'Protamine allergy [disorder]' "SetSNOMEDCode294278007";
src.code as codeValue where codeValue = '451281000124102' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '116', newCoding.display = 'Adverse reaction caused by meningococcal group B vaccine [disorder]' "SetSNOMEDCode451281000124102";
src.code as codeValue where codeValue = '219082005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '119', newCoding.display = 'Adverse reaction caused by cholera vaccine [disorder]' "SetSNOMEDCode219082005";
src.code as codeValue where codeValue = '32911000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '121', newCoding.display = 'Homeless [finding]' "SetSNOMEDCode32911000";
src.code as codeValue where codeValue = '116859006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '132', newCoding.display = 'Transfusion of blood product [procedure]' "SetSNOMEDCode116859006";
src.code as codeValue where codeValue = '116859006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '133', newCoding.display = 'Transfusion of blood product [procedure]' "SetSNOMEDCode116859006";
src.code as codeValue where codeValue = '116859006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '134', newCoding.display = 'Transfusion of blood product [procedure]' "SetSNOMEDCode116859006";
src.code as codeValue where codeValue = '13569004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '135', newCoding.display = 'Transfusion of plasma [procedure]' "SetSNOMEDCode13569004";
src.code as codeValue where codeValue = '12719002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '135', newCoding.display = 'Platelet transfusion [procedure]' "SetSNOMEDCode12719002";
src.code as codeValue where codeValue = '65880007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '145', newCoding.display = 'X-linked agammaglobulinemia [disorder]' "SetSNOMEDCode65880007";
src.code as codeValue where codeValue = '23238000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '145', newCoding.display = 'Common variable agammaglobulinemia [disorder]' "SetSNOMEDCode23238000";
src.code as codeValue where codeValue = '190979003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '146', newCoding.display = 'Selective immunoglobulin A deficiency [disorder]' "SetSNOMEDCode190979003";
src.code as codeValue where codeValue = '123785006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '146', newCoding.display = 'Immunoglobulin G subclass deficiency [finding]' "SetSNOMEDCode123785006";
src.code as codeValue where codeValue = '31323000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '147', newCoding.display = 'Severe combined immunodeficiency disease [disorder]' "SetSNOMEDCode31323000";
src.code as codeValue where codeValue = '77128003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '147', newCoding.display = 'DiGeorge sequence [disorder]' "SetSNOMEDCode77128003";
src.code as codeValue where codeValue = '77128003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '148', newCoding.display = 'DiGeorge sequence [disorder]' "SetSNOMEDCode77128003";
src.code as codeValue where codeValue = '36070007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '148', newCoding.display = 'Wiskott-Aldrich syndrome [disorder]' "SetSNOMEDCode36070007";
src.code as codeValue where codeValue = '68504005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '148', newCoding.display = 'Ataxia-telangiectasia syndrome [disorder]' "SetSNOMEDCode68504005";
src.code as codeValue where codeValue = '24743004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '150', newCoding.display = 'Complement deficiency disease [disorder]' "SetSNOMEDCode24743004";
src.code as codeValue where codeValue = '24743004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '151', newCoding.display = 'Complement deficiency disease [disorder]' "SetSNOMEDCode24743004";
src.code as codeValue where codeValue = '81166004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '151', newCoding.display = 'Properdin deficiency disease [disorder]' "SetSNOMEDCode81166004";
src.code as codeValue where codeValue = '234605000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '151', newCoding.display = 'Factor B deficiency [disorder]' "SetSNOMEDCode234605000";
src.code as codeValue where codeValue = '387759001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '152', newCoding.display = 'Chronic granulomatous disease [disorder]' "SetSNOMEDCode387759001";
src.code as codeValue where codeValue = '77358003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '153', newCoding.display = 'Congenital leukocyte adherence deficiency [disorder]' "SetSNOMEDCode77358003";
src.code as codeValue where codeValue = '234433009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '153', newCoding.display = 'Myeloperoxidase deficiency [disorder]' "SetSNOMEDCode234433009";
src.code as codeValue where codeValue = '62479008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '154', newCoding.display = 'Acquired immune deficiency syndrome [disorder]' "SetSNOMEDCode62479008";
src.code as codeValue where codeValue = '62479008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '155', newCoding.display = 'Acquired immune deficiency syndrome [disorder]' "SetSNOMEDCode62479008";
src.code as codeValue where codeValue = '77465005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '157', newCoding.display = 'Transplantation [procedure]' "SetSNOMEDCode77465005";
src.code as codeValue where codeValue = '313039003' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '157', newCoding.display = 'Solid organ transplant [procedure]' "SetSNOMEDCode313039003";
src.code as codeValue where codeValue = '86553008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '158', newCoding.display = 'Immunosuppressive therapy [procedure]' "SetSNOMEDCode86553008";
src.code as codeValue where codeValue = '53438000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '159', newCoding.display = 'Radiation therapy procedure or service [procedure]' "SetSNOMEDCode53438000";
src.code as codeValue where codeValue = '707147002' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '160', newCoding.display = 'Asplenia [disorder]' "SetSNOMEDCode707147002";
src.code as codeValue where codeValue = '709044004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '161', newCoding.display = 'Chronic kidney disease [disorder]' "SetSNOMEDCode709044004";
src.code as codeValue where codeValue = '52254009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '167', newCoding.display = 'Nephrotic syndrome [disorder]' "SetSNOMEDCode52254009";
src.code as codeValue where codeValue = '367336001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '168', newCoding.display = 'Chemotherapy [procedure]' "SetSNOMEDCode367336001";
src.code as codeValue where codeValue = '213017001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '169', newCoding.display = 'Sexual abuse [event]' "SetSNOMEDCode213017001";
src.code as codeValue where codeValue = '422608009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '169', newCoding.display = 'Sexual assault [finding' "SetSNOMEDCode422608009";
src.code as codeValue where codeValue = '248110007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '169', newCoding.display = 'Sexual assault [event]' "SetSNOMEDCode248110007";
src.code as codeValue where codeValue = '248986005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '170', newCoding.display = 'Estimated date of conception [observable entity]' "SetSNOMEDCode248986005";
src.code as codeValue where codeValue = '451291000124104' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '172', newCoding.display = 'Adverse reaction caused by zoster vaccine [disorder]' "SetSNOMEDCode451291000124104";
src.code as codeValue where codeValue = '93143009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '178', newCoding.display = 'Leukemia, disease [disorder]' "SetSNOMEDCode93143009";
src.code as codeValue where codeValue = '399600009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '179', newCoding.display = 'Lymphoma [finding]' "SetSNOMEDCode399600009";
src.code as codeValue where codeValue = '118599009' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '180', newCoding.display = 'Hodgkin's disease [disorder]' "SetSNOMEDCode118599009";
src.code as codeValue where codeValue = '109989006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '181', newCoding.display = 'Multiple myeloma [disorder]' "SetSNOMEDCode109989006";
src.code as codeValue where codeValue = '86406008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '186', newCoding.display = 'Human immunodeficiency virus infection [disorder]' "SetSNOMEDCode86406008";
src.code as codeValue where codeValue = '1156961008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '191', newCoding.display = 'Chimeric antigen receptor T-cell immunotherapy [procedure]' "SetSNOMEDCode1156961008";
src.code as codeValue where codeValue = '363346000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '198', newCoding.display = 'Malignant neoplastic disease [disorder]' "SetSNOMEDCode363346000";
src.code as codeValue where codeValue = '233703007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '199', newCoding.display = 'Interstitial lung disease [disorder]' "SetSNOMEDCode233703007";
src.code as codeValue where codeValue = '190905008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '200', newCoding.display = 'cystic fibrosis [disorder]' "SetSNOMEDCode190905008";
src.code as codeValue where codeValue = '70995007' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '201', newCoding.display = 'Pulmonary hypertension [disorder]' "SetSNOMEDCode70995007";
src.code as codeValue where codeValue = '52448006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '202', newCoding.display = 'Dimensia [disorder]' "SetSNOMEDCode52448006";
src.code as codeValue where codeValue = '41040004' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '203', newCoding.display = 'Complete trisomy 21 syndrome [disorder]' "SetSNOMEDCode41040004";
src.code as codeValue where codeValue = '40108008' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '205', newCoding.display = 'Thalassemia [disorder]' "SetSNOMEDCode40108008";
src.code as codeValue where codeValue = '62914000' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '206', newCoding.display = 'Cerebrovascular disease [disorder]' "SetSNOMEDCode62914000";
src.code as codeValue where codeValue = '13645005' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '214', newCoding.display = 'Chronic obstructive lung disease [disorder]' "SetSNOMEDCode13645005";
src.code as codeValue where codeValue = '87433001' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '215', newCoding.display = 'Pulmonary emphysema [disorder]' "SetSNOMEDCode87433001";
src.code as codeValue where codeValue = '413490006' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '245', newCoding.display = 'American Indian or Alaska Native [racial group]' "SetSNOMEDCode413490006";
} "HandleIndividualSNOMEDCoding";
} "ApplySNOMEDMappings";
src.system as systemValue where systemValue = 'http://hl7.org/fhir/sid/cvx' -> tgt.code = create('CodeableConcept') as newCC then {
src -> newCC.coding = create('Coding') as newCoding then {
src.code as codeValue where codeValue = '02' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '081', newCoding.display = 'OPV' "SetCVXCode02";
src.code as codeValue where codeValue = '10' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '081', newCoding.display = 'IPV' "SetCVXCode10";
src.code as codeValue where codeValue = '89' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '081', newCoding.display = 'Polio, unspecified formulation' "SetCVXCode89";
src.code as codeValue where codeValue = '110' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '081', newCoding.display = 'DTaP-HepB-IPV' "SetCVXCode110";
src.code as codeValue where codeValue = '120' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '081', newCoding.display = 'DTaP-Hib-IPV' "SetCVXCode120";
src.code as codeValue where codeValue = '130' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '081', newCoding.display = 'DTaP-IPV' "SetCVXCode130";
src.code as codeValue where codeValue = '132' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '081', newCoding.display = 'DTaP-IPV-Hib-HepB, Historical' "SetCVXCode132";
src.code as codeValue where codeValue = '146' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '081', newCoding.display = 'DTaP-IPV-Hib-HepB' "SetCVXCode146";
src.code as codeValue where codeValue = '39' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '082', newCoding.display = 'Japanese Encephalitis, MB' "SetCVXCode39";
src.code as codeValue where codeValue = '134' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '082', newCoding.display = 'Japanese Encephalitis, VC' "SetCVXCode134";
src.code as codeValue where codeValue = '129' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '082', newCoding.display = 'Japanese Encephalitis, unspecified' "SetCVXCode129";
src.code as codeValue where codeValue = '116' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '083', newCoding.display = 'Rotavirus, pentavalent' "SetCVXCode116";
src.code as codeValue where codeValue = '122' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '083', newCoding.display = 'Rotavirus, unspecified formulation' "SetCVXCode122";
src.code as codeValue where codeValue = '74' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '083', newCoding.display = 'Rotavirus, tetravalent' "SetCVXCode74";
src.code as codeValue where codeValue = '119' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '083', newCoding.display = 'Rotavirus, monovalent' "SetCVXCode119";
src.code as codeValue where codeValue = '101' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '084', newCoding.display = 'Typhoid capsular polysaccharide' "SetCVXCode101";
src.code as codeValue where codeValue = '25' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '084', newCoding.display = 'Typhoid oral, live, attenuated' "SetCVXCode25";
src.code as codeValue where codeValue = '41' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '084', newCoding.display = 'Typhoid, parenteral' "SetCVXCode41";
src.code as codeValue where codeValue = '53' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '084', newCoding.display = 'Typhoid, parenteral, AKD [U.S. military]' "SetCVXCode53";
src.code as codeValue where codeValue = '91' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '084', newCoding.display = 'Typhoid, unspecified formulation' "SetCVXCode91";
src.code as codeValue where codeValue = '15' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, split incl. purified surface antigen' "SetCVXCode15";
src.code as codeValue where codeValue = '16' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, whole' "SetCVXCode16";
src.code as codeValue where codeValue = '88' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, Unspecified' "SetCVXCode88";
src.code as codeValue where codeValue = '111' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, live, intranasal' "SetCVXCode111";
src.code as codeValue where codeValue = '135' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, high dose seasonal' "SetCVXCode135";
src.code as codeValue where codeValue = '140' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, injectable preservative free' "SetCVXCode140";
src.code as codeValue where codeValue = '141' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, injectable' "SetCVXCode141";
src.code as codeValue where codeValue = '144' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, intradermal, preservative free' "SetCVXCode144";
src.code as codeValue where codeValue = '149' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'influenza, live, intranasal, quadrivalent' "SetCVXCode149";
src.code as codeValue where codeValue = '150' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'influenza, injectable, quadrivalent, preservative free' "SetCVXCode150";
src.code as codeValue where codeValue = '151' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'influenza nasal, unspecified formulation' "SetCVXCode151";
src.code as codeValue where codeValue = '153' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, injectable, MDCK, preservative free' "SetCVXCode153";
src.code as codeValue where codeValue = '155' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'influenza, recombinant, injectable, preservative free' "SetCVXCode155";
src.code as codeValue where codeValue = '158' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, injectable, quadrivalent' "SetCVXCode158";
src.code as codeValue where codeValue = '161' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, injectable, quadrivalent, preservative free, peds' "SetCVXCode161";
src.code as codeValue where codeValue = '166' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Influenza, intradermal, quadrivalent, preservative free' "SetCVXCode166";
src.code as codeValue where codeValue = '01' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTP' "SetCVXCode01";
src.code as codeValue where codeValue = '20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTaP' "SetCVXCode20";
src.code as codeValue where codeValue = '22' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTP-Hib' "SetCVXCode22";
src.code as codeValue where codeValue = '50' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTaP-Hib' "SetCVXCode50";
src.code as codeValue where codeValue = '102' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTP-Hib-HepB' "SetCVXCode102";
src.code as codeValue where codeValue = '106' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTaP, 5 pertussis antigens' "SetCVXCode106";
src.code as codeValue where codeValue = '107' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTaP, Unspecified Formulation' "SetCVXCode107";
src.code as codeValue where codeValue = '110' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTaP-HepB-IPV' "SetCVXCode110";
src.code as codeValue where codeValue = '115' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'Tdap' "SetCVXCode115";
src.code as codeValue where codeValue = '120' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTaP-Hib-IPV' "SetCVXCode120";
src.code as codeValue where codeValue = '130' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTaP-IPV' "SetCVXCode130";
src.code as codeValue where codeValue = '132' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTaP-IPV-Hib-HepB,historical' "SetCVXCode132";
src.code as codeValue where codeValue = '146' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'DTaP-IPV-Hib-HepB' "SetCVXCode146";
src.code as codeValue where codeValue = '01' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTP' "SetCVXCode01";
src.code as codeValue where codeValue = '09' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'Td - Adult Adsorbed' "SetCVXCode09";
src.code as codeValue where codeValue = '20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTaP' "SetCVXCode20";
src.code as codeValue where codeValue = '22' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTP-Hib' "SetCVXCode22";
src.code as codeValue where codeValue = '28' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DT - Pediatric' "SetCVXCode28";
src.code as codeValue where codeValue = '50' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTaP-Hib' "SetCVXCode50";
src.code as codeValue where codeValue = '102' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTP-Hib-HepB' "SetCVXCode102";
src.code as codeValue where codeValue = '106' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTaP, 5 pertussis antigens' "SetCVXCode106";
src.code as codeValue where codeValue = '107' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTaP, Unspecified Formulation' "SetCVXCode107";
src.code as codeValue where codeValue = '110' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTaP-HepB-IPV' "SetCVXCode110";
src.code as codeValue where codeValue = '113' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'Td p-free' "SetCVXCode113";
src.code as codeValue where codeValue = '115' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'Tdap' "SetCVXCode115";
src.code as codeValue where codeValue = '120' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTaP-Hib-IPV' "SetCVXCode120";
src.code as codeValue where codeValue = '130' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTaP-IPV' "SetCVXCode130";
src.code as codeValue where codeValue = '132' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTaP-IPV-Hib-HepB,historical' "SetCVXCode132";
src.code as codeValue where codeValue = '138' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'Td - Adult' "SetCVXCode138";
src.code as codeValue where codeValue = '139' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'Td - Adult Unspecified Formulation' "SetCVXCode139";
src.code as codeValue where codeValue = '146' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'DTaP-IPV-Hib-HepB' "SetCVXCode146";
src.code as codeValue where codeValue = '01' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTP' "SetCVXCode01";
src.code as codeValue where codeValue = '09' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'Td - Adult Adsorbed' "SetCVXCode09";
src.code as codeValue where codeValue = '20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTaP' "SetCVXCode20";
src.code as codeValue where codeValue = '22' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTP-Hib' "SetCVXCode22";
src.code as codeValue where codeValue = '28' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DT - Pediatric' "SetCVXCode28";
src.code as codeValue where codeValue = '35' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'TT' "SetCVXCode35";
src.code as codeValue where codeValue = '50' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTaP-Hib' "SetCVXCode50";
src.code as codeValue where codeValue = '102' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTP-Hib-HepB' "SetCVXCode102";
src.code as codeValue where codeValue = '106' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTaP, 5 pertussis antigens' "SetCVXCode106";
src.code as codeValue where codeValue = '107' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTaP, Unspecified Formulation' "SetCVXCode107";
src.code as codeValue where codeValue = '110' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTaP-HepB-IPV' "SetCVXCode110";
src.code as codeValue where codeValue = '113' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'Td p-free' "SetCVXCode113";
src.code as codeValue where codeValue = '115' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'Tdap' "SetCVXCode115";
src.code as codeValue where codeValue = '120' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTaP-Hib-IPV' "SetCVXCode120";
src.code as codeValue where codeValue = '130' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTaP-IPV' "SetCVXCode130";
src.code as codeValue where codeValue = '132' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTaP-IPV-Hib-HepB,historical' "SetCVXCode132";
src.code as codeValue where codeValue = '138' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'Td - Adult' "SetCVXCode138";
src.code as codeValue where codeValue = '139' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'Td - Adult Unspecified Formulation' "SetCVXCode139";
src.code as codeValue where codeValue = '146' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'DTaP-IPV-Hib-HepB' "SetCVXCode146";
src.code as codeValue where codeValue = '21' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '089', newCoding.display = 'Varicella' "SetCVXCode21";
src.code as codeValue where codeValue = '94' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '089', newCoding.display = 'MMRV' "SetCVXCode94";
src.code as codeValue where codeValue = '121' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '089', newCoding.display = 'Zoster' "SetCVXCode121";
src.code as codeValue where codeValue = '62' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '090', newCoding.display = '4vHPV' "SetCVXCode62";
src.code as codeValue where codeValue = '118' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '090', newCoding.display = '2vHPV' "SetCVXCode118";
src.code as codeValue where codeValue = '137' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '090', newCoding.display = 'HPV Unspecified' "SetCVXCode137";
src.code as codeValue where codeValue = '165' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '090', newCoding.display = '9vHPV' "SetCVXCode165";
src.code as codeValue where codeValue = '03' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '091', newCoding.display = 'MMR' "SetCVXCode03";
src.code as codeValue where codeValue = '04' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '091', newCoding.display = 'Measles/Rubella' "SetCVXCode04";
src.code as codeValue where codeValue = '05' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '091', newCoding.display = 'Measles' "SetCVXCode05";
src.code as codeValue where codeValue = '94' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '091', newCoding.display = 'MMRV' "SetCVXCode94";
src.code as codeValue where codeValue = '03' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '092', newCoding.display = 'MMR' "SetCVXCode03";
src.code as codeValue where codeValue = '07' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '092', newCoding.display = 'Mumps' "SetCVXCode07";
src.code as codeValue where codeValue = '38' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '092', newCoding.display = 'Rubella/Mumps' "SetCVXCode38";
src.code as codeValue where codeValue = '94' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '092', newCoding.display = 'MMRV' "SetCVXCode94";
src.code as codeValue where codeValue = '03' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '093', newCoding.display = 'MMR' "SetCVXCode03";
src.code as codeValue where codeValue = '04' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '093', newCoding.display = 'Measles/Rubella' "SetCVXCode04";
src.code as codeValue where codeValue = '06' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '093', newCoding.display = 'Rubella' "SetCVXCode06";
src.code as codeValue where codeValue = '38' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '093', newCoding.display = 'Rubella/Mumps' "SetCVXCode38";
src.code as codeValue where codeValue = '94' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '093', newCoding.display = 'MMRV' "SetCVXCode94";
src.code as codeValue where codeValue = '133' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '094', newCoding.display = 'PCV13' "SetCVXCode133";
src.code as codeValue where codeValue = '100' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '094', newCoding.display = 'PCV7' "SetCVXCode100";
src.code as codeValue where codeValue = '33' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '094', newCoding.display = 'PPSV23' "SetCVXCode33";
src.code as codeValue where codeValue = '109' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '094', newCoding.display = 'Pneumococcal, unspecified formulation' "SetCVXCode109";
src.code as codeValue where codeValue = '152' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '094', newCoding.display = 'Pneumococcal Conjugate, unspecified formulation' "SetCVXCode152";
src.code as codeValue where codeValue = '32' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '095', newCoding.display = 'Meningococcal, MPSV4' "SetCVXCode32";
src.code as codeValue where codeValue = '108' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '095', newCoding.display = 'Meningococcal ACWY, unspecified' "SetCVXCode108";
src.code as codeValue where codeValue = '114' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '095', newCoding.display = 'Meningococcal, MCV4P' "SetCVXCode114";
src.code as codeValue where codeValue = '136' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '095', newCoding.display = 'Meningococcal, MCV4O' "SetCVXCode136";
src.code as codeValue where codeValue = '147' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '095', newCoding.display = 'MCV4, unspecified' "SetCVXCode147";
src.code as codeValue where codeValue = '148' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '095', newCoding.display = 'Meningococcal C/Y-HIB PRP' "SetCVXCode148";
src.code as codeValue where codeValue = '167' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '095', newCoding.display = 'Meningococcal, unknown serogroups' "SetCVXCode167";
src.code as codeValue where codeValue = '52' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '096', newCoding.display = 'Hep A, adult' "SetCVXCode52";
src.code as codeValue where codeValue = '83' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '096', newCoding.display = 'Hep A, ped/adol, 2 dose' "SetCVXCode83";
src.code as codeValue where codeValue = '84' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '096', newCoding.display = 'Hep A, ped/adol, 3 dose' "SetCVXCode84";
src.code as codeValue where codeValue = '85' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '096', newCoding.display = 'Hep A, Unspecified' "SetCVXCode85";
src.code as codeValue where codeValue = '104' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '096', newCoding.display = 'HepA-HepB' "SetCVXCode104";
src.code as codeValue where codeValue = '08' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'Hep B, Adol/peds' "SetCVXCode08";
src.code as codeValue where codeValue = '42' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'Hep B, Adol/high risk infant' "SetCVXCode42";
src.code as codeValue where codeValue = '43' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'Hep B, Adult' "SetCVXCode43";
src.code as codeValue where codeValue = '44' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'Hep B, Dialysis' "SetCVXCode44";
src.code as codeValue where codeValue = '45' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'Hep B, Unspecified Formulation' "SetCVXCode45";
src.code as codeValue where codeValue = '51' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'Hib-HepB' "SetCVXCode51";
src.code as codeValue where codeValue = '102' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'DTaP-Hib-HepB' "SetCVXCode102";
src.code as codeValue where codeValue = '104' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'HepA-HepB' "SetCVXCode104";
src.code as codeValue where codeValue = '110' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'DTaP-HepB-IPV' "SetCVXCode110";
src.code as codeValue where codeValue = '132' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'DTaP-IPV-Hib-HepB, historical' "SetCVXCode132";
src.code as codeValue where codeValue = '146' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'DTaP-IPV-Hib-HepB' "SetCVXCode146";
src.code as codeValue where codeValue = '17' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'Hib unspecified formulation' "SetCVXCode17";
src.code as codeValue where codeValue = '22' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'DTP-Hib' "SetCVXCode22";
src.code as codeValue where codeValue = '46' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'PRP-D' "SetCVXCode46";
src.code as codeValue where codeValue = '47' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'HbOC' "SetCVXCode47";
src.code as codeValue where codeValue = '48' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'PRP-T' "SetCVXCode48";
src.code as codeValue where codeValue = '49' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'PRP-OMP' "SetCVXCode49";
src.code as codeValue where codeValue = '50' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'DTaP/Hib' "SetCVXCode50";
src.code as codeValue where codeValue = '51' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'Hib-HepB' "SetCVXCode51";
src.code as codeValue where codeValue = '102' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'DTP-Hib-HepB' "SetCVXCode102";
src.code as codeValue where codeValue = '120' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'DTaP-IPV/Hib' "SetCVXCode120";
src.code as codeValue where codeValue = '132' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'DTaP-IPV-Hib-HepB,historical' "SetCVXCode132";
src.code as codeValue where codeValue = '146' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'DTaP-IPV-Hib-HepB' "SetCVXCode146";
src.code as codeValue where codeValue = '148' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'Hib-MenCY-TT' "SetCVXCode148";
src.code as codeValue where codeValue = '25' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '099', newCoding.display = 'Yellow Fever' "SetCVXCode25";
src.code as codeValue where codeValue = '121' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '100', newCoding.display = 'Zoster live' "SetCVXCode121";
src.code as codeValue where codeValue = '18' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '113', newCoding.display = 'Rabies, intramuscular injection' "SetCVXCode18";
src.code as codeValue where codeValue = '40' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '113', newCoding.display = 'Rabies, intradermal injection' "SetCVXCode40";
src.code as codeValue where codeValue = '90' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '113', newCoding.display = 'Rabies, unspecified formulation' "SetCVXCode90";
src.code as codeValue where codeValue = '162' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '116', newCoding.display = 'Meningococcal B, recombinant' "SetCVXCode162";
src.code as codeValue where codeValue = '163' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '116', newCoding.display = 'Meningococcal B, OMV' "SetCVXCode163";
src.code as codeValue where codeValue = '164' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '116', newCoding.display = 'Meningococcal B, unspecified' "SetCVXCode164";
src.code as codeValue where codeValue = '26' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '119', newCoding.display = 'cholera, unspecified formulation' "SetCVXCode26";
src.code as codeValue where codeValue = '172' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '119', newCoding.display = 'cholera, WC-rBS' "SetCVXCode172";
src.code as codeValue where codeValue = '173' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '119', newCoding.display = 'cholera, BivWC' "SetCVXCode173";
src.code as codeValue where codeValue = '174' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '119', newCoding.display = 'cholera, live attenuated' "SetCVXCode174";
src.code as codeValue where codeValue = '208' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '122', newCoding.display = 'COVID-19, mRNA, LNP-S, PF, 30 mcg/0.3 mL dose' "SetCVXCode208";
src.code as codeValue where codeValue = '13' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '125', newCoding.display = 'Tetanus immune globulin' "SetCVXCode13";
src.code as codeValue where codeValue = '154' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '126', newCoding.display = 'Hepatitis A immune globulin' "SetCVXCode154";
src.code as codeValue where codeValue = '30' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '127', newCoding.display = 'Hepatitis B immune globulin' "SetCVXCode30";
src.code as codeValue where codeValue = '34' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '128', newCoding.display = 'Rabies immune globulin' "SetCVXCode34";
src.code as codeValue where codeValue = '36' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '129', newCoding.display = 'Varicella zoster immune globulin' "SetCVXCode36";
src.code as codeValue where codeValue = '187' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '172', newCoding.display = 'Zoster subunit' "SetCVXCode187";
src.code as codeValue where codeValue = 'non-US' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '252', newCoding.display = 'Tick-borne encephalitis vaccine' "SetCVXCodenonUS";
src.code as codeValue where codeValue = '222' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '252', newCoding.display = 'Tick-borne encephalitis, unspecified' "SetCVXCode222";
src.code as codeValue where codeValue = '223' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '252', newCoding.display = 'Tick-borne encephalitis, inactivated, PF, 0.25mL' "SetCVXCode223";
src.code as codeValue where codeValue = '224' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '252', newCoding.display = 'Tick-borne encephalitis, inactivated, PF, 0.5mL' "SetCVXCode224";
} "HandleIndividualCVXCoding";
} "ApplyCVXMappings";
src.system as systemValue where systemValue = 'http://phinvads.cdc.gov' -> tgt.code = create('CodeableConcept') as newCC then {
src -> newCC.coding = create('Coding') as newCoding then {
src.code as codeValue where codeValue = 'VXC27' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '003', newCoding.display = 'Immunodeficiency due to any cause' "SetCDCPHINVSCodeVXC27";
src.code as codeValue where codeValue = 'VXC21' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '028', newCoding.display = 'Previous history of intussusception' "SetCDCPHINVSCodeVXC21";
src.code as codeValue where codeValue = 'VXC22' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '079', newCoding.display = 'Encephalopathy within 7 days of previous dose of DTP or DTaP' "SetCDCPHINVSCodeVXC22";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '080', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '081', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '082', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '083', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '084', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '085', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '086', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '087', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '088', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '089', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '090', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '091', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '092', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '093', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '094', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '095', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '096', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '097', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '098', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '099', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '100', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC18' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '110', newCoding.display = 'Allergy to baker's yeast [anaphylactic]' "SetCDCPHINVSCodeVXC18";
src.code as codeValue where codeValue = 'VXC17' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '111', newCoding.display = 'Allergy [anaphylactic] to 2-phenoxyethanol' "SetCDCPHINVSCodeVXC17";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '113', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '116', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '119', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '122', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '172', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
src.code as codeValue where codeValue = 'VXC20' -> newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes', newCoding.code = '252', newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' "SetCDCPHINVSCodeVXC20";
} "HandleIndividualCDCPHINVSCoding";
} "ApplyCDCPHINVSMappings";
}
</pre></div>
</text>
<url
value="http://fhirfli.dev/fhir/ig/cicada/StructureMap/map-vaccine-codes"/>
<version value="0.1.0"/>
<name value="MapVaccineCodes"/>
<status value="draft"/>
<date value="2026-02-11T14:37:07-05:00"/>
<publisher value="FHIR-FLI"/>
<contact>
<name value="FHIR-FLI"/>
<telecom>
<system value="url"/>
<value value="http://fhirfli.dev"/>
</telecom>
</contact>
<description
value="Define the usage of FHIR resource types with specific aliases"/>
<structure>
<url value="http://hl7.org/fhir/StructureDefinition/Observation"/>
<mode value="source"/>
<alias value="sourceObservation"/>
</structure>
<structure>
<url value="http://hl7.org/fhir/StructureDefinition/Condition"/>
<mode value="source"/>
<alias value="sourceCondition"/>
</structure>
<structure>
<url value="http://hl7.org/fhir/StructureDefinition/Procedure"/>
<mode value="source"/>
<alias value="sourceProcedure"/>
</structure>
<structure>
<url value="http://hl7.org/fhir/StructureDefinition/Immunization"/>
<mode value="source"/>
<alias value="sourceImmunization"/>
</structure>
<structure>
<url value="http://hl7.org/fhir/StructureDefinition/Medication"/>
<mode value="source"/>
<alias value="sourceMedication"/>
</structure>
<structure>
<url value="http://hl7.org/fhir/StructureDefinition/MedicationStatement"/>
<mode value="source"/>
<alias value="sourceMedicationStatement"/>
</structure>
<structure>
<url value="http://hl7.org/fhir/StructureDefinition/MedicationRequest"/>
<mode value="source"/>
<alias value="sourceMedicationRequest"/>
</structure>
<structure>
<url
value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/>
<mode value="source"/>
<alias value="sourceMedicationAdministration"/>
</structure>
<structure>
<url value="http://hl7.org/fhir/StructureDefinition/MedicationDispense"/>
<mode value="source"/>
<alias value="sourceMedicationDispense"/>
</structure>
<structure>
<url value="http://hl7.org/fhir/StructureDefinition/Condition"/>
<mode value="target"/>
<alias value="targetCondition"/>
</structure>
<group>
<name value="MapToVaccineConditionObservation"/>
<typeMode value="none"/>
<input>
<name value="src"/>
<type value="any"/>
<mode value="source"/>
</input>
<input>
<name value="tgt"/>
<type value="targetCondition"/>
<mode value="target"/>
</input>
<rule>
<name value="SourceObservationToTarget"/>
<source>
<context value="src"/>
<variable value="sourceObservation"/>
<condition value="(src is Observation)"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
</target>
<dependent>
<name value="MapFromObservation"/>
<variable value="src"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SourceConditionToTarget"/>
<source>
<context value="src"/>
<variable value="sourceCondition"/>
<condition value="(src is Condition)"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
</target>
<dependent>
<name value="MapFromCondition"/>
<variable value="src"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SourceProcedureToTarget"/>
<source>
<context value="src"/>
<variable value="sourceProcedure"/>
<condition value="(src is Procedure)"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
</target>
<dependent>
<name value="MapFromProcedure"/>
<variable value="src"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SourceImmunizationToTarget"/>
<source>
<context value="src"/>
<variable value="sourceImmunization"/>
<condition value="(src is Immunization)"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
</target>
<dependent>
<name value="MapFromImmunization"/>
<variable value="src"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SourceMedicationToTarget"/>
<source>
<context value="src"/>
<variable value="sourceMedication"/>
<condition value="(src is Medication)"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
</target>
<dependent>
<name value="MapFromMedication"/>
<variable value="src"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SourceMedStatementToTarget"/>
<source>
<context value="src"/>
<variable value="sourceMedicationStatement"/>
<condition value="(src is MedicationStatement)"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
</target>
<dependent>
<name value="MapFromMedicationStatement"/>
<variable value="src"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SourceMedRequestToTarget"/>
<source>
<context value="src"/>
<variable value="sourceMedicationRequest"/>
<condition value="(src is MedicationRequest)"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
</target>
<dependent>
<name value="MapFromMedicationRequest"/>
<variable value="src"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SourceMedAdminToTarget"/>
<source>
<context value="src"/>
<variable value="sourceMedicationAdministration"/>
<condition value="(src is MedicationAdministration)"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
</target>
<dependent>
<name value="MapFromMedicationAdministration"/>
<variable value="src"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SourceMedDispenseToTarget"/>
<source>
<context value="src"/>
<variable value="sourceMedicationDispense"/>
<condition value="(src is MedicationDispense)"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
</target>
<dependent>
<name value="MapFromMedicationDispense"/>
<variable value="src"/>
<variable value="tgt"/>
</dependent>
</rule>
</group>
<group>
<name value="MapFromObservation"/>
<typeMode value="none"/>
<input>
<name value="src"/>
<type value="sourceObservation"/>
<mode value="source"/>
</input>
<input>
<name value="tgt"/>
<type value="targetCondition"/>
<mode value="target"/>
</input>
<rule>
<name value="SetObservationStatus"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="status"/>
<transform value="copy"/>
<parameter>
<valueString value="active"/>
</parameter>
</target>
</rule>
<rule>
<name value="ApplyObsMappings"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="code"/>
</source>
<target>
<context value="code"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="coding"/>
</target>
<dependent>
<name value="ApplyCommonMappings"/>
<variable value="coding"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SetObsOnsetDateTime"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetDateTime"/>
<transform value="copy"/>
<parameter>
<valueId value="src.effectiveDateTime"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetObsOnsetPeriod"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetPeriod"/>
<transform value="copy"/>
<parameter>
<valueId value="src.effectivePeriod"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetObsOnsetInstant"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetDateTime"/>
<transform value="copy"/>
<parameter>
<valueId value="src.effectiveInstant"/>
</parameter>
</target>
</rule>
</group>
<group>
<name value="MapFromCondition"/>
<typeMode value="none"/>
<input>
<name value="src"/>
<type value="sourceCondition"/>
<mode value="source"/>
</input>
<input>
<name value="tgt"/>
<type value="targetCondition"/>
<mode value="target"/>
</input>
<rule>
<name value="SetConditionStatus"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="status"/>
<transform value="copy"/>
<parameter>
<valueString value="active"/>
</parameter>
</target>
</rule>
<rule>
<name value="ApplyCondMappings"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="code"/>
</source>
<target>
<context value="code"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="coding"/>
</target>
<dependent>
<name value="ApplyCommonMappings"/>
<variable value="coding"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SetCondOnsetDateTime"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetDateTime"/>
<transform value="copy"/>
<parameter>
<valueId value="src.onsetDateTime"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCondOnsetAge"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetAge"/>
<transform value="copy"/>
<parameter>
<valueId value="src.onsetAge"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCondOnsetPeriod"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetPeriod"/>
<transform value="copy"/>
<parameter>
<valueId value="src.onsetPeriod"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCondOnsetRange"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetRange"/>
<transform value="copy"/>
<parameter>
<valueId value="src.onsetRange"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCondOnsetString"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetString"/>
<transform value="copy"/>
<parameter>
<valueId value="src.onsetString"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCondAbatementDateTime"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="abatementDateTime"/>
<transform value="copy"/>
<parameter>
<valueId value="src.abatementDateTime"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCondAbatementAge"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="abatementAge"/>
<transform value="copy"/>
<parameter>
<valueId value="src.abatementAge"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCondAbatementPeriod"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="abatementPeriod"/>
<transform value="copy"/>
<parameter>
<valueId value="src.abatementPeriod"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCondAbatementRange"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="abatementRange"/>
<transform value="copy"/>
<parameter>
<valueId value="src.abatementRange"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCondAbatementString"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="abatementString"/>
<transform value="copy"/>
<parameter>
<valueId value="src.abatementString"/>
</parameter>
</target>
</rule>
</group>
<group>
<name value="MapFromProcedure"/>
<typeMode value="none"/>
<input>
<name value="src"/>
<type value="sourceProcedure"/>
<mode value="source"/>
</input>
<input>
<name value="tgt"/>
<type value="targetCondition"/>
<mode value="target"/>
</input>
<rule>
<name value="SetProcedureStatus"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="status"/>
<transform value="copy"/>
<parameter>
<valueString value="active"/>
</parameter>
</target>
</rule>
<rule>
<name value="ApplyProcedureMappings"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="code"/>
</source>
<target>
<context value="code"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="coding"/>
</target>
<dependent>
<name value="ApplyCommonMappings"/>
<variable value="coding"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SetProcedureOnsetDateTime"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetDateTime"/>
<transform value="copy"/>
<parameter>
<valueId value="src.performedDateTime"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetProcedureOnsetAge"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetAge"/>
<transform value="copy"/>
<parameter>
<valueId value="src.performedAge"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetProcedureOnsetPeriod"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetPeriod"/>
<transform value="copy"/>
<parameter>
<valueId value="src.performedPeriod"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetProcedureOnsetRange"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetRange"/>
<transform value="copy"/>
<parameter>
<valueId value="src.performedRange"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetProcedureOnsetString"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetString"/>
<transform value="copy"/>
<parameter>
<valueId value="src.performedString"/>
</parameter>
</target>
</rule>
</group>
<group>
<name value="MapFromImmunization"/>
<typeMode value="none"/>
<input>
<name value="src"/>
<type value="sourceImmunization"/>
<mode value="source"/>
</input>
<input>
<name value="tgt"/>
<type value="targetCondition"/>
<mode value="target"/>
</input>
<rule>
<name value="SetImmunizationStatus"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="status"/>
<transform value="copy"/>
<parameter>
<valueString value="active"/>
</parameter>
</target>
</rule>
<rule>
<name value="ApplyImmunizationMappings"/>
<source>
<context value="src"/>
<element value="vaccineCode"/>
<variable value="code"/>
</source>
<target>
<context value="code"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="coding"/>
</target>
<dependent>
<name value="ApplyCommonMappings"/>
<variable value="coding"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SetImmunizationOnsetDateTime"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetDateTime"/>
<transform value="copy"/>
<parameter>
<valueId value="src.occurrenceDateTime"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetImmunizationOnsetString"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetString"/>
<transform value="copy"/>
<parameter>
<valueId value="src.occurrenceString"/>
</parameter>
</target>
</rule>
</group>
<group>
<name value="MapFromMedication"/>
<typeMode value="none"/>
<input>
<name value="src"/>
<type value="sourceMedication"/>
<mode value="source"/>
</input>
<input>
<name value="tgt"/>
<type value="targetCondition"/>
<mode value="target"/>
</input>
<rule>
<name value="SetMedicationStatus"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="status"/>
<transform value="copy"/>
<parameter>
<valueString value="active"/>
</parameter>
</target>
</rule>
<rule>
<name value="ApplyMedicationMappings"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="code"/>
</source>
<target>
<context value="code"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="coding"/>
</target>
<dependent>
<name value="ApplyCommonMappings"/>
<variable value="coding"/>
<variable value="tgt"/>
</dependent>
</rule>
</group>
<group>
<name value="MapFromMedicationStatement"/>
<typeMode value="none"/>
<documentation value="TODO(Dokotela): what about medicationReference?"/>
<input>
<name value="src"/>
<type value="sourceMedicationStatement"/>
<mode value="source"/>
</input>
<input>
<name value="tgt"/>
<type value="targetCondition"/>
<mode value="target"/>
</input>
<rule>
<name value="SetMedStatementStatus"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="status"/>
<transform value="copy"/>
<parameter>
<valueString value="active"/>
</parameter>
</target>
</rule>
<rule>
<name value="ApplyMedStatementMappings"/>
<source>
<context value="src"/>
<element value="medicationCodeableConcept"/>
<variable value="code"/>
</source>
<target>
<context value="code"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="coding"/>
</target>
<dependent>
<name value="ApplyCommonMappings"/>
<variable value="coding"/>
<variable value="tgt"/>
</dependent>
</rule>
</group>
<group>
<name value="MapFromMedicationRequest"/>
<typeMode value="none"/>
<input>
<name value="src"/>
<type value="sourceMedicationRequest"/>
<mode value="source"/>
</input>
<input>
<name value="tgt"/>
<type value="targetCondition"/>
<mode value="target"/>
</input>
<rule>
<name value="SetMedRequestStatus"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="status"/>
<transform value="copy"/>
<parameter>
<valueString value="active"/>
</parameter>
</target>
</rule>
<rule>
<name value="ApplyMedRequestMappings"/>
<source>
<context value="src"/>
<element value="medicationCodeableConcept"/>
<variable value="code"/>
</source>
<target>
<context value="code"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="coding"/>
</target>
<dependent>
<name value="ApplyCommonMappings"/>
<variable value="coding"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SetMedRequestOnsetDateTime"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetDateTime"/>
<transform value="copy"/>
<parameter>
<valueId value="src.authoredOn"/>
</parameter>
</target>
</rule>
</group>
<group>
<name value="MapFromMedicationAdministration"/>
<typeMode value="none"/>
<input>
<name value="src"/>
<type value="sourceMedicationAdministration"/>
<mode value="source"/>
</input>
<input>
<name value="tgt"/>
<type value="targetCondition"/>
<mode value="target"/>
</input>
<rule>
<name value="SetMedAdminStatus"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="status"/>
<transform value="copy"/>
<parameter>
<valueString value="active"/>
</parameter>
</target>
</rule>
<rule>
<name value="ApplyMedAdminMappings"/>
<source>
<context value="src"/>
<element value="medicationCodeableConcept"/>
<variable value="code"/>
</source>
<target>
<context value="code"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="coding"/>
</target>
<dependent>
<name value="ApplyCommonMappings"/>
<variable value="coding"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SetMedAdminOnsetDateTime"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetDateTime"/>
<transform value="copy"/>
<parameter>
<valueId value="src.effectiveDateTime"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetMedAdminOnsetPeriod"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetPeriod"/>
<transform value="copy"/>
<parameter>
<valueId value="src.effectivePeriod"/>
</parameter>
</target>
</rule>
</group>
<group>
<name value="MapFromMedicationDispense"/>
<typeMode value="none"/>
<input>
<name value="src"/>
<type value="sourceMedicationDispense"/>
<mode value="source"/>
</input>
<input>
<name value="tgt"/>
<type value="targetCondition"/>
<mode value="target"/>
</input>
<rule>
<name value="SetMedDispenseStatus"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="status"/>
<transform value="copy"/>
<parameter>
<valueString value="active"/>
</parameter>
</target>
</rule>
<rule>
<name value="ApplyMedDispenseMappings"/>
<source>
<context value="src"/>
<element value="medicationCodeableConcept"/>
<variable value="code"/>
</source>
<target>
<context value="code"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="coding"/>
</target>
<dependent>
<name value="ApplyCommonMappings"/>
<variable value="coding"/>
<variable value="tgt"/>
</dependent>
</rule>
<rule>
<name value="SetMedDispenseOnsetDateTime"/>
<source>
<context value="src"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="onsetDateTime"/>
<transform value="copy"/>
<parameter>
<valueId value="src.whenHandedOver"/>
</parameter>
</target>
</rule>
</group>
<group>
<name value="ApplyCommonMappings"/>
<typeMode value="none"/>
<input>
<name value="src"/>
<type value="Coding"/>
<mode value="source"/>
</input>
<input>
<name value="tgt"/>
<type value="targetCondition"/>
<mode value="target"/>
</input>
<rule>
<name value="ApplySNOMEDMappings"/>
<source>
<context value="src"/>
<element value="system"/>
<variable value="systemValue"/>
<condition value="systemValue = 'http://snomed.info/sct'"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="code"/>
<variable value="newCC"/>
<transform value="create"/>
<parameter>
<valueString value="CodeableConcept"/>
</parameter>
</target>
<rule>
<name value="HandleIndividualSNOMEDCoding"/>
<source>
<context value="src"/>
</source>
<target>
<context value="newCC"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="newCoding"/>
<transform value="create"/>
<parameter>
<valueString value="Coding"/>
</parameter>
</target>
<rule>
<name value="SetSNOMEDCode370388006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '370388006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="003"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Patient Immunocompromised"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode234336002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '234336002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="004"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Hemopoietic stem cell transplant [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode50711007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '50711007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="005"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Viral hepatitis type C [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode77386006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '77386006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="007"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Patient currently pregnant [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode102874004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '102874004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="007"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Possible pregnancy [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode255409004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '255409004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="007"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Pregnant woman [person]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode413712001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '413712001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="009"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Breastfeeding [mother] [observable entity]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode230744007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '230744007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="010"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Cerebrospinal fluid leak [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode449840001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '449840001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="011"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Cochlear prosthesis in situ [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode43252007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '43252007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="011"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Cochlear prosthesis, device [physical object]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode359612003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '359612003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="011"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Implantation of cochlear prosthetic device [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode31323000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '31323000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="013"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Severe combined immunodeficiency disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode73211009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '73211009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="014"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Diabetes mellitus [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode328383001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '328383001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="015"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Chronic liver disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode19943007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '19943007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="015"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Cirrhosis of liver [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode128238001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '128238001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="016"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Chronic heart disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode42343007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '42343007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="016"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Congestive heart failure [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode57809008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '57809008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="016"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Myocardial disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode12770006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '12770006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="016"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Cyanotic congenital heart disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode413839001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '413839001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="017"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Chronic lung disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode13645005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '13645005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="017"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Chronic obstructive lung disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode87433001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '87433001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="017"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Pulmonary emphysema [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode278971009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '278971009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="018"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hepatitis A Immune [Finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode271511000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '271511000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="019"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hepatitis B Immune [Finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode371111005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '371111005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="020"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Measles Immune [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode371112003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '371112003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="021"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Mumps Immune [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode278968001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '278968001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="022"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rubella Immune [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode371113008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '371113008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="023"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Varicella Immune"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode38907003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '38907003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="024"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Varicella [Disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode4740000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '4740000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="025"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Herpes Zoster [Disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode86406008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '86406008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="026"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Human immunodeficiency virus infection [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode427314002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '427314002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="026"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Antiviral therapy [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode390798007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '390798007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="027"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Asthma finding [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode195967001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '195967001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="027"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Asthma [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode35327006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '35327006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="028"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Intussusception [morphologic abnormality]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode49723003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '49723003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="028"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Intussusception of intestine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode69776003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '69776003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="029"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Acute gastroenteritis [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode56717001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '56717001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="031"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Tuberculosis [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode372763006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '372763006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="033"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Amantadine [substance]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode51361008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '51361008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="033"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Amantadine [product]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode372532009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '372532009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="033"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rimantadine [substance]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode108712009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '108712009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="033"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rimantadine [product]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode387010007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '387010007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="033"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Zanamivir [substance]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode116100000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '116100000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="033"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Zanamivir [product]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode412261005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '412261005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="033"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Oseltamivir [substance]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode386142008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '386142008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="033"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Oseltamivir [product]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode405742008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '405742008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="034"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Aspirin therapy finding [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode76102007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '76102007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="036"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Male homosexual [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode225531006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '225531006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="036"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Homosexual behavior [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode225516002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '225516002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="037"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Multiple sexual contacts [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode228460004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '228460004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="037"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Multiple current sexual partners [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode228466005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '228466005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="037"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Commitment to sexual relationship [observable entity]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode225517006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '225517006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="038"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Sexual partners [observable entity]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode11723008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '11723008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="038"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Contact with [contextual qualifier] [qualifier value]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode165806002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '165806002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="038"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Hepatitis B surface antigen positive [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode305489005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '305489005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="039"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Under care of genitourinary medicine physician [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode305679000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '305679000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="039"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Seen by genitourinary medicine physician [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode8098009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '8098009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="039"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Sexually transmitted infectious disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode307052004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '307052004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="040"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Illicit drug use [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode228366006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '228366006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="040"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Finding relating to drug misuse behavior [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode226034001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '226034001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="041"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Injecting drug user [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode228388006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '228388006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="041"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Intravenous drug user [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode145101000119102"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '145101000119102'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="041"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Intravenous cocaine abuse [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode403746009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '403746009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="041"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Skin lesion due to intravenous drug abuse [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode860699005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '860699005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="041"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Deep vein thrombosis of lower extremity due to intravenous drug use [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode77176002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '77176002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="042"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Smoker [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode228281002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '228281002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="043"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Problem drinker [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode7200002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '7200002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="043"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Alcoholism [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode159138004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '159138004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="050"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Microbiologist [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode14698002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '14698002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="050"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Medical microbiologist [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode24932003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '24932003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="050"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Exposure to [contextual qualifier] [qualifier value]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode17872004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '17872004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="050"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Neisseria meningitidis [organism]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode159138004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '159138004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="051"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Microbiologist [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode14698002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '14698002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="051"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Medical microbiologist [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode159282002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '159282002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="051"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Laboratory technician [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode24932003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '24932003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="051"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Exposure to [contextual qualifier] [qualifier value]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode5595000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '5595000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="051"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Salmonella Typhi [organism]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode159282002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '159282002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="052"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Laboratory technician [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode24932003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '24932003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="052"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Exposure to [contextual qualifier] [qualifier value]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode26630006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '26630006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="052"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Yellow fever virus [organism]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode159282002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '159282002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="053"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Laboratory technician [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode24932003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '24932003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="053"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Exposure to [contextual qualifier] [qualifier value]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode59881000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '59881000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="053"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rabies virus [organism]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode159282002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '159282002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="054"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Laboratory technician [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode24932003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '24932003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="054"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Exposure to [contextual qualifier] [qualifier value]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode44172002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '44172002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="054"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Human poliovirus [organism]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode223366009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '223366009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="055"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Healthcare professional [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode223366009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '223366009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="056"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Healthcare professional [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode24932003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '24932003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="056"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Exposure to [contextual qualifier] [qualifier value]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode44172002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '44172002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="056"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Human poliovirus [organism]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode26369006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '26369006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="057"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Public health nurse [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode68867008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '68867008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="057"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Public health dentist [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode307969004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '307969004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="057"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Public health officer [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode56466003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '56466003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="057"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Public health physician [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode56079002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '56079002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="057"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Public health veterinarian [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode60008001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '60008001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="057"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Public health nutritionist [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode24932003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '24932003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="057"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Exposure to [contextual qualifier] [qualifier value]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode87612001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '87612001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="057"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Blood [substance]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode32457005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '32457005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="057"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Body fluid [substance]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode223366009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '223366009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="059"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Healthcare professional [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode158942005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '158942005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="059"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Residential child care worker [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode158939004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '158939004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="059"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Child care officer [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode73851001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '73851001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="059"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Plumber [general] [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode160157004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '160157004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="059"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Sewerman [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode266006009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '266006009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="059"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Food/drink processor [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode274272004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '274272004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="059"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Catering services occupation [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode160133004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '160133004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="059"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Packer - food/garden produce [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode265940000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '265940000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="060"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Animal health occupation [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode159091009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '159091009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="061"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Trainer - performing animals [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode24932003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '24932003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="062"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Exposure to [contextual qualifier] [qualifier value]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode59881000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '59881000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="062"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rabies virus [organism]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode65853000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '65853000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="063"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Student [occupation]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode257561002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '257561002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="063"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Further education establishment [environment]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode90688005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '90688005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="066"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Chronic renal failure syndrome [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode20078004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '20078004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="068"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Substance abuse treatment center [environment]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode257656006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '257656006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="069"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Penal institution [environment]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode410519009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '410519009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="070"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="At risk context [qualifier value]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode443684005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '443684005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="070"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Disease outbreak [event]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode11723008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '11723008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="071"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Contact with [contextual qualifier] [qualifier value]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode165806002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '165806002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="071"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Hepatitis B surface antigen positive [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode170484009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '170484009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="072"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Typhoid carrier [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode12271241000119109"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '12271241000119109'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="075"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Transgender identify [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode84757009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '84757009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="076"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Epilepsy [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode192711008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '192711008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="079"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Post diphtheria vaccination encephalitis [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode192710009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '192710009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="079"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Post tetanus vaccination encephalitis [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode192712001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '192712001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="079"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Post pertussis vaccination encephalitis [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293104008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293104008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="080"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Vaccines adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293117006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293117006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="081"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Poliomyelitis vaccine adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode451301000124103"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '451301000124103'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="082"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction caused by Japanese encephalitis virus vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode429301000124101"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '429301000124101'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="083"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction to rotavirus vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293122006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293122006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="084"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Typhoid vaccine adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode420113004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '420113004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Influenza virus vaccine adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293115003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293115003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Pertussis vaccine adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode219085007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '219085007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction to diphtheria vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode219084006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '219084006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction to tetanus vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode451331000124106"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '451331000124106'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="089"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction caused by varicella virus live vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode429311000124103"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '429311000124103'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="090"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction to human papillomavirus vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode219096004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '219096004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="091"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction to measles vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293114004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293114004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="092"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Mumps vaccine adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293119009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293119009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="093"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Rubella vaccine adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293116002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293116002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="094"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Pneumococcal vaccine adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode2219088009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '2219088009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="095"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction to meningococcal vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode451111000124103"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '451111000124103'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="095"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction caused by meningococcal conjugate vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293126009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293126009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="096"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Hepatitis A vaccine adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293110008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293110008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Hepatitis B vaccine adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293127000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293127000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Haemophilus influenzae Type B vaccine adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode219095000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '219095000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="099"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction to yellow fever vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode451291000124104"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '451291000124104'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="100"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction caused by zoster vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode213020009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '213020009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="101"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Egg protein allergy [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode91930004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '91930004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="101"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Allergy to eggs [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293309006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293309006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="102"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Gelatin adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode294847001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '294847001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="102"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Gelatin allergy [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode300916003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '300916003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="104"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Latex allergy [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode441593005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '441593005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="104"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Anaphylaxis due to latex [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode419522004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '419522004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="106"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Gentamycin sensitivity [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode420094007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '420094007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="106"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Gentamicin adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode294469003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '294469003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="106"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Gentamicin allergy [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode294468006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '294468006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="107"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Neomycin allergy [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode292927007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '292927007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="107"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Neomycin adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode294466005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '294466005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="108"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Streptomycin allergy [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode292925004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '292925004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="108"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Streptomycin adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode294530006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '294530006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="109"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Polymyxin B allergy [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode292992006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '292992006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="109"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Polymyxin B adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode703936006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '703936006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="110"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Allergy to yeast [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode293118001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '293118001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="113"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Rabies vaccine adverse reaction [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode46177005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '46177005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="114"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="End stage renal disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode64520006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '64520006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="115"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Protamine sulfate [substance]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode294278007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '294278007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="115"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Protamine allergy [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode451281000124102"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '451281000124102'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="116"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction caused by meningococcal group B vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode219082005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '219082005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="119"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction caused by cholera vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode32911000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '32911000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="121"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Homeless [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode116859006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '116859006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="132"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Transfusion of blood product [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode116859006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '116859006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="133"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Transfusion of blood product [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode116859006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '116859006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="134"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Transfusion of blood product [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode13569004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '13569004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="135"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Transfusion of plasma [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode12719002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '12719002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="135"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Platelet transfusion [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode65880007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '65880007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="145"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="X-linked agammaglobulinemia [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode23238000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '23238000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="145"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Common variable agammaglobulinemia [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode190979003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '190979003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="146"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Selective immunoglobulin A deficiency [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode123785006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '123785006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="146"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Immunoglobulin G subclass deficiency [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode31323000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '31323000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="147"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Severe combined immunodeficiency disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode77128003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '77128003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="147"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DiGeorge sequence [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode77128003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '77128003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="148"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DiGeorge sequence [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode36070007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '36070007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="148"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Wiskott-Aldrich syndrome [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode68504005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '68504005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="148"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Ataxia-telangiectasia syndrome [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode24743004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '24743004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="150"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Complement deficiency disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode24743004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '24743004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="151"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Complement deficiency disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode81166004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '81166004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="151"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Properdin deficiency disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode234605000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '234605000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="151"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Factor B deficiency [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode387759001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '387759001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="152"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Chronic granulomatous disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode77358003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '77358003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="153"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Congenital leukocyte adherence deficiency [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode234433009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '234433009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="153"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Myeloperoxidase deficiency [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode62479008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '62479008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="154"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Acquired immune deficiency syndrome [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode62479008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '62479008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="155"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Acquired immune deficiency syndrome [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode77465005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '77465005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="157"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Transplantation [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode313039003"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '313039003'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="157"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Solid organ transplant [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode86553008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '86553008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="158"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Immunosuppressive therapy [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode53438000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '53438000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="159"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Radiation therapy procedure or service [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode707147002"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '707147002'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="160"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Asplenia [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode709044004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '709044004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="161"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Chronic kidney disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode52254009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '52254009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="167"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Nephrotic syndrome [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode367336001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '367336001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="168"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Chemotherapy [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode213017001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '213017001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="169"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Sexual abuse [event]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode422608009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '422608009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="169"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Sexual assault [finding"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode248110007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '248110007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="169"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Sexual assault [event]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode248986005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '248986005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="170"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Estimated date of conception [observable entity]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode451291000124104"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '451291000124104'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="172"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Adverse reaction caused by zoster vaccine [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode93143009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '93143009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="178"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Leukemia, disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode399600009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '399600009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="179"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Lymphoma [finding]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode118599009"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '118599009'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="180"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hodgkin's disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode109989006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '109989006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="181"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Multiple myeloma [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode86406008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '86406008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="186"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Human immunodeficiency virus infection [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode1156961008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '1156961008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="191"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Chimeric antigen receptor T-cell immunotherapy [procedure]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode363346000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '363346000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="198"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Malignant neoplastic disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode233703007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '233703007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="199"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Interstitial lung disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode190905008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '190905008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="200"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="cystic fibrosis [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode70995007"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '70995007'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="201"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Pulmonary hypertension [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode52448006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '52448006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="202"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Dimensia [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode41040004"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '41040004'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="203"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Complete trisomy 21 syndrome [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode40108008"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '40108008'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="205"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Thalassemia [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode62914000"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '62914000'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="206"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Cerebrovascular disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode13645005"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '13645005'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="214"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Chronic obstructive lung disease [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode87433001"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '87433001'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="215"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Pulmonary emphysema [disorder]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetSNOMEDCode413490006"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '413490006'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="245"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="American Indian or Alaska Native [racial group]"/>
</parameter>
</target>
</rule>
</rule>
</rule>
<rule>
<name value="ApplyCVXMappings"/>
<source>
<context value="src"/>
<element value="system"/>
<variable value="systemValue"/>
<condition value="systemValue = 'http://hl7.org/fhir/sid/cvx'"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="code"/>
<variable value="newCC"/>
<transform value="create"/>
<parameter>
<valueString value="CodeableConcept"/>
</parameter>
</target>
<rule>
<name value="HandleIndividualCVXCoding"/>
<source>
<context value="src"/>
</source>
<target>
<context value="newCC"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="newCoding"/>
<transform value="create"/>
<parameter>
<valueString value="Coding"/>
</parameter>
</target>
<rule>
<name value="SetCVXCode02"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '02'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="081"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="OPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode10"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '10'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="081"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode89"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '89'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="081"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Polio, unspecified formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode110"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '110'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="081"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-HepB-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode120"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '120'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="081"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-Hib-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode130"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '130'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="081"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode132"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '132'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="081"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB, Historical"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode146"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '146'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="081"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode39"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '39'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="082"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Japanese Encephalitis, MB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode134"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '134'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="082"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Japanese Encephalitis, VC"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode129"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '129'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="082"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Japanese Encephalitis, unspecified"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode116"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '116'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="083"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rotavirus, pentavalent"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode122"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '122'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="083"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rotavirus, unspecified formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode74"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '74'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="083"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rotavirus, tetravalent"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode119"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '119'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="083"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rotavirus, monovalent"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode101"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '101'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="084"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Typhoid capsular polysaccharide"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode25"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '25'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="084"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Typhoid oral, live, attenuated"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode41"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '41'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="084"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Typhoid, parenteral"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode53"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '53'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="084"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Typhoid, parenteral, AKD [U.S. military]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode91"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '91'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="084"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Typhoid, unspecified formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode15"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '15'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Influenza, split incl. purified surface antigen"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode16"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '16'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Influenza, whole"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode88"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '88'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Influenza, Unspecified"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode111"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '111'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Influenza, live, intranasal"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode135"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '135'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Influenza, high dose seasonal"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode140"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '140'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Influenza, injectable preservative free"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode141"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '141'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Influenza, injectable"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode144"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '144'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Influenza, intradermal, preservative free"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode149"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '149'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="influenza, live, intranasal, quadrivalent"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode150"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '150'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="influenza, injectable, quadrivalent, preservative free"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode151"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '151'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="influenza nasal, unspecified formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode153"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '153'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Influenza, injectable, MDCK, preservative free"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode155"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '155'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="influenza, recombinant, injectable, preservative free"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode158"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '158'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Influenza, injectable, quadrivalent"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode161"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '161'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Influenza, injectable, quadrivalent, preservative free, peds"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode166"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '166'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Influenza, intradermal, quadrivalent, preservative free"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode01"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '01'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTP"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode22"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '22'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTP-Hib"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode50"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '50'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-Hib"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode102"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '102'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTP-Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode106"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '106'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP, 5 pertussis antigens"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode107"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '107'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP, Unspecified Formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode110"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '110'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-HepB-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode115"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '115'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Tdap"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode120"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '120'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-Hib-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode130"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '130'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode132"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '132'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB,historical"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode146"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '146'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode01"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '01'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTP"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode09"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '09'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Td - Adult Adsorbed"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode22"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '22'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTP-Hib"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode28"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '28'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DT - Pediatric"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode50"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '50'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-Hib"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode102"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '102'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTP-Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode106"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '106'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP, 5 pertussis antigens"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode107"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '107'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP, Unspecified Formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode110"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '110'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-HepB-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode113"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '113'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Td p-free"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode115"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '115'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Tdap"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode120"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '120'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-Hib-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode130"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '130'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode132"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '132'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB,historical"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode138"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '138'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Td - Adult"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode139"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '139'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Td - Adult Unspecified Formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode146"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '146'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode01"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '01'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTP"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode09"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '09'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Td - Adult Adsorbed"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode22"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '22'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTP-Hib"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode28"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '28'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DT - Pediatric"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode35"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '35'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="TT"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode50"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '50'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-Hib"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode102"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '102'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTP-Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode106"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '106'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP, 5 pertussis antigens"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode107"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '107'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP, Unspecified Formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode110"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '110'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-HepB-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode113"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '113'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Td p-free"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode115"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '115'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Tdap"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode120"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '120'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-Hib-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode130"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '130'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode132"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '132'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB,historical"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode138"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '138'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Td - Adult"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode139"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '139'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Td - Adult Unspecified Formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode146"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '146'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode21"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '21'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="089"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Varicella"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode94"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '94'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="089"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="MMRV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode121"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '121'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="089"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Zoster"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode62"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '62'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="090"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="4vHPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode118"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '118'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="090"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="2vHPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode137"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '137'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="090"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="HPV Unspecified"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode165"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '165'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="090"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="9vHPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode03"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '03'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="091"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="MMR"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode04"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '04'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="091"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Measles/Rubella"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode05"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '05'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="091"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Measles"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode94"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '94'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="091"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="MMRV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode03"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '03'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="092"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="MMR"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode07"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '07'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="092"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Mumps"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode38"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '38'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="092"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rubella/Mumps"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode94"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '94'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="092"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="MMRV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode03"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '03'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="093"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="MMR"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode04"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '04'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="093"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Measles/Rubella"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode06"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '06'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="093"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rubella"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode38"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '38'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="093"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rubella/Mumps"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode94"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '94'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="093"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="MMRV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode133"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '133'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="094"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="PCV13"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode100"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '100'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="094"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="PCV7"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode33"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '33'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="094"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="PPSV23"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode109"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '109'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="094"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Pneumococcal, unspecified formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode152"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '152'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="094"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Pneumococcal Conjugate, unspecified formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode32"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '32'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="095"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Meningococcal, MPSV4"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode108"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '108'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="095"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Meningococcal ACWY, unspecified"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode114"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '114'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="095"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Meningococcal, MCV4P"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode136"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '136'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="095"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Meningococcal, MCV4O"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode147"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '147'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="095"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="MCV4, unspecified"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode148"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '148'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="095"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Meningococcal C/Y-HIB PRP"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode167"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '167'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="095"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Meningococcal, unknown serogroups"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode52"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '52'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="096"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hep A, adult"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode83"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '83'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="096"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hep A, ped/adol, 2 dose"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode84"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '84'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="096"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hep A, ped/adol, 3 dose"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode85"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '85'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="096"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hep A, Unspecified"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode104"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '104'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="096"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="HepA-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode08"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '08'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hep B, Adol/peds"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode42"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '42'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hep B, Adol/high risk infant"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode43"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '43'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hep B, Adult"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode44"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '44'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hep B, Dialysis"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode45"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '45'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hep B, Unspecified Formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode51"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '51'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode102"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '102'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode104"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '104'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="HepA-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode110"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '110'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-HepB-IPV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode132"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '132'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB, historical"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode146"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '146'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode17"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '17'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hib unspecified formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode22"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '22'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTP-Hib"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode46"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '46'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="PRP-D"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode47"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '47'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="HbOC"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode48"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '48'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="PRP-T"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode49"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '49'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="PRP-OMP"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode50"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '50'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP/Hib"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode51"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '51'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode102"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '102'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTP-Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode120"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '120'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV/Hib"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode132"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '132'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB,historical"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode146"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '146'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="DTaP-IPV-Hib-HepB"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode148"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '148'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hib-MenCY-TT"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode25"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '25'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="099"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Yellow Fever"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode121"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '121'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="100"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Zoster live"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode18"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '18'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="113"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rabies, intramuscular injection"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode40"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '40'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="113"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rabies, intradermal injection"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode90"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '90'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="113"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rabies, unspecified formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode162"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '162'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="116"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Meningococcal B, recombinant"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode163"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '163'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="116"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Meningococcal B, OMV"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode164"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '164'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="116"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Meningococcal B, unspecified"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode26"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '26'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="119"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="cholera, unspecified formulation"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode172"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '172'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="119"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="cholera, WC-rBS"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode173"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '173'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="119"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="cholera, BivWC"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode174"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '174'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="119"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="cholera, live attenuated"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode208"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '208'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="122"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="COVID-19, mRNA, LNP-S, PF, 30 mcg/0.3 mL dose"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode13"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '13'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="125"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Tetanus immune globulin"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode154"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '154'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="126"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hepatitis A immune globulin"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode30"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '30'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="127"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Hepatitis B immune globulin"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode34"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '34'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="128"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Rabies immune globulin"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode36"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '36'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="129"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Varicella zoster immune globulin"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode187"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '187'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="172"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Zoster subunit"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCodenonUS"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'non-US'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="252"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Tick-borne encephalitis vaccine"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode222"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '222'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="252"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Tick-borne encephalitis, unspecified"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode223"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '223'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="252"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Tick-borne encephalitis, inactivated, PF, 0.25mL"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCVXCode224"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = '224'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="252"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Tick-borne encephalitis, inactivated, PF, 0.5mL"/>
</parameter>
</target>
</rule>
</rule>
</rule>
<rule>
<name value="ApplyCDCPHINVSMappings"/>
<source>
<context value="src"/>
<element value="system"/>
<variable value="systemValue"/>
<condition value="systemValue = 'http://phinvads.cdc.gov'"/>
</source>
<target>
<context value="tgt"/>
<contextType value="variable"/>
<element value="code"/>
<variable value="newCC"/>
<transform value="create"/>
<parameter>
<valueString value="CodeableConcept"/>
</parameter>
</target>
<rule>
<name value="HandleIndividualCDCPHINVSCoding"/>
<source>
<context value="src"/>
</source>
<target>
<context value="newCC"/>
<contextType value="variable"/>
<element value="coding"/>
<variable value="newCoding"/>
<transform value="create"/>
<parameter>
<valueString value="Coding"/>
</parameter>
</target>
<rule>
<name value="SetCDCPHINVSCodeVXC27"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC27'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="003"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Immunodeficiency due to any cause"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC21"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC21'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="028"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Previous history of intussusception"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC22"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC22'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="079"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Encephalopathy within 7 days of previous dose of DTP or DTaP"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="080"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="081"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="082"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="083"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="084"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="085"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="086"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="087"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="088"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="089"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="090"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="091"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="092"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="093"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="094"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="095"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="096"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="097"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="098"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="099"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="100"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC18"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC18'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="110"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString value="Allergy to baker's yeast [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC17"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC17'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="111"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy [anaphylactic] to 2-phenoxyethanol"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="113"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="116"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="119"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="122"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="172"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
<rule>
<name value="SetCDCPHINVSCodeVXC20"/>
<source>
<context value="src"/>
<element value="code"/>
<variable value="codeValue"/>
<condition value="codeValue = 'VXC20'"/>
</source>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="system"/>
<transform value="copy"/>
<parameter>
<valueString
value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="code"/>
<transform value="copy"/>
<parameter>
<valueString value="252"/>
</parameter>
</target>
<target>
<context value="newCoding"/>
<contextType value="variable"/>
<element value="display"/>
<transform value="copy"/>
<parameter>
<valueString
value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
</parameter>
</target>
</rule>
</rule>
</rule>
</group>
</StructureMap>