/* ============================================================================= Program : Dx_Pr_Grps_Formats.txt Date Revised: 12/28/2023 Descripiton : Create SAS formats that may be used with SAS procedures to label the values of HCUP diagnosis and procedure groups data elements, including Clinical Classification Software Revised (CCSR) data elements. For example, the following SAS statements use the $DXCCSR_DEFAULT_DX1f. format with the Freq Procedure to label the values of DXCCSR_DEFAULT_DX1 in the frequency listing: Proc Freq Data = NIS_2021_DX_PR_GRPS ; Table DXCCSR_DEFAULT_DX1 ; Format DXCCSR_DEFAULT_DX1 $DXCCSR_DEFAULT_DX1f. ; Run ; The following tables list formats available for selected HCUP data elements. (Note that some data elements are not always available.) DX_PR_GRPS File Data Element(s) Format Name(s) =============== ============== CMR_aaa ComorR. DXCCSR $DXCCSR_CAT. DXCCSR_AAAnnn DXCCSRf. DXCCSR_DEFAULT_DX1 $DXCCSR_DEFAULT_DX1f. PCLASSnnn FPClass. PRCCSR $PRCCSR_CAT. PRCCSR_AAAnnn PRCCSRf. ============================================================================= */ PROC FORMAT ; Value COMORR . = ' .: Missing because POA is required' 0 = ' 0: Comorbidity is not present' 1 = ' 1: Comorbidity is present' ; Value DXCCSRF . = '.: Missing' 0 = '0: The CCSR was not triggered by any ICD-10-CM diagnosis code' 1 = '1: The CCSR was triggered by only the principal (or first-listed) diagnosis' 2 = '2: The CCSR was triggered by both the principal (or first-listed) diagnosis and secondary diagnosis codes' 3 = '3: The CCSR was triggered by only secondary diagnosis code(s) on the input record' ; Value $DXCCSR_CAT 'BLD001' = 'BLD001: Nutritional anemia' 'BLD002' = 'BLD002: Hemolytic anemia' 'BLD003' = 'BLD003: Aplastic anemia' 'BLD004' = 'BLD004: Acute posthemorrhagic anemia' 'BLD005' = 'BLD005: Sickle cell trait/anemia' 'BLD006' = 'BLD006: Coagulation and hemorrhagic disorders' 'BLD007' = 'BLD007: Diseases of white blood cells' 'BLD008' = 'BLD008: Immunity disorders' 'BLD009' = 'BLD009: Postprocedural or postoperative complications of the spleen' 'BLD010' = 'BLD010: Other specified and unspecified hematologic conditions' 'CIR001' = 'CIR001: Chronic rheumatic heart disease' 'CIR002' = 'CIR002: Acute rheumatic heart disease' 'CIR003' = 'CIR003: Nonrheumatic and unspecified valve disorders' 'CIR004' = 'CIR004: Endocarditis and endocardial disease' 'CIR005' = 'CIR005: Myocarditis and cardiomyopathy' 'CIR006' = 'CIR006: Pericarditis and pericardial disease' 'CIR007' = 'CIR007: Essential hypertension' 'CIR008' = 'CIR008: Hypertension with complications and secondary hypertension' 'CIR009' = 'CIR009: Acute myocardial infarction' 'CIR010' = 'CIR010: Complications of acute myocardial infarction' 'CIR011' = 'CIR011: Coronary atherosclerosis and other heart disease' 'CIR012' = 'CIR012: Nonspecific chest pain' 'CIR013' = 'CIR013: Acute pulmonary embolism' 'CIR014' = 'CIR014: Pulmonary heart disease' 'CIR015' = 'CIR015: Other and ill-defined heart disease' 'CIR016' = 'CIR016: Conduction disorders' 'CIR017' = 'CIR017: Cardiac dysrhythmias' 'CIR018' = 'CIR018: Cardiac arrest and ventricular fibrillation' 'CIR019' = 'CIR019: Heart failure' 'CIR020' = 'CIR020: Cerebral infarction' 'CIR021' = 'CIR021: Acute hemorrhagic cerebrovascular disease' 'CIR022' = 'CIR022: Sequela of hemorrhagic cerebrovascular disease' 'CIR023' = 'CIR023: Occlusion or stenosis of precerebral or cerebral arteries without infarction' 'CIR024' = 'CIR024: Other and ill-defined cerebrovascular disease' 'CIR025' = 'CIR025: Sequela of cerebral infarction and other cerebrovascular disease' 'CIR026' = 'CIR026: Peripheral and visceral vascular disease' 'CIR027' = 'CIR027: Arterial dissections' 'CIR028' = 'CIR028: Gangrene' 'CIR029' = 'CIR029: Aortic; peripheral; and visceral artery aneurysms' 'CIR030' = 'CIR030: Aortic and peripheral arterial embolism or thrombosis' 'CIR031' = 'CIR031: Hypotension' 'CIR032' = 'CIR032: Other specified and unspecified circulatory disease' 'CIR033' = 'CIR033: Acute phlebitis; thrombophlebitis and thromboembolism' 'CIR034' = 'CIR034: Chronic phlebitis; thrombophlebitis and thromboembolism' 'CIR035' = 'CIR035: Varicose veins of lower extremity' 'CIR036' = 'CIR036: Postthrombotic syndrome and venous insufficiency/hypertension' 'CIR037' = 'CIR037: Vasculitis' 'CIR038' = 'CIR038: Postprocedural or postoperative circulatory system complication' 'CIR039' = 'CIR039: Other specified diseases of veins and lymphatics' 'DEN001' = 'DEN001: Any dental condition including traumatic injury' 'DEN002' = 'DEN002: Nontraumatic dental conditions' 'DEN003' = 'DEN003: Caries, periodontitis, and other preventable dental conditions' 'DIG001' = 'DIG001: Intestinal infection' 'DIG002' = 'DIG002: Disorders of teeth and gingiva' 'DIG003' = 'DIG003: Diseases of mouth; excluding dental' 'DIG004' = 'DIG004: Esophageal disorders' 'DIG005' = 'DIG005: Gastroduodenal ulcer' 'DIG006' = 'DIG006: Gastrointestinal and biliary perforation' 'DIG007' = 'DIG007: Gastritis and duodenitis' 'DIG008' = 'DIG008: Other specified and unspecified disorders of stomach and duodenum' 'DIG009' = 'DIG009: Appendicitis and other appendiceal conditions' 'DIG010' = 'DIG010: Abdominal hernia' 'DIG011' = 'DIG011: Regional enteritis and ulcerative colitis' 'DIG012' = 'DIG012: Intestinal obstruction and ileus' 'DIG013' = 'DIG013: Diverticulosis and diverticulitis' 'DIG014' = 'DIG014: Hemorrhoids' 'DIG015' = 'DIG015: Anal and rectal conditions' 'DIG016' = 'DIG016: Peritonitis and intra-abdominal abscess' 'DIG017' = 'DIG017: Biliary tract disease' 'DIG018' = 'DIG018: Hepatic failure' 'DIG019' = 'DIG019: Other specified and unspecified liver disease' 'DIG020' = 'DIG020: Pancreatic disorders (excluding diabetes)' 'DIG021' = 'DIG021: Gastrointestinal hemorrhage' 'DIG022' = 'DIG022: Noninfectious gastroenteritis' 'DIG023' = 'DIG023: Noninfectious hepatitis' 'DIG024' = 'DIG024: Postprocedural or postoperative digestive system complication' 'DIG025' = 'DIG025: Other specified and unspecified gastrointestinal disorders' 'EAR001' = 'EAR001: Otitis media' 'EAR002' = 'EAR002: Diseases of middle ear and mastoid (except otitis media)' 'EAR003' = 'EAR003: Diseases of inner ear and related conditions' 'EAR004' = 'EAR004: Hearing loss' 'EAR005' = 'EAR005: Postprocedural or postoperative ear and/or mastoid process complication' 'EAR006' = 'EAR006: Other specified and unspecified disorders of the ear' 'END001' = 'END001: Thyroid disorders' 'END002' = 'END002: Diabetes mellitus without complication' 'END003' = 'END003: Diabetes mellitus with complication' 'END004' = 'END004: Diabetes mellitus, Type 1' 'END005' = 'END005: Diabetes mellitus, Type 2' 'END006' = 'END006: Diabetes mellitus, due to underlying condition, drug or chemical induced, or other specified type' 'END007' = 'END007: Nutritional deficiencies' 'END008' = 'END008: Malnutrition' 'END009' = 'END009: Obesity' 'END010' = 'END010: Disorders of lipid metabolism' 'END011' = 'END011: Fluid and electrolyte disorders' 'END012' = 'END012: Cystic fibrosis' 'END013' = 'END013: Pituitary disorders' 'END014' = 'END014: Postprocedural or postoperative endocrine or metabolic complication' 'END015' = 'END015: Other specified and unspecified endocrine disorders' 'END016' = 'END016: Other specified and unspecified nutritional and metabolic disorders' 'END017' = 'END017: Sequela of malnutrition and other nutritional deficiencies' 'EXT001' = 'EXT001: External cause codes: cut/pierce; initial encounter' 'EXT002' = 'EXT002: External cause codes: drowning/submersion; initial encounter' 'EXT003' = 'EXT003: External cause codes: fall; initial encounter' 'EXT004' = 'EXT004: External cause codes: fire/burn; initial encounter' 'EXT005' = 'EXT005: External cause codes: firearm; initial encounter' 'EXT006' = 'EXT006: External cause codes: machinery; initial encounter' 'EXT007' = 'EXT007: External cause codes: motor vehicle traffic (MVT); initial encounter' 'EXT008' = 'EXT008: External cause codes: pedal cyclist; not MVT; initial encounter' 'EXT009' = 'EXT009: External cause codes: pedestrian; not MVT; initial encounter' 'EXT010' = 'EXT010: External cause codes: transport; not MVT; initial encounter' 'EXT011' = 'EXT011: External cause codes: natural/environment; initial encounter' 'EXT012' = 'EXT012: External cause codes: bites; initial encounter' 'EXT013' = 'EXT013: External cause codes: overexertion; initial encounter' 'EXT014' = 'EXT014: External cause codes: poisoning by drug' 'EXT015' = 'EXT015: External cause codes: poisoning by non-drug' 'EXT016' = 'EXT016: External cause codes: struck by; against; initial encounter' 'EXT017' = 'EXT017: External cause codes: suffocation/inhalation; initial encounter' 'EXT018' = 'EXT018: External cause codes: other specified, classifiable and NEC; initial encounter' 'EXT019' = 'EXT019: External cause codes: unspecified mechanism' 'EXT020' = 'EXT020: External cause codes: intent of injury, accidental/unintentional' 'EXT021' = 'EXT021: External cause codes: intent of injury, self-harm' 'EXT022' = 'EXT022: External cause codes: intent of injury, assault' 'EXT023' = 'EXT023: External cause codes: intent of injury, undetermined' 'EXT024' = 'EXT024: External cause codes: intent of injury, legal intervention/war' 'EXT025' = 'EXT025: External cause codes: complications of medical and surgical care, initial encounter' 'EXT026' = 'EXT026: External cause codes: activity codes' 'EXT027' = 'EXT027: External cause codes: place of occurrence of the external cause' 'EXT028' = 'EXT028: External cause codes: evidence of alcohol involvement' 'EXT029' = 'EXT029: External cause codes: subsequent encounter' 'EXT030' = 'EXT030: External cause codes: sequela' 'EYE001' = 'EYE001: Cornea and external disease' 'EYE002' = 'EYE002: Cataract and other lens disorders' 'EYE003' = 'EYE003: Glaucoma' 'EYE004' = 'EYE004: Uveitis and ocular inflammation' 'EYE005' = 'EYE005: Retinal and vitreous conditions' 'EYE006' = 'EYE006: Neuro-ophthalmology' 'EYE007' = 'EYE007: Strabismus' 'EYE008' = 'EYE008: Oculofacial plastics and orbital conditions' 'EYE009' = 'EYE009: Refractive error' 'EYE010' = 'EYE010: Blindness and vision defects' 'EYE011' = 'EYE011: Postprocedural or postoperative eye complication' 'EYE012' = 'EYE012: Other specified eye disorders' 'FAC001' = 'FAC001: Encounter for administrative purposes' 'FAC002' = 'FAC002: Encounter for mental health services related to abuse' 'FAC003' = 'FAC003: Encounter for observation and examination for conditions ruled out (excludes infectious disease, neoplasm, mental disorders)' 'FAC004' = 'FAC004: Encounter for prophylactic or other procedures' 'FAC005' = 'FAC005: Encounter for prophylactic measures (excludes immunization)' 'FAC006' = 'FAC006: Encounter for antineoplastic therapies' 'FAC007' = 'FAC007: Encounter for mental health conditions' 'FAC008' = 'FAC008: Neoplasm-related encounters' 'FAC009' = 'FAC009: Implant, device or graft related encounter' 'FAC010' = 'FAC010: Other aftercare encounter' 'FAC011' = 'FAC011: Counseling related to sexual behavior or orientation' 'FAC012' = 'FAC012: Other specified encounters and counseling' 'FAC013' = 'FAC013: Contraceptive and procreative management' 'FAC014' = 'FAC014: Medical examination/evaluation' 'FAC015' = 'FAC015: Resistance to antimicrobial drugs' 'FAC016' = 'FAC016: Exposure, encounters, screening or contact with infectious disease' 'FAC017' = 'FAC017: No immunization or underimmunization' 'FAC018' = 'FAC018: Screening for neurocognitive or neurodevelopmental condition' 'FAC019' = 'FAC019: Socioeconomic/psychosocial factors' 'FAC020' = 'FAC020: Lifestyle/life management factors' 'FAC021' = 'FAC021: Personal/family history of disease' 'FAC022' = 'FAC022: Acquired absence of limb or organ' 'FAC023' = 'FAC023: Organ transplant status' 'FAC024' = 'FAC024: Carrier status' 'FAC025' = 'FAC025: Other specified status' 'GEN001' = 'GEN001: Nephritis; nephrosis; renal sclerosis' 'GEN002' = 'GEN002: Acute and unspecified renal failure' 'GEN003' = 'GEN003: Chronic kidney disease' 'GEN004' = 'GEN004: Urinary tract infections' 'GEN005' = 'GEN005: Calculus of urinary tract' 'GEN006' = 'GEN006: Other specified and unspecified diseases of kidney and ureters' 'GEN007' = 'GEN007: Other specified and unspecified diseases of bladder and urethra' 'GEN008' = 'GEN008: Urinary incontinence' 'GEN009' = 'GEN009: Hematuria' 'GEN010' = 'GEN010: Proteinuria' 'GEN011' = 'GEN011: Vesicoureteral reflux' 'GEN012' = 'GEN012: Hyperplasia of prostate' 'GEN013' = 'GEN013: Inflammatory conditions of male genital organs' 'GEN014' = 'GEN014: Erectile dysfunction' 'GEN015' = 'GEN015: Male infertility' 'GEN016' = 'GEN016: Other specified male genital disorders' 'GEN017' = 'GEN017: Nonmalignant breast conditions' 'GEN018' = 'GEN018: Inflammatory diseases of female pelvic organs' 'GEN019' = 'GEN019: Endometriosis' 'GEN020' = 'GEN020: Prolapse of female genital organs' 'GEN021' = 'GEN021: Menstrual disorders' 'GEN022' = 'GEN022: Benign ovarian cyst' 'GEN023' = 'GEN023: Menopausal disorders' 'GEN024' = 'GEN024: Female infertility' 'GEN025' = 'GEN025: Other specified female genital disorders' 'GEN026' = 'GEN026: Postprocedural or postoperative genitourinary system complication' 'INF001' = 'INF001: Tuberculosis' 'INF002' = 'INF002: Septicemia' 'INF003' = 'INF003: Bacterial infections' 'INF004' = 'INF004: Fungal infections' 'INF005' = 'INF005: Foodborne intoxications' 'INF006' = 'INF006: HIV infection' 'INF007' = 'INF007: Hepatitis' 'INF008' = 'INF008: Viral infection' 'INF009' = 'INF009: Parasitic, other specified and unspecified infections' 'INF010' = 'INF010: Sexually transmitted infections (excluding HIV and hepatitis)' 'INF011' = 'INF011: Sequela of specified infectious disease conditions' 'INF012' = 'INF012: Coronavirus disease – 2019 (COVID-19)' 'INJ001' = 'INJ001: Fracture of head and neck, initial encounter' 'INJ002' = 'INJ002: Fracture of the spine and back, initial encounter' 'INJ003' = 'INJ003: Fracture of torso, initial encounter' 'INJ004' = 'INJ004: Fracture of the upper limb, initial encounter' 'INJ005' = 'INJ005: Fracture of the lower limb (except hip), initial encounter' 'INJ006' = 'INJ006: Fracture of the neck of the femur (hip), initial encounter' 'INJ007' = 'INJ007: Dislocations, initial encounter' 'INJ008' = 'INJ008: Traumatic brain injury (TBI); concussion, initial encounter' 'INJ009' = 'INJ009: Spinal cord injury (SCI), initial encounter' 'INJ010' = 'INJ010: Internal organ injury, initial encounter' 'INJ011' = 'INJ011: Open wounds of head and neck, initial encounter' 'INJ012' = 'INJ012: Open wounds to limbs, initial encounter' 'INJ013' = 'INJ013: Open wounds of trunk, initial encounter' 'INJ014' = 'INJ014: Amputation of a limb, initial encounter' 'INJ015' = 'INJ015: Amputation of other body parts, initial encounter' 'INJ016' = 'INJ016: Injury to blood vessels, initial encounter' 'INJ017' = 'INJ017: Superficial injury; contusion, initial encounter' 'INJ018' = 'INJ018: Crushing injury, initial encounter' 'INJ019' = 'INJ019: Burn and corrosion, initial encounter' 'INJ020' = 'INJ020: Effect of foreign body entering opening, initial encounter' 'INJ021' = 'INJ021: Effect of other external causes, initial encounter' 'INJ022' = 'INJ022: Poisoning by drugs, initial encounter' 'INJ023' = 'INJ023: Toxic effects, initial encounter' 'INJ024' = 'INJ024: Sprains and strains, initial encounter' 'INJ025' = 'INJ025: Injury to nerves, muscles and tendons, initial encounter' 'INJ026' = 'INJ026: Other specified injury' 'INJ027' = 'INJ027: Other unspecified injury' 'INJ028' = 'INJ028: Adverse effects of drugs and medicaments, initial encounter' 'INJ029' = 'INJ029: Underdosing of drugs and medicaments, initial encounter' 'INJ030' = 'INJ030: Drug induced or toxic related condition' 'INJ031' = 'INJ031: Allergic reactions' 'INJ032' = 'INJ032: Maltreatment/abuse' 'INJ033' = 'INJ033: Complication of cardiovascular device, implant or graft, initial encounter' 'INJ034' = 'INJ034: Complication of genitourinary device, implant or graft, initial encounter' 'INJ035' = 'INJ035: Complication of internal orthopedic device or implant, initial encounter' 'INJ036' = 'INJ036: Complication of transplanted organs or tissue, initial encounter' 'INJ037' = 'INJ037: Complication of other surgical or medical care, injury, initial encounter' 'INJ038' = 'INJ038: Fracture of head and neck, subsequent encounter' 'INJ039' = 'INJ039: Fracture of the spine and back, subsequent encounter' 'INJ040' = 'INJ040: Fracture of torso, subsequent encounter' 'INJ041' = 'INJ041: Fracture of the upper limb, subsequent encounter' 'INJ042' = 'INJ042: Fracture of lower limb (except hip), subsequent encounter' 'INJ043' = 'INJ043: Fracture of the neck of the femur (hip), subsequent encounter' 'INJ044' = 'INJ044: Dislocations, subsequent encounter' 'INJ045' = 'INJ045: Traumatic brain injury (TBI); concussion, subsequent encounter' 'INJ046' = 'INJ046: Spinal cord injury (SCI), subsequent encounter' 'INJ047' = 'INJ047: Internal organ injury, subsequent encounter' 'INJ048' = 'INJ048: Open wounds of head and neck, subsequent encounter' 'INJ049' = 'INJ049: Open wounds to limbs, subsequent encounter' 'INJ050' = 'INJ050: Open wounds of trunk, subsequent encounter' 'INJ051' = 'INJ051: Amputation of a limb, subsequent encounter' 'INJ052' = 'INJ052: Amputation of other body parts, subsequent encounter' 'INJ053' = 'INJ053: Injury to blood vessels, subsequent encounter' 'INJ054' = 'INJ054: Superficial injury; contusion, subsequent encounter' 'INJ055' = 'INJ055: Crushing injury, subsequent encounter' 'INJ056' = 'INJ056: Burns and corrosion, subsequent encounter' 'INJ057' = 'INJ057: Effect of foreign body entering opening, subsequent encounter' 'INJ058' = 'INJ058: Effect of other external causes, subsequent encounter' 'INJ059' = 'INJ059: Poisoning by drugs, subsequent encounter' 'INJ060' = 'INJ060: Toxic effects, subsequent encounter' 'INJ061' = 'INJ061: Sprains and strains, subsequent encounter' 'INJ062' = 'INJ062: Injury to nerves, muscles and tendons, subsequent encounter' 'INJ063' = 'INJ063: Other specified injury, subsequent encounter' 'INJ064' = 'INJ064: Other unspecified injuries, subsequent encounter' 'INJ065' = 'INJ065: Adverse effects of drugs and medicaments, subsequent encounter' 'INJ066' = 'INJ066: Underdosing of drugs and medicaments, subsequent encounter' 'INJ067' = 'INJ067: Allergic reactions, subsequent encounter' 'INJ068' = 'INJ068: Maltreatment/abuse, subsequent encounter' 'INJ069' = 'INJ069: Complication of cardiovascular device, implant or graft, subsequent encounter' 'INJ070' = 'INJ070: Complication of genitourinary device, implant or graft, subsequent encounter' 'INJ071' = 'INJ071: Complication of internal orthopedic device or implant, subsequent encounter' 'INJ072' = 'INJ072: Complication of other surgical or medical care, injury, subsequent encounter' 'INJ073' = 'INJ073: Injury, sequela' 'INJ074' = 'INJ074: Effect of other external causes, sequela' 'INJ075' = 'INJ075: Poisoning/toxic effect/adverse effects/underdosing, sequela' 'INJ076' = 'INJ076: Complication, sequela' 'InvlDX' = 'InvlDX: Used to indicate the diagnosis was invalid and could not be assigned a CCSR category' 'MAL001' = 'MAL001: Cardiac and circulatory congenital anomalies' 'MAL002' = 'MAL002: Digestive congenital anomalies' 'MAL003' = 'MAL003: Genitourinary congenital anomalies' 'MAL004' = 'MAL004: Nervous system congenital anomalies' 'MAL005' = 'MAL005: Congenital malformations of eye, ear, face, neck' 'MAL006' = 'MAL006: Cleft lip or palate' 'MAL007' = 'MAL007: Respiratory congenital malformations' 'MAL008' = 'MAL008: Musculoskeletal congenital conditions' 'MAL009' = 'MAL009: Chromosomal abnormalities' 'MAL010' = 'MAL010: Other specified and unspecified congenital anomalies' 'MBD001' = 'MBD001: Schizophrenia spectrum and other psychotic disorders' 'MBD002' = 'MBD002: Depressive disorders' 'MBD003' = 'MBD003: Bipolar and related disorders' 'MBD004' = 'MBD004: Other specified and unspecified mood disorders' 'MBD005' = 'MBD005: Anxiety and fear-related disorders' 'MBD006' = 'MBD006: Obsessive-compulsive and related disorders' 'MBD007' = 'MBD007: Trauma- and stressor-related disorders' 'MBD008' = 'MBD008: Disruptive, impulse-control and conduct disorders' 'MBD009' = 'MBD009: Personality disorders' 'MBD010' = 'MBD010: Feeding and eating disorders' 'MBD011' = 'MBD011: Somatic disorders' 'MBD012' = 'MBD012: Suicidal ideation/attempt/intentional self-harm' 'MBD013' = 'MBD013: Miscellaneous mental and behavioral disorders/conditions' 'MBD014' = 'MBD014: Neurodevelopmental disorders' 'MBD017' = 'MBD017: Alcohol-related disorders' 'MBD018' = 'MBD018: Opioid-related disorders' 'MBD019' = 'MBD019: Cannabis-related disorders' 'MBD020' = 'MBD020: Sedative-related disorders' 'MBD021' = 'MBD021: Stimulant-related disorders' 'MBD022' = 'MBD022: Hallucinogen-related disorders' 'MBD023' = 'MBD023: Inhalant-related disorders' 'MBD024' = 'MBD024: Tobacco-related disorders' 'MBD025' = 'MBD025: Other specified substance-related disorders' 'MBD026' = 'MBD026: Mental and substance use disorders in remission' 'MBD027' = 'MBD027: Suicide attempt/intentional self-harm; subsequent encounter' 'MBD028' = 'MBD028: Opioid-related disorders; subsequent encounter' 'MBD029' = 'MBD029: Stimulant-related disorders; subsequent encounter' 'MBD030' = 'MBD030: Cannabis-related disorders; subsequent encounter' 'MBD031' = 'MBD031: Hallucinogen-related disorders; subsequent encounter' 'MBD032' = 'MBD032: Sedative-related disorders; subsequent encounter' 'MBD033' = 'MBD033: Inhalant-related disorders; subsequent encounter' 'MBD034' = 'MBD034: Mental and substance use disorders; sequela' 'MUS001' = 'MUS001: Infective arthritis' 'MUS002' = 'MUS002: Osteomyelitis' 'MUS003' = 'MUS003: Rheumatoid arthritis and related disease' 'MUS004' = 'MUS004: Juvenile arthritis' 'MUS005' = 'MUS005: Other specified chronic arthropathy' 'MUS006' = 'MUS006: Osteoarthritis' 'MUS007' = 'MUS007: Other specified joint disorders' 'MUS008' = 'MUS008: Immune-mediated/reactive arthropathies' 'MUS009' = 'MUS009: Tendon and synovial disorders' 'MUS010' = 'MUS010: Musculoskeletal pain, not low back pain' 'MUS011' = 'MUS011: Spondylopathies/spondyloarthropathy (including infective)' 'MUS012' = 'MUS012: Biomechanical lesions' 'MUS013' = 'MUS013: Osteoporosis' 'MUS014' = 'MUS014: Pathological fracture, initial encounter' 'MUS015' = 'MUS015: Pathological fracture, subsequent encounter' 'MUS016' = 'MUS016: Stress fracture, initial encounter' 'MUS017' = 'MUS017: Stress fracture, subsequent encounter' 'MUS018' = 'MUS018: Atypical fracture, initial encounter' 'MUS019' = 'MUS019: Atypical fracture, subsequent encounter' 'MUS020' = 'MUS020: Pathological, stress and atypical fractures, sequela' 'MUS021' = 'MUS021: Acquired foot deformities' 'MUS022' = 'MUS022: Scoliosis and other postural dorsopathic deformities' 'MUS023' = 'MUS023: Acquired deformities (excluding foot)' 'MUS024' = 'MUS024: Systemic lupus erythematosus and connective tissue disorders' 'MUS025' = 'MUS025: Other specified connective tissue disease' 'MUS026' = 'MUS026: Muscle disorders' 'MUS027' = 'MUS027: Musculoskeletal abscess' 'MUS028' = 'MUS028: Other specified bone disease and musculoskeletal deformities' 'MUS029' = 'MUS029: Disorders of jaw' 'MUS030' = 'MUS030: Aseptic necrosis and osteonecrosis' 'MUS031' = 'MUS031: Traumatic arthropathy' 'MUS032' = 'MUS032: Neurogenic/neuropathic arthropathy' 'MUS033' = 'MUS033: Gout' 'MUS034' = 'MUS034: Crystal arthropathies (excluding gout)' 'MUS035' = 'MUS035: Osteomalacia' 'MUS036' = 'MUS036: Autoinflammatory syndromes' 'MUS037' = 'MUS037: Postprocedural or postoperative musculoskeletal system complication' 'MUS038' = 'MUS038: Low back pain' 'NEO001' = 'NEO001: Head and neck cancers - eye' 'NEO002' = 'NEO002: Head and neck cancers - lip and oral cavity' 'NEO003' = 'NEO003: Head and neck cancers - throat' 'NEO004' = 'NEO004: Head and neck cancers - salivary gland' 'NEO005' = 'NEO005: Head and neck cancers - nasopharyngeal' 'NEO006' = 'NEO006: Head and neck cancers - hypopharyngeal' 'NEO007' = 'NEO007: Head and neck cancers - pharyngeal' 'NEO008' = 'NEO008: Head and neck cancers - laryngeal' 'NEO009' = 'NEO009: Head and neck cancers - tonsils' 'NEO010' = 'NEO010: Head and neck cancers - all other types' 'NEO011' = 'NEO011: Cardiac cancers' 'NEO012' = 'NEO012: Gastrointestinal cancers - esophagus' 'NEO013' = 'NEO013: Gastrointestinal cancers - stomach' 'NEO014' = 'NEO014: Gastrointestinal cancers - small intestine' 'NEO015' = 'NEO015: Gastrointestinal cancers - colorectal' 'NEO016' = 'NEO016: Gastrointestinal cancers - anus' 'NEO017' = 'NEO017: Gastrointestinal cancers - liver' 'NEO018' = 'NEO018: Gastrointestinal cancers - bile duct' 'NEO019' = 'NEO019: Gastrointestinal cancers - gallbladder' 'NEO020' = 'NEO020: Gastrointestinal cancers - peritoneum' 'NEO021' = 'NEO021: Gastrointestinal cancers - all other types' 'NEO022' = 'NEO022: Respiratory cancers' 'NEO023' = 'NEO023: Bone cancer' 'NEO024' = 'NEO024: Sarcoma' 'NEO025' = 'NEO025: Skin cancers - melanoma' 'NEO026' = 'NEO026: Skin cancers - basal cell carcinoma' 'NEO027' = 'NEO027: Skin cancers - squamous cell carcinoma' 'NEO028' = 'NEO028: Skin cancers - all other types' 'NEO029' = 'NEO029: Breast cancer - ductal carcinoma in situ (DCIS)' 'NEO030' = 'NEO030: Breast cancer - all other types' 'NEO031' = 'NEO031: Female reproductive system cancers - uterus' 'NEO032' = 'NEO032: Female reproductive system cancers - cervix' 'NEO033' = 'NEO033: Female reproductive system cancers - ovary' 'NEO034' = 'NEO034: Female reproductive system cancers - fallopian tube' 'NEO035' = 'NEO035: Female reproductive system cancers - endometrium' 'NEO036' = 'NEO036: Female reproductive system cancers - vulva' 'NEO037' = 'NEO037: Female reproductive system cancers - vagina' 'NEO038' = 'NEO038: Female reproductive system cancers - all other types' 'NEO039' = 'NEO039: Male reproductive system cancers - prostate' 'NEO040' = 'NEO040: Male reproductive system cancers - testis' 'NEO041' = 'NEO041: Male reproductive system cancers - penis' 'NEO042' = 'NEO042: Male reproductive system cancers - all other types' 'NEO043' = 'NEO043: Urinary system cancers - bladder' 'NEO044' = 'NEO044: Urinary system cancers - ureter and renal pelvis' 'NEO045' = 'NEO045: Urinary system cancers - kidney' 'NEO046' = 'NEO046: Urinary system cancers - urethra' 'NEO047' = 'NEO047: Urinary system cancers - all other types' 'NEO048' = 'NEO048: Nervous system cancers - brain' 'NEO049' = 'NEO049: Nervous system cancers - all other types' 'NEO050' = 'NEO050: Endocrine system cancers - thyroid' 'NEO051' = 'NEO051: Endocrine system cancers - pancreas' 'NEO052' = 'NEO052: Endocrine system cancers - thymus' 'NEO053' = 'NEO053: Endocrine system cancers - adrenocortical' 'NEO054' = 'NEO054: Endocrine system cancers - parathyroid' 'NEO055' = 'NEO055: Endocrine system cancers - pituitary gland' 'NEO056' = 'NEO056: Endocrine system cancers - all other types' 'NEO057' = 'NEO057: Hodgkin lymphoma' 'NEO058' = 'NEO058: Non-Hodgkin lymphoma' 'NEO059' = 'NEO059: Leukemia - acute lymphoblastic leukemia (ALL)' 'NEO060' = 'NEO060: Leukemia - acute myeloid leukemia (AML)' 'NEO061' = 'NEO061: Leukemia - chronic lymphocytic leukemia (CLL)' 'NEO062' = 'NEO062: Leukemia - chronic myeloid leukemia (CML)' 'NEO063' = 'NEO063: Leukemia - hairy cell' 'NEO064' = 'NEO064: Leukemia - all other types' 'NEO065' = 'NEO065: Multiple myeloma' 'NEO066' = 'NEO066: Malignant neuroendocrine tumors' 'NEO067' = 'NEO067: Mesothelioma' 'NEO068' = 'NEO068: Myelodysplastic syndrome (MDS)' 'NEO069' = 'NEO069: Cancer of other sites' 'NEO070' = 'NEO070: Secondary malignancies' 'NEO071' = 'NEO071: Malignant neoplasm, unspecified' 'NEO072' = 'NEO072: Neoplasms of unspecified nature or uncertain behavior' 'NEO073' = 'NEO073: Benign neoplasms' 'NEO074' = 'NEO074: Conditions due to neoplasm or the treatment of neoplasm' 'NVS001' = 'NVS001: Meningitis' 'NVS002' = 'NVS002: Encephalitis' 'NVS003' = 'NVS003: Other specified CNS infection and poliomyelitis' 'NVS004' = 'NVS004: Parkinson`s disease' 'NVS005' = 'NVS005: Multiple sclerosis' 'NVS006' = 'NVS006: Other nervous system disorders (often hereditary or degenerative)' 'NVS007' = 'NVS007: Cerebral palsy' 'NVS008' = 'NVS008: Paralysis (other than cerebral palsy)' 'NVS009' = 'NVS009: Epilepsy; convulsions' 'NVS010' = 'NVS010: Headache; including migraine' 'NVS011' = 'NVS011: Neurocognitive disorders' 'NVS012' = 'NVS012: Transient cerebral ischemia' 'NVS013' = 'NVS013: Coma; stupor; and brain damage' 'NVS014' = 'NVS014: CNS abscess' 'NVS015' = 'NVS015: Polyneuropathies' 'NVS016' = 'NVS016: Sleep wake disorders' 'NVS017' = 'NVS017: Nerve and nerve root disorders' 'NVS018' = 'NVS018: Myopathies' 'NVS019' = 'NVS019: Nervous system pain and pain syndromes' 'NVS020' = 'NVS020: Other nervous system disorders (neither hereditary nor degenerative)' 'NVS021' = 'NVS021: Postprocedural or postoperative nervous system complication' 'NVS022' = 'NVS022: Sequela of specified nervous system conditions' 'NoDX1 ' = 'NoDX1 : Only used for the default CCSR when the principal or first-listed diagnosis is missing' 'PNL001' = 'PNL001: Liveborn' 'PNL002' = 'PNL002: Short gestation; low birth weight; and fetal growth retardation' 'PNL003' = 'PNL003: Neonatal acidemia and hypoxia' 'PNL004' = 'PNL004: Neonatal cerebral disorders' 'PNL005' = 'PNL005: Respiratory distress syndrome' 'PNL006' = 'PNL006: Respiratory perinatal condition' 'PNL007' = 'PNL007: Hemolytic jaundice and perinatal jaundice' 'PNL008' = 'PNL008: Birth trauma' 'PNL009' = 'PNL009: Perinatal infections' 'PNL010' = 'PNL010: Newborn affected by maternal conditions or complications of labor/delivery' 'PNL011' = 'PNL011: Hemorrhagic and hematologic disorders of newborn' 'PNL012' = 'PNL012: Neonatal digestive and feeding disorders' 'PNL013' = 'PNL013: Other specified and unspecified perinatal conditions' 'PNL014' = 'PNL014: Neonatal abstinence syndrome' 'PNL015' = 'PNL015: Fetal alcohol syndrome' 'PRG001' = 'PRG001: Antenatal screening' 'PRG002' = 'PRG002: Gestational weeks' 'PRG003' = 'PRG003: Spontaneous abortion and complications of spontaneous abortion' 'PRG004' = 'PRG004: Induced abortion and complications of termination of pregnancy' 'PRG005' = 'PRG005: Ectopic pregnancy and complications of ectopic pregnancy' 'PRG006' = 'PRG006: Molar pregnancy and other abnormal products of conception' 'PRG007' = 'PRG007: Complications following ectopic and/or molar pregnancy' 'PRG008' = 'PRG008: Supervision of high-risk pregnancy' 'PRG009' = 'PRG009: Early, first or unspecified trimester hemorrhage' 'PRG010' = 'PRG010: Hemorrhage after first trimester' 'PRG011' = 'PRG011: Early or threatened labor' 'PRG012' = 'PRG012: Multiple gestation' 'PRG013' = 'PRG013: Maternal care related to fetal conditions' 'PRG014' = 'PRG014: Polyhydramnios and other problems of amniotic cavity' 'PRG015' = 'PRG015: Obstetric history affecting care in pregnancy' 'PRG016' = 'PRG016: Previous C-section' 'PRG017' = 'PRG017: Maternal care for abnormality of pelvic organs' 'PRG018' = 'PRG018: Maternal care related to disorders of the placenta and placental implantation' 'PRG019' = 'PRG019: Diabetes or abnormal glucose tolerance complicating pregnancy; childbirth; or the puerperium' 'PRG020' = 'PRG020: Hypertension and hypertensive-related conditions complicating pregnancy; childbirth; and the puerperium' 'PRG021' = 'PRG021: Maternal intrauterine infection' 'PRG022' = 'PRG022: Prolonged pregnancy' 'PRG023' = 'PRG023: Complications specified during childbirth' 'PRG024' = 'PRG024: Malposition, disproportion or other labor complications' 'PRG025' = 'PRG025: Anesthesia complications during pregnancy' 'PRG026' = 'PRG026: OB-related trauma to perineum and vulva' 'PRG027' = 'PRG027: Complications specified during the puerperium' 'PRG028' = 'PRG028: Other specified complications in pregnancy' 'PRG029' = 'PRG029: Uncomplicated pregnancy, delivery or puerperium' 'PRG030' = 'PRG030: Maternal outcome of delivery' 'RSP001' = 'RSP001: Sinusitis' 'RSP002' = 'RSP002: Pneumonia (except that caused by tuberculosis)' 'RSP003' = 'RSP003: Influenza' 'RSP004' = 'RSP004: Acute and chronic tonsillitis' 'RSP005' = 'RSP005: Acute bronchitis' 'RSP006' = 'RSP006: Other specified upper respiratory infections' 'RSP007' = 'RSP007: Other specified and unspecified upper respiratory disease' 'RSP008' = 'RSP008: Chronic obstructive pulmonary disease and bronchiectasis' 'RSP009' = 'RSP009: Asthma' 'RSP010' = 'RSP010: Aspiration pneumonitis' 'RSP011' = 'RSP011: Pleurisy, pleural effusion and pulmonary collapse' 'RSP012' = 'RSP012: Respiratory failure; insufficiency; arrest' 'RSP013' = 'RSP013: Lung disease due to external agents' 'RSP014' = 'RSP014: Pneumothorax' 'RSP015' = 'RSP015: Mediastinal disorders' 'RSP016' = 'RSP016: Other specified and unspecified lower respiratory disease' 'RSP017' = 'RSP017: Postprocedural or postoperative respiratory system complication' 'SKN001' = 'SKN001: Skin and subcutaneous tissue infections' 'SKN002' = 'SKN002: Other specified inflammatory condition of skin' 'SKN003' = 'SKN003: Pressure ulcer of skin' 'SKN004' = 'SKN004: Non-pressure ulcer of skin' 'SKN005' = 'SKN005: Contact dermatitis' 'SKN006' = 'SKN006: Postprocedural or postoperative skin complication' 'SKN007' = 'SKN007: Other specified and unspecified skin disorders' 'SYM001' = 'SYM001: Syncope' 'SYM002' = 'SYM002: Fever' 'SYM003' = 'SYM003: Shock' 'SYM004' = 'SYM004: Nausea and vomiting' 'SYM005' = 'SYM005: Dysphagia' 'SYM006' = 'SYM006: Abdominal pain and other digestive/abdomen signs and symptoms' 'SYM007' = 'SYM007: Malaise and fatigue' 'SYM008' = 'SYM008: Symptoms of mental and substance use conditions' 'SYM009' = 'SYM009: Abnormal findings related to substance use' 'SYM010' = 'SYM010: Nervous system signs and symptoms' 'SYM011' = 'SYM011: Genitourinary signs and symptoms' 'SYM012' = 'SYM012: Circulatory signs and symptoms' 'SYM013' = 'SYM013: Respiratory signs and symptoms' 'SYM014' = 'SYM014: Skin/Subcutaneous signs and symptoms' 'SYM015' = 'SYM015: General sensation/perception signs and symptoms' 'SYM016' = 'SYM016: Other general signs and symptoms' 'SYM017' = 'SYM017: Abnormal findings without diagnosis' 'XXX000' = 'XXX000: Code is unacceptable as a principal diagnosis PDX (only used for the inpatient default CCSR)' 'XXX111' = 'XXX111: Code is unacceptable as a first-listed diagnosis DX1 (only used for the outpatient default CCSR)' ; Value $DXCCSR_DEFAULT_DX1f ' ' = 'BLANK' 'BLD001-BLD999' = 'BLDnnn: Diseases of the Blood and Blood Forming Organs and Certain Disorders Involving the Immune Mechanism' 'CIR001-CIR999' = 'CIRnnn: Diseases of the Circulatory System' 'DIG001-DIG999' = 'DIGnnn: Diseases of the Digestive System' 'EAR001-EAR999' = 'EARnnn: Diseases of the Ear and Mastoid Process' 'END001-END999' = 'ENDnnn: Endocrine, Nutritional and Metabolic Diseases' 'EXT001-EXT999' = 'EXTnnn: External Causes of Morbidity' 'EYE001-EYE999' = 'EYEnnn: Diseases of the Eye and Adnexa' 'FAC001-FAC999' = 'FACnnn: Factors Influencing Health Status and Contact with Health Services' 'GEN001-GEN999' = 'GENnnn: Diseases of the Genitourinary System' 'INF001-INF999' = 'INFnnn: Certain Infectious and Parasitic Diseases' 'INJ001-INJ999' = 'INJnnn: Injury, Poisoning and Certain Other Consequences of External Causes' 'InvlDX ' = 'InvlDX: Invalid principal/first-listed diagnosis' 'MAL001-MAL999' = 'MALnnn: Congenital Malformations, Deformations and Chromosomal Abnormalities' 'MBD001-MBD999' = 'MBDnnn: Mental, Behavioral and Neurodevelopmental Disorders' 'MUS001-MUS999' = 'MUSnnn: Diseases of the Musculoskeletal System and Connective Tissue' 'NEO001-NEO999' = 'NEOnnn: Neoplasms' 'NVS001-NVS999' = 'NVSnnn: Diseases of the Nervous System' 'NoDX1 ' = 'NoDX1: Missing principal/first-listed diagnosis' 'PNL001-PNL999' = 'PNLnnn: Certain Conditions Originating in the Perinatal Period' 'PRG001-PRG999' = 'PRGnnn: Pregnancy, Childbirth and the Puerperium' 'RSP001-RSP999' = 'RSPnnn: Diseases of the Respiratory System' 'SKN001-SKN999' = 'SKNnnn: Diseases of the Skin and Subcutaneous Tissue' 'SYM001-SYM999' = 'SYMnnn: Symptoms, Signs and Abnormal Clinical and Laboratory Findings, Not Elsewhere Classified' 'XXX000 ' = 'XXX000: Unacceptable principal diagnosis' 'XXX111 ' = 'XXX111: Unacceptable first-listed diagnosis' ; Value FPClass . = ' .: Missing' 0 = ' 0: Procedure class not assigned' 1 = ' 1: Minor Diagnostic - Non-operating room diagnostic procedures' 2 = ' 2: Minor Therapeutic - Non-operating room therapeutic procedures' 3 = ' 3: Major Diagnostic - Operating room diagnostic procedures' 4 = ' 4: Major Therapeutic - Operating room therapeutic procedures' .A = '.A: Invalid' .C = '.C: Inconsistent' ; Value PRCCSRF . = '.: Missing' 0 = '0: The CCSR was not triggered by any ICD-10-PCS procedure code' 1 = '1: The CCSR was triggered by only the principal (or first-listed) procedure' 2 = '2: The CCSR was triggered by both the principal (or first-listed) procedure and secondary procedure codes' 3 = '3: The CCSR was triggered by only secondary procedure code(s) on the input record' ; Value $PRCCSR_CAT 'ADM001' = 'ADM001: Transfusion of blood and blood products' 'ADM002' = 'ADM002: Transfusion of plasma' 'ADM003' = 'ADM003: Administration of albumin and globulin' 'ADM004' = 'ADM004: Transfusion of clotting factors' 'ADM005' = 'ADM005: Administration of thrombolytics and platelet inhibitors' 'ADM006' = 'ADM006: Infusion of vasopressor' 'ADM007' = 'ADM007: Intravenous induction of labor' 'ADM008' = 'ADM008: Cervical ripening' 'ADM009' = 'ADM009: Rh immunoglobulin and other serum infusion' 'ADM010' = 'ADM010: Vaccinations' 'ADM011' = 'ADM011: Administration and transfusion of bone marrow, stem cells, pancreatic islet cells, and t-cells' 'ADM012' = 'ADM012: Chemotherapy' 'ADM013' = 'ADM013: Peritoneal dialysis' 'ADM014' = 'ADM014: Regional anesthesia' 'ADM015' = 'ADM015: Administration of antibiotics' 'ADM016' = 'ADM016: Administration of anti-inflammatory agents' 'ADM017' = 'ADM017: Administration of nutritional and electrolytic substances' 'ADM018' = 'ADM018: Irrigation (diagnostic and therapeutic)' 'ADM019' = 'ADM019: Potential COVID-19 therapies' 'ADM020' = 'ADM020: Administration of diagnostic substances, NEC' 'ADM021' = 'ADM021: Administration of therapeutic substances, NEC' 'ADM022' = 'ADM022: COVID-19 vaccinations' 'CAR001' = 'CAR001: Heart biopsy' 'CAR002' = 'CAR002: Heart conduction mechanism procedures' 'CAR003' = 'CAR003: Coronary artery bypass grafts (CABG)' 'CAR004' = 'CAR004: Percutaneous coronary interventions (PCI)' 'CAR005' = 'CAR005: Other coronary artery procedures (excluding CABG and PCI)' 'CAR006' = 'CAR006: Carotid endarterectomy and stenting' 'CAR007' = 'CAR007: Embolectomy, endarterectomy, and related vessel procedures (non-endovascular; excluding carotid)' 'CAR008' = 'CAR008: Angioplasty and related vessel procedures (endovascular; excluding carotid)' 'CAR009' = 'CAR009: Left atrial appendage procedures' 'CAR010' = 'CAR010: Ligation and embolization of vessels' 'CAR011' = 'CAR011: Aneurysm repair procedures' 'CAR012' = 'CAR012: Vessel repair and replacement' 'CAR013' = 'CAR013: Heart and great vessel bypass procedures' 'CAR014' = 'CAR014: Peripheral arterial bypass procedures' 'CAR015' = 'CAR015: Peripheral arteriovenous fistula and shunt procedures' 'CAR016' = 'CAR016: Portal and other venous bypass procedures' 'CAR017' = 'CAR017: Pericardial procedures' 'CAR018' = 'CAR018: Heart transplant' 'CAR019' = 'CAR019: Septal repair and other therapeutic heart procedures' 'CAR020' = 'CAR020: Saphenous vein harvest and other therapeutic vessel removal' 'CAR021' = 'CAR021: Artery, vein, and great vessel procedures, NEC' 'CAR022' = 'CAR022: Heart valve replacement and other valve procedures (non-endovascular)' 'CAR023' = 'CAR023: Heart valve replacement and other valve procedures (endovascular)' 'CAR024' = 'CAR024: Venous and arterial catheter placement' 'CAR025' = 'CAR025: Placement of tunneled or implantable portion of a vascular access device' 'CAR026' = 'CAR026: Pacemaker and defibrillator procedures' 'CAR027' = 'CAR027: Heart assist device procedures' 'CAR028' = 'CAR028: Inferior vena cava (IVC) filter procedures' 'CAR029' = 'CAR029: Cardiovascular device procedures, NEC' 'CHP001' = 'CHP001: Chiropractic manipulation' 'CNS001' = 'CNS001: Minimally invasive CNS biopsy' 'CNS002' = 'CNS002: Lumbar puncture' 'CNS003' = 'CNS003: Spinal canal and spinal cord drainage (excluding lumbar puncture)' 'CNS004' = 'CNS004: Intracranial epidural and subdural space drainage' 'CNS005' = 'CNS005: Ventriculostomy [percutaneous approach]' 'CNS006' = 'CNS006: Other CNS drainage and related procedures' 'CNS007' = 'CNS007: CNS excision procedures' 'CNS008' = 'CNS008: Spinal cord decompression' 'CNS009' = 'CNS009: Decompressive craniectomy' 'CNS010' = 'CNS010: Cerebrospinal fluid shunt procedures' 'CNS011' = 'CNS011: Meninges repair' 'CNS012' = 'CNS012: CNS neurostimulator procedures' 'CNS013' = 'CNS013: Spinal epidural catheter placement' 'CNS014' = 'CNS014: CNS procedures, NEC' 'ENP001' = 'ENP001: Endocrine system biopsy' 'ENP002' = 'ENP002: Thyroidectomy' 'ENP003' = 'ENP003: Parathyroidectomy' 'ENP004' = 'ENP004: Adrenalectomy' 'ENP005' = 'ENP005: Pituitary gland resection' 'ENP006' = 'ENP006: Endocrine procedures, NEC' 'ENT001' = 'ENT001: Laryngoscopy (diagnostic)' 'ENT002' = 'ENT002: ENT diagnostic endoscopy (excluding laryngoscopy)' 'ENT003' = 'ENT003: ENT diagnostic procedures (non-endoscopic)' 'ENT004' = 'ENT004: Diagnostic audiology' 'ENT005' = 'ENT005: Myringotomy' 'ENT006' = 'ENT006: ENT drainage (excluding myringotomy)' 'ENT007' = 'ENT007: Tonsilectomy and adenoidectomy' 'ENT008' = 'ENT008: Nasal and sinus excision' 'ENT009' = 'ENT009: Tongue excision' 'ENT010' = 'ENT010: Salivary gland excision' 'ENT011' = 'ENT011: Laryngectomy' 'ENT012' = 'ENT012: ENT excision (excluding nasal passage, sinuses, tongue, salivary glands, larynx)' 'ENT013' = 'ENT013: ENT repair' 'ENT014' = 'ENT014: Frenectomy' 'ENT015' = 'ENT015: Dental procedures' 'ENT016' = 'ENT016: Face transplant' 'ENT017' = 'ENT017: ENT procedures, NEC' 'ESA001' = 'ESA001: Hemodialysis' 'ESA002' = 'ESA002: Extracorporeal membrane oxygenation' 'ESA003' = 'ESA003: Mechanical ventilation' 'ESA004' = 'ESA004: Non-invasive ventilation' 'ESA005' = 'ESA005: Cardiac chest compression' 'ESA006' = 'ESA006: Cardioversion' 'ESA007' = 'ESA007: Cardiac pacing' 'ESA008' = 'ESA008: Open heart cardiopulmonary bypass' 'ESA009' = 'ESA009: Cardiac assistance with balloon pump' 'ESA010' = 'ESA010: Cardiac assistance with ventricular assist device' 'ESA011' = 'ESA011: Hyperbaric oxygen therapy' 'EST001' = 'EST001: Pheresis therapy' 'EST002' = 'EST002: Phototherapy' 'EST003' = 'EST003: Ultraviolet light therapy' 'EST004' = 'EST004: Hypothermia therapy' 'EST005' = 'EST005: Extracorporeal or systemic therapies, NEC' 'EYP001' = 'EYP001: Eye procedures' 'EYP002' = 'EYP002: Eyelid procedures' 'FRS001' = 'FRS001: Hysterectomy' 'FRS002' = 'FRS002: Oophorectomy' 'FRS003' = 'FRS003: Salpingectomy' 'FRS004' = 'FRS004: Trachelectomy' 'FRS005' = 'FRS005: Fallopian tube ligation and excision' 'FRS006' = 'FRS006: Vulvar laceration repair' 'FRS007' = 'FRS007: Female genital tract repair (excluding vulva)' 'FRS008' = 'FRS008: Cervical dilation' 'FRS009' = 'FRS009: Cervical cerclage' 'FRS010' = 'FRS010: Female upper genital tract excision' 'FRS011' = 'FRS011: Female lower genital tract excision' 'FRS012' = 'FRS012: Intrauterine device (IUD) insertion' 'FRS013' = 'FRS013: Subcutaneous contraceptive implant' 'FRS014' = 'FRS014: Ovary or uterus transplant' 'FRS015' = 'FRS015: Female reproductive system procedures, NEC' 'GIS001' = 'GIS001: Esophagogastroduodenoscopy (EGD) with biopsy' 'GIS002' = 'GIS002: Colonoscopy and proctoscopy with biopsy' 'GIS003' = 'GIS003: GI system biopsy (non-endoscopic)' 'GIS004' = 'GIS004: GI system endoscopy without biopsy (diagnostic)' 'GIS005' = 'GIS005: Exploration of peritoneal cavity' 'GIS006' = 'GIS006: Paracentesis' 'GIS007' = 'GIS007: GI system drainage (excluding paracentesis)' 'GIS008' = 'GIS008: Appendectomy' 'GIS009' = 'GIS009: Colectomy' 'GIS010' = 'GIS010: Gastrectomy' 'GIS011' = 'GIS011: Small bowel resection' 'GIS012' = 'GIS012: Duodenal resection' 'GIS013' = 'GIS013: Proctectomy or anal resection' 'GIS014' = 'GIS014: Esophagectomy' 'GIS015' = 'GIS015: Omentectomy or peritoneum resection' 'GIS016' = 'GIS016: GI system endoscopic therapeutic procedures' 'GIS017' = 'GIS017: Gastrostomy' 'GIS018' = 'GIS018: Ileostomy and colostomy' 'GIS019' = 'GIS019: Gastro-jejunal bypass (including bariatric)' 'GIS020' = 'GIS020: Anorectal repair (3rd and 4th degree obstetrical repairs and other)' 'GIS021' = 'GIS021: GI system repair (excluding anorectal)' 'GIS022' = 'GIS022: GI system lysis of adhesions' 'GIS023' = 'GIS023: GI transplant' 'GIS024' = 'GIS024: Other peritoneal cavity procedures' 'GIS025' = 'GIS025: Other GI system device procedures' 'GIS026' = 'GIS026: Upper GI therapeutic procedures, NEC (open and laparoscopic)' 'GIS027' = 'GIS027: Upper GI therapeutic procedures, NEC (endoscopic)' 'GIS028' = 'GIS028: Lower GI therapeutic procedures, NEC (open and laparoscopic)' 'GIS029' = 'GIS029: Lower GI therapeutic procedures, NEC (excluding open and laparoscopic)' 'GNR001' = 'GNR001: Cosmetic procedures' 'GNR002' = 'GNR002: Abdominal wall repair (including hernia)' 'GNR003' = 'GNR003: Inguinal and femoral hernia repair' 'GNR004' = 'GNR004: Endoscopic control of bleeding' 'GNR005' = 'GNR005: Control of bleeding (non-endoscopic)' 'GNR006' = 'GNR006: Chest wall procedures, NEC' 'GNR007' = 'GNR007: Mediastinal procedures, NEC' 'GNR008' = 'GNR008: Abdominal wall procedures, NEC' 'GNR009' = 'GNR009: Retroperitoneal procedures, NEC' 'GNR010' = 'GNR010: Genitourinary tract procedures, NEC' 'HEP001' = 'HEP001: Liver biopsy' 'HEP002' = 'HEP002: Pancreaticobiliary biopsy' 'HEP003' = 'HEP003: Diagnostic ERCP with or without biopsy' 'HEP004' = 'HEP004: Hepatobiliary resection and ablation' 'HEP005' = 'HEP005: Pancreatectomy' 'HEP006' = 'HEP006: Cholecystectomy' 'HEP007' = 'HEP007: Biliary and pancreatic calculus removal' 'HEP008' = 'HEP008: Common bile duct sphincterotomy and stenting' 'HEP009' = 'HEP009: Pancreatic and proximal biliary dilation and stenting' 'HEP010' = 'HEP010: Hepatobiliary and pancreatic drainage' 'HEP011' = 'HEP011: Liver transplant' 'HEP012' = 'HEP012: Pancreas transplant' 'HEP013' = 'HEP013: Hepatobiliary and pancreatic procedures, NEC' 'IMG001' = 'IMG001: Cardiac and coronary fluoroscopy' 'IMG002' = 'IMG002: Fluoroscopic angiography (excluding coronary)' 'IMG003' = 'IMG003: Fluoroscopic guidance for circulatory system procedures' 'IMG004' = 'IMG004: Fluoroscopy of non-circulatory organs' 'IMG005' = 'IMG005: Magnetic resonance imaging (MRI)' 'IMG006' = 'IMG006: Computerized tomography (CT) with contrast' 'IMG007' = 'IMG007: Computerized tomography (CT) without contrast' 'IMG008' = 'IMG008: Ultrasonography' 'IMG009' = 'IMG009: Plain radiography' 'IMG010' = 'IMG010: Fluorescence imaging' 'LYM001' = 'LYM001: Lymph node biopsy' 'LYM002' = 'LYM002: Lymph node excision (therapeutic)' 'LYM003' = 'LYM003: Lymph node dissection' 'LYM004' = 'LYM004: Thymectomy' 'LYM005' = 'LYM005: Splenectomy' 'LYM006' = 'LYM006: Spleen procedures (excluding splenectomy)' 'LYM007' = 'LYM007: Bone marrow biopsy' 'LYM008' = 'LYM008: Bone marrow aspiration (therapeutic)' 'LYM009' = 'LYM009: Thymus transplant' 'LYM010' = 'LYM010: Spleen transplant' 'LYM011' = 'LYM011: Lymphatic procedures, NEC' 'MAM001' = 'MAM001: Arterial oxygen saturation monitoring' 'MAM002' = 'MAM002: Peripheral arterial pressure monitoring' 'MAM003' = 'MAM003: Pulmonary arterial pressure monitoring' 'MAM004' = 'MAM004: Cardiac stress tests' 'MAM005' = 'MAM005: Measurement during cardiac catheterization' 'MAM006' = 'MAM006: Pacemaker and defibrillator interrogation' 'MAM007' = 'MAM007: Electrocardiogram (ECG)' 'MAM008' = 'MAM008: Cardiac monitoring' 'MAM009' = 'MAM009: Electrophysiologic studies' 'MAM010' = 'MAM010: Other cardiovascular system measurement and monitoring' 'MAM011' = 'MAM011: Electroencephalogram (EEG)' 'MAM012' = 'MAM012: ICP and other CNS monitoring (excluding EEG)' 'MAM013' = 'MAM013: Monitoring of peripheral nerves' 'MAM014' = 'MAM014: Pulmonary function tests' 'MAM015' = 'MAM015: Measurement and monitoring, NEC' 'MHT001' = 'MHT001: Pharmacotherapy for mental health (excluding substance use)' 'MHT002' = 'MHT002: Psychotherapy for mental health (excluding substance use)' 'MHT003' = 'MHT003: Electroconvulsive therapy' 'MHT004' = 'MHT004: Crisis intervention for mental health' 'MHT005' = 'MHT005: Mental health procedures, NEC' 'MRS001' = 'MRS001: Circumcision' 'MRS002' = 'MRS002: Penis procedures (excluding circumcision)' 'MRS003' = 'MRS003: Prostatectomy' 'MRS004' = 'MRS004: Prostate and seminal vesicle procedures (excluding prostatectomy)' 'MRS005' = 'MRS005: Male perineum procedures' 'MRS006' = 'MRS006: Male reproductive system transplant' 'MRS007' = 'MRS007: Male reproductive system procedures, NEC' 'MST001' = 'MST001: Arthrocentesis' 'MST002' = 'MST002: Bone and joint biopsy' 'MST003' = 'MST003: Subcutaneous tissue, fascia, and muscle biopsy' 'MST004' = 'MST004: Incision and drainage of musculoskeletal tissue and joints' 'MST005' = 'MST005: Incision and drainage of subcutaneous tissue and fascia' 'MST006' = 'MST006: Knee arthroplasty' 'MST007' = 'MST007: Hip arthroplasty' 'MST008' = 'MST008: Arthroplasty of other joint (excluding knee and hip)' 'MST009' = 'MST009: Fixation of upper extremity bones' 'MST010' = 'MST010: Femur fixation' 'MST011' = 'MST011: Fixation of leg and foot bones' 'MST012' = 'MST012: Bone fixation (excluding extremities)' 'MST013' = 'MST013: Spine fusion' 'MST014' = 'MST014: Joint fusion (excluding spine)' 'MST015' = 'MST015: Closed reduction of bones and joints' 'MST016' = 'MST016: Vertebral discectomy' 'MST017' = 'MST017: Joint tissue excision (excluding discectomy)' 'MST018' = 'MST018: Bone excision' 'MST019' = 'MST019: Muscle, tendon, bursa, and ligament excision' 'MST020' = 'MST020: Subcutaneous tissue and fascia excision' 'MST021' = 'MST021: Perineal muscle laceration repair (2nd degree obstetrical and other)' 'MST022' = 'MST022: Tendon, muscle, bursa, and ligament repair (excluding perineal)' 'MST023' = 'MST023: Toe and mid foot amputation' 'MST024' = 'MST024: Below knee amputation' 'MST025' = 'MST025: Above knee and other proximal lower extremity amputation' 'MST026' = 'MST026: Finger and other upper extremity amputation' 'MST027' = 'MST027: Hand transplant' 'MST028' = 'MST028: Subcutaneous tissue and fascia procedures, NEC' 'MST029' = 'MST029: Musculoskeletal device procedures, NEC' 'MST030' = 'MST030: Musculoskeletal procedures, NEC' 'NCM001' = 'NCM001: Planar nuclear medicine imaging' 'NCM002' = 'NCM002: Tomographic nuclear medicine imaging' 'NCM003' = 'NCM003: Radionuclide therapy and non-imaging procedures' 'NCM004' = 'NCM004: Positron emission tomographic (PET) imaging' 'OST001' = 'OST001: Osteopathic treatment' 'OTR001' = 'OTR001: Robotic-assisted procedures' 'OTR002' = 'OTR002: Computer-assisted procedures' 'OTR003' = 'OTR003: Fluorescence-guided procedures' 'OTR004' = 'OTR004: Isolation procedures' 'OTR005' = 'OTR005: Therapeutic massage and related procedures' 'PGN001' = 'PGN001: Fetal heart rate monitoring' 'PGN002' = 'PGN002: Spontaneous vaginal delivery' 'PGN003' = 'PGN003: Cesarean section' 'PGN004' = 'PGN004: Assisted vaginal delivery' 'PGN005' = 'PGN005: Episiotomy' 'PGN006' = 'PGN006: Removal of placenta and other retained products of conception' 'PGN007' = 'PGN007: Removal of ectopic pregnancy' 'PGN008' = 'PGN008: Abortion' 'PGN009' = 'PGN009: Pregnancy and fetal procedures, NEC' 'PLC001' = 'PLC001: Immobilization by splint or other external device' 'PLC002' = 'PLC002: Packing and dressing procedures' 'PNS001' = 'PNS001: Lumbosacral nerve decompression' 'PNS002' = 'PNS002: Cervicothoracic nerve decompression' 'PNS003' = 'PNS003: Peripheral nerve decompression (excluding lumbosacral and cervicothoracic)' 'PNS004' = 'PNS004: Nerve repair' 'PNS005' = 'PNS005: Peripheral nerve denervation' 'PNS006' = 'PNS006: Peripheral nerve procedures, NEC' 'RAD001' = 'RAD001: Beam radiation' 'RAD002' = 'RAD002: Brachytherapy' 'RAD003' = 'RAD003: Stereotactic radiosurgery' 'RAD004' = 'RAD004: Radiation therapy, NEC' 'RES001' = 'RES001: Bronchoscopy (diagnostic)' 'RES002' = 'RES002: Lung, pleura, or diaphragm biopsy (non-endoscopic)' 'RES003' = 'RES003: Thoracentesis (diagnostic)' 'RES004' = 'RES004: Bronchoscopy (therapeutic)' 'RES005' = 'RES005: Chest tube placement and therapeutic thoracentesis' 'RES006' = 'RES006: Open and thoracoscopic pleural drainage' 'RES007' = 'RES007: Airway intubation' 'RES008' = 'RES008: Lung, pleura, or diaphragm resection (open and thoracoscopic)' 'RES009' = 'RES009: Bronchoscopic excision and fulguration' 'RES010' = 'RES010: Tracheostomy' 'RES011' = 'RES011: Diaphragmatic hernia repair' 'RES012' = 'RES012: Release of lung and pleura' 'RES013' = 'RES013: Lung transplant' 'RES014' = 'RES014: Respiratory system procedures, NEC' 'RHB001' = 'RHB001: Physical, occupational, and respiratory therapy evaluation' 'RHB002' = 'RHB002: Physical, occupational, and respiratory therapy treatment' 'RHB003' = 'RHB003: Speech therapy evaluation' 'RHB004' = 'RHB004: Speech therapy treatment' 'SKB001' = 'SKB001: Skin biopsy and diagnostic drainage' 'SKB002' = 'SKB002: Incision and drainage of skin' 'SKB003' = 'SKB003: Mastectomy and lumpectomy' 'SKB004' = 'SKB004: Breast reconstruction' 'SKB005' = 'SKB005: Perineal skin repair (1st degree obstetrical and other)' 'SKB006' = 'SKB006: Skin laceration repair (excluding perineum)' 'SKB007' = 'SKB007: Skin graft' 'SKB008' = 'SKB008: Skin excision and debridement' 'SKB009' = 'SKB009: Nail procedures' 'SKB010' = 'SKB010: Skin and breast procedures, NEC' 'SUD001' = 'SUD001: Substance use detoxification' 'SUD002' = 'SUD002: Pharmacotherapy for substance use' 'SUD003' = 'SUD003: Psychotherapy for substance use' 'SUD004' = 'SUD004: Counseling for substance use' 'URN001' = 'URN001: Cystoscopy and ureteroscopy (including biopsy)' 'URN002' = 'URN002: Kidney and other urinary tract biopsy (non-endoscopic)' 'URN003' = 'URN003: Ureter and other urinary tract dilation' 'URN004' = 'URN004: Removal of calculi and other matter from urinary tract' 'URN005' = 'URN005: Nephrostomy and ureterostomy procedures (including stents)' 'URN006' = 'URN006: Bladder catheterization and drainage' 'URN007' = 'URN007: Urinary tract repair' 'URN008' = 'URN008: Nephrectomy and ureterectomy' 'URN009' = 'URN009: Cystectomy (including fulguration) and urethrectomy' 'URN010' = 'URN010: Urinary diversion with anastomosis or ostomy' 'URN011' = 'URN011: Kidney transplant' 'URN012' = 'URN012: Urinary system procedures, NEC' ; Run ;