*options obs=100 ; options nocenter ; /*------------------------------------------------ by Jean Roth Mon Jul 2 15:42:02 EDT 2007 This program reads the 2001 National Health Interview Survey 2001 personsx Data File Report errors to jroth@nber.org This program is distributed under the GNU GPL. See end of this file and http://www.gnu.org/licenses/ for details. ----------------------------------------------- */ * The following line should contain the directory where the SAS file is to be stored ; libname library "./"; * The following line should contain the complete path and name of the raw data file. On a PC, use backslashes in paths as in C:\ ; FILENAME datafile pipe "unzip -p /homes/data/nhis/ftp.cdc.gov/pub/Health_Statistics/NCHS/Datasets/NHIS/2001/personsx.exe "; * The following line should contain the name of the SAS dataset ; %let dataset = nhis2001_personsx ; DATA library.&dataset ; INFILE datafile LRECL = 20000 ; attrib rectype length=3 label="Record Type"; attrib srvy_yr length=4 label="Survey Year"; attrib hhx length=$6 label="Household Serial Number"; attrib fmx length=$2 label="Family Serial Number"; attrib px length=$2 label=""; attrib intv_qrt length=3 label="Interview Quarter"; attrib sex length=3 label="Sex"; attrib age_p length=3 label="Age"; attrib r_age1 length=3 label="Age Recode #1"; attrib r_age2 length=3 label="Age Recode #2"; attrib dob_m length=$2 label="Month of Birth"; attrib dob_y_p length=$4 label="Year of Birth"; attrib origin_i length=3 label="Hispanic Ethnicity"; attrib origimpt length=3 label="Hispanic Origin Imputation Flag"; attrib hispan_i length=3 label="Hispanic subgroup detail"; attrib hispimpt length=3 label="Type of Hispanic Origin Imputation Flag"; attrib rcdt1p_i length=3 label="Race coded to single/multiple race group"; attrib rc_smp_i length=3 label="Summary for single/multiple race groups"; attrib racerp_i length=3 label="OMB groups w/multiple race"; attrib raceimpt length=3 label="Race Imputation Flag"; attrib mracrp_i length=3 label="Race coded to a single race group"; attrib mracbp_i length=3 label="Race coded to a single race group"; attrib racrec_i length=3 label="Race Recode"; attrib hiscod_i length=3 label="Combined race/ethnicity recode"; attrib erimpflg length=3 label="Ethnicity/Race Imputation Flag"; attrib r_maritl length=3 label="Marital status"; attrib cohab1 length=3 label="Cohabitor ever married?"; attrib cohab2 length=3 label="Legal marital status/cohab. respondent"; attrib lg_mstat length=3 label="Legal marital status"; attrib cdcmstat length=3 label="CDC standard for legal marital status"; attrib rrp length=3 label="Relationship to HH reference person"; attrib hh_ref length=$2 label="Person # of HH reference person"; attrib hhreflg length=$1 label="HH Reference Person Flag"; attrib frrp length=3 label="Rel to family ref person"; attrib fm_ref length=$2 label="Person # of family reference person"; attrib fmreflg length=$1 label="Family Reference Person Flag"; attrib fm_resp length=3 label="Person # of family respondent"; attrib fmrpflg length=$1 label="Family Respondent Flag"; attrib sib_deg length=3 label="Degree of sib rel to HH ref person"; attrib mother length=$2 label="Mother's person number"; attrib mom_deg length=3 label="Type of relationship with Mother"; attrib father length=$2 label="Father's person number"; attrib dad_deg length=3 label="Type of relationship with Father"; attrib guard length=$2 label="Person number of guardian"; attrib parents length=3 label="Parent(s) present in the family"; attrib mom_ed length=3 label="Education of Mother"; attrib dad_ed length=3 label="Education of Father"; attrib fm_size length=3 label="Number of persons in family"; attrib fm_type length=3 label="Family Type (on the person-level)"; attrib fm_strcp length=3 label="Family Structure (at the person-level)"; attrib fm_strp length=3 label="Family Structure (on the person-level)"; attrib nowaf length=3 label="Armed Forces - active duty"; attrib astatflg length=3 label="Sample Adult Flag"; attrib cstatflg length=3 label="Sample Child Flag"; attrib immunflg length=3 label="Child Immunization Flag"; attrib region length=3 label="Region"; attrib msasizep length=3 label="Geographic Distribution - MSA size"; attrib wtia length=4 label="Weight - Interim Annual"; attrib wtfa length=4 label="Weight - Final Annual"; attrib stratum length=3 label="Stratum for variance estimation"; attrib psu length=3 label="PSU for variance estimation"; attrib plaplylm length=3 label="Limited in kind/amount play"; attrib plaplyun length=3 label="Is -- able to play AT ALL"; attrib pspedeis length=3 label="Does -- receive Spec Ed or EIS?"; attrib pspedem length=3 label="Receive services due to emotional or beh"; attrib plaadl length=3 label="Does -- need help w/ADL"; attrib labath length=3 label="Need help with bath/shower"; attrib ladress length=3 label="Need help dressing"; attrib laeat length=3 label="Need help eating"; attrib labed length=3 label="Need help in/out of bed or chairs"; attrib latoilt length=3 label="Does -- need help using the toilet?"; attrib lahome length=3 label="Need help getting around in home"; attrib plaiadl length=3 label="Need help with IADL"; attrib plawknow length=3 label="Is -- unable to work due to health prob?"; attrib plawklim length=3 label="Limited in kind/amt of work"; attrib plawalk length=3 label="Difficulty walking w/o equip"; attrib plaremem length=3 label="Limited by dif remembering"; attrib plimany length=3 label="Is -- limited in ANY (other) WAY?"; attrib la1ar length=3 label=""; attrib lahcc1 length=3 label="Vision problem causes limitation"; attrib lhccln1 length=3 label="Duration of vision prob: # of units"; attrib lhcclt1 length=3 label="Duration of vision prob: Time unit"; attrib lhccly1 length=3 label="Duration of vision prob (in years)"; attrib lahcc2 length=3 label="Hearing problem causes limitation"; attrib lhccln2 length=3 label="Duration of hearing prob: # of units"; attrib lhcclt2 length=3 label="Duration of hearing prob: Time unit"; attrib lhccly2 length=3 label="Duration of hearing prob (in years)"; attrib lahcc3 length=3 label="Speech problem causes limitation"; attrib lhccln3 length=3 label="Duration of speech prob: # of units"; attrib lhcclt3 length=3 label="Duration of speech prob: Time unit"; attrib lhccly3 length=3 label="Duration of speech prob (in years)"; attrib lahcc4 length=3 label="Asthma/breathing prob causes limitation"; attrib lhccln4 length=3 label="Duration asthma/breath prob: # of units"; attrib lhcclt4 length=3 label="Duration asthma/breath prob: Time unit"; attrib lhccly4 length=3 label="Duration of asthma/breathing prob (yrs)"; attrib lahcc5 length=3 label="Birth defect causes limitation"; attrib lhccln5 length=3 label="Duration of birth defect: # of units"; attrib lhcclt5 length=3 label="Duration of birth defect: Time unit"; attrib lhccly5 length=3 label="Duration of birth defect (in years)"; attrib lahcc6 length=3 label="Injury causes limitation"; attrib lhccln6 length=3 label="Duration of injury: # of units"; attrib lhcclt6 length=3 label="Duration of injury: Time unit"; attrib lhccly6 length=3 label="Duration of injury (in years)"; attrib lahcc7 length=3 label="Mental retardation causes limitation"; attrib lhccln7 length=3 label="Duration of mental retardation: # units"; attrib lhcclt7 length=3 label="Duration mental retardation: Time unit"; attrib lhccly7 length=3 label="Duration of mental retardation (in yrs)"; attrib lahcc8 length=3 label="Other devel prob causes limitation"; attrib lhccln8 length=3 label="Duration of otr dev prob: # of units"; attrib lhcclt8 length=3 label="Duration of otr dev prob: Time unit"; attrib lhccly8 length=3 label="Duration of otr dev prob (in years)"; attrib lahcc9 length=3 label="Other emot/behav prob causes limitation"; attrib lhccln9 length=3 label="Duration of otr emot/behav prob: # units"; attrib lhcclt9 length=3 label="Duration otr emot/behav prob: Time unit"; attrib lhccly9 length=3 label="Duration of otr emot/behav prob (in yrs)"; attrib lahcc10 length=3 label="Bone/joint/muscl prob causes limitation"; attrib lhccln10 length=3 label="Duration bone/joint/muscl prob: # units"; attrib lhcclt10 length=3 label="Dur bone/joint/muscl prob: Time unit"; attrib lhccly10 length=3 label="Dur of bone/joint/muscl prob (in yrs)"; attrib lahcc11 length=3 label="Epilepsy causes limitation"; attrib lhccln11 length=3 label="Duration of epilepsy: # of units"; attrib lhcclt11 length=3 label="Duration of epilepsy: Time unit"; attrib lhccly11 length=3 label="Duration of epilepsy (in years)"; attrib lahcc12 length=3 label="Learning disability causes limitation"; attrib lhccln12 length=3 label="Duration of learning disab: # of units"; attrib lhcclt12 length=3 label="Duration of learning disab: Time unit"; attrib lhccly12 length=3 label="Duration of learning disab (in years)"; attrib lahcc13 length=3 label="ADD/ADHD causes limitation"; attrib lhccln13 length=3 label="Duration of ADD/ADHD: # of units"; attrib lhcclt13 length=3 label="Duration of ADD/ADHD: Time unit"; attrib lhccly13 length=3 label="Duration of ADD/ADHD (in years)"; attrib lahcc90 length=3 label="Other, N.E.C. prob (1) causes limitation"; attrib lhccln90 length=3 label="Duration otr, N.E.C. prob (1): # of unit"; attrib lhcclt90 length=3 label="Duration otr, N.E.C. prob(1): Time unit"; attrib lhccly90 length=3 label="Duration other, N.E.C. prob(1) (in yrs)"; attrib lahcc91 length=3 label="Other, N.E.C. prob (2) causes limitation"; attrib lhccln91 length=3 label="Duration otr, N.E.C. prob(2): # of units"; attrib lhcclt91 length=3 label="Duration otr, N.E.C. prob (2): Time unit"; attrib lhccly91 length=3 label="Duration other, N.E.C. prob (2) (in yrs)"; attrib lahca1 length=3 label="Vision problem causes limitation"; attrib lhcaln1 length=3 label="Duration of vision prob: # of units"; attrib lhcalt1 length=3 label="Duration of vision prob: Time unit"; attrib lhcaly1 length=3 label="Duration of vision prob (in years)"; attrib lahca2 length=3 label="Hearing problem causes limitation"; attrib lhcaln2 length=3 label="Duration of hearing prob: # of units"; attrib lhcalt2 length=3 label="Duration of hearing prob: Time unit"; attrib lhcaly2 length=3 label="Duration of hearing prob (in years)"; attrib lahca3 length=3 label="Arthritis/rheumatism causes limitation"; attrib lhcaln3 length=3 label="Duration of arthritis prob: # of units"; attrib lhcalt3 length=3 label="Duration of arthritis prob: Time unit"; attrib lhcaly3 length=3 label="Duration of arthritis prob (in years)"; attrib lahca4 length=3 label="Back/neck prob causes limitation"; attrib lhcaln4 length=3 label="Duration of back/neck prob: # of units"; attrib lhcalt4 length=3 label="Duration of back/neck prob: Time unit"; attrib lhcaly4 length=3 label="Duration of back/neck prob (in years)"; attrib lahca5 length=3 label="Fract/bone/joint inj causes limitation"; attrib lhcaln5 length=3 label="Dur fract/bone/joint inj: # of units"; attrib lhcalt5 length=3 label="Duration fract/bone/joint inj: Time unit"; attrib lhcaly5 length=3 label="Duration fract/bone/joint inj (in yrs)"; attrib lahca6 length=3 label="Other injury causes limitation"; attrib lhcaln6 length=3 label="Duration of other injury: # of units"; attrib lhcalt6 length=3 label="Duration of other injury: Time unit"; attrib lhcaly6 length=3 label="Duration of other injury (in years)"; attrib lahca7 length=3 label="Heart prob causes limitation"; attrib lhcaln7 length=3 label="Duration of heart prob: # of units"; attrib lhcalt7 length=3 label="Duration of heart prob: Time unit"; attrib lhcaly7 length=3 label="Duration of heart prob (in years)"; attrib lahca8 length=3 label="Stroke causes limitation"; attrib lhcaln8 length=3 label="Duration of stroke: # of units"; attrib lhcalt8 length=3 label="Duration of stroke: Time unit"; attrib lhcaly8 length=3 label="Duration of stroke (in years)"; attrib lahca9 length=3 label="Hypertension causes limitation"; attrib lhcaln9 length=3 label="Duration of hypertension: # of units"; attrib lhcalt9 length=3 label="Duration of hypertension: Time unit"; attrib lhcaly9 length=3 label="Duration of hypertension (in years)"; attrib lahca10 length=3 label="Diabetes causes limitation"; attrib lhcaln10 length=3 label="Duration of diabetes: # of units"; attrib lhcalt10 length=3 label="Duration of diabetes: Time unit"; attrib lhcaly10 length=3 label="Duration of diabetes (in years)"; attrib lahca11 length=3 label="Lung/breath prob causes limitation"; attrib lhcaln11 length=3 label="Duration of lung prob: # of units"; attrib lhcalt11 length=3 label="Duration of lung prob: Time unit"; attrib lhcaly11 length=3 label="Duration of lung prob (in years)"; attrib lahca12 length=3 label="Cancer causes limitation"; attrib lhcaln12 length=3 label="Duration of cancer: # of units"; attrib lhcalt12 length=3 label="Duration of cancer: Time unit"; attrib lhcaly12 length=3 label="Duration of cancer (in years)"; attrib lahca13 length=3 label="Birth defect causes limitation"; attrib lhcaln13 length=3 label="Duration of birth defect: # of units"; attrib lhcalt13 length=3 label="Duration of birth defect: Time unit"; attrib lhcaly13 length=3 label="Duration of birth defect (in years)"; attrib lahca14 length=3 label="Mental retardation causes limitation"; attrib lhcaln14 length=3 label="Duration mental retardation: # of units"; attrib lhcalt14 length=3 label="Duration mental retardation: Time unit"; attrib lhcaly14 length=3 label="Duration of mental retardation (in yrs)"; attrib lahca15 length=3 label="Other devel prob causes limitation"; attrib lhcaln15 length=3 label="Duration of otr dev prob: # of units"; attrib lhcalt15 length=3 label="Duration of otr dev prob: Time unit"; attrib lhcaly15 length=3 label="Duration of otr dev prob (in years)"; attrib lahca16 length=3 label="Senility causes limitation"; attrib lhcaln16 length=3 label="Duration of senility: # of units"; attrib lhcalt16 length=3 label="Duration of senility: Time unit"; attrib lhcaly16 length=3 label="Duration of senility (in years)"; attrib lahca17 length=3 label="Dep/anx/emot prob causes limitation"; attrib lhcaln17 length=3 label="Duration dep/anx/emot prob: # of units"; attrib lhcalt17 length=3 label="Duration of dep/anx/emot prob: Time unit"; attrib lhcaly17 length=3 label="Duration of dep/anx/emot prob (in years)"; attrib lahca18 length=3 label="Weight prob causes limitation"; attrib lhcaln18 length=3 label="Duration of weight prob: # of units"; attrib lhcalt18 length=3 label="Duration of weight prob: Time unit"; attrib lhcaly18 length=3 label="Duration of weight prob (in years)"; attrib lahca19 length=3 label="Missing limb/finger causes limitation"; attrib lhcaln19 length=3 label="Duration missing limb/finger: # of units"; attrib lhcalt19 length=3 label="Duration missing limb/finger: Time unit"; attrib lhcaly19 length=3 label="Duration of missing limb/finger (in yrs)"; attrib lahca20 length=3 label="Musculoskel prob causes limitation"; attrib lhcaln20 length=3 label="Duration of musculoskel prob: # of units"; attrib lhcalt20 length=3 label="Duration of musculoskel prob: Time unit"; attrib lhcaly20 length=3 label="Duration of musculoskel prob (in years)"; attrib lahca21 length=3 label="Circulatory prob causes limitation"; attrib lhcaln21 length=3 label="Duration of circulatory prob: # of units"; attrib lhcalt21 length=3 label="Duration of circulatory prob: Time unit"; attrib lhcaly21 length=3 label="Duration of circulatory prob (in years)"; attrib lahca22 length=3 label="Endocrine prob causes limitation"; attrib lhcaln22 length=3 label="Duration of endocrine prob: # of units"; attrib lhcalt22 length=3 label="Duration of endocrine prob: Time unit"; attrib lhcaly22 length=3 label="Duration of endocrine prob (in years)"; attrib lahca23 length=3 label="Nervous sys cond causes limitation"; attrib lhcaln23 length=3 label="Duration of nervous sys prob: # of units"; attrib lhcalt23 length=3 label="Duration of nervous sys prob: Time unit"; attrib lhcaly23 length=3 label="Duration of nervous sys prob (in years)"; attrib lahca24 length=3 label="Digestive prob causes limitation"; attrib lhcaln24 length=3 label="Duration of digestive prob: # of units"; attrib lhcalt24 length=3 label="Duration of digestive prob: Time unit"; attrib lhcaly24 length=3 label="Duration of digestive prob (in years)"; attrib lahca25 length=3 label="Genitourinary prob causes limitation"; attrib lhcaln25 length=3 label="Duration genitourinary prob: # of units"; attrib lhcalt25 length=3 label="Duration genitourinary prob: Time unit"; attrib lhcaly25 length=3 label="Duration of genitourinary prob (in yrs)"; attrib lahca26 length=3 label="Skin prob causes limitation"; attrib lhcaln26 length=3 label="Duration of skin prob: # of units"; attrib lhcalt26 length=3 label="Duration of skin prob: Time unit"; attrib lhcaly26 length=3 label="Duration of skin prob (in years)"; attrib lahca27 length=3 label="Blood prob causes limitation"; attrib lhcaln27 length=3 label="Duration of blood prob: # of units"; attrib lhcalt27 length=3 label="Duration of blood prob: Time unit"; attrib lhcaly27 length=3 label="Duration of blood prob (in years)"; attrib lahca28 length=3 label="Benign tumor causes limitation"; attrib lhcaln28 length=3 label="Duration of benign tumor: # of units"; attrib lhcalt28 length=3 label="Duration of benign tumor: Time unit"; attrib lhcaly28 length=3 label="Duration of benign tumor (in years)"; attrib lahca29 length=3 label="Alcohol or drug prob causes limitation"; attrib lhcaln29 length=3 label="Duration alcohol/drug prob: # of units"; attrib lhcalt29 length=3 label="Duration of alcohol/drug prob: Time unit"; attrib lhcaly29 length=3 label="Duration of alcohol/drug prob (in yrs)"; attrib lahca30 length=3 label="Other mental prob causes limitation"; attrib lhcaln30 length=3 label="Duration of otr mental prob: # of units"; attrib lhcalt30 length=3 label="Duration of otr mental prob: Time unit"; attrib lhcaly30 length=3 label="Duration of otr mental prob (in years)"; attrib lahca31 length=3 label="Surgical after-effects causes limitation"; attrib lhcaln31 length=3 label="Duration surgical after-effects: # units"; attrib lhcalt31 length=3 label="Dur of surgical after-effects: Time unit"; attrib lhcaly31 length=3 label="Duration surgical after-effects (in yrs)"; attrib lahca32 length=3 label="'Old age' causes limitation"; attrib lhcaln32 length=3 label="Duration of 'old age': # of units"; attrib lhcalt32 length=3 label="Duration of 'old age': Time unit"; attrib lhcaly32 length=3 label="Duration of 'old age' (in years)"; attrib lahca33 length=3 label="Fatigue prob causes limitation"; attrib lhcaln33 length=3 label="Duration of fatigue: # of units"; attrib lhcalt33 length=3 label="Duration of fatigue: Time unit"; attrib lhcaly33 length=3 label="Duration of fatigue (in years)"; attrib lahca34 length=3 label="Pregnancy-related prob causes limitation"; attrib lhcaln34 length=3 label="Dur pregnancy prob: # of units"; attrib lhcalt34 length=3 label="Dur pregnancy prob: Time unit"; attrib lhcaly34 length=3 label="Dur pregnancy prob (in years)"; attrib lahca90 length=3 label="Other, N.E.C. prob (1) causes limitation"; attrib lhcaln90 length=3 label="Duration otr, N.E.C. prob (1): # units"; attrib lhcalt90 length=3 label="Duration otr, N.E.C. prob (1): Time unit"; attrib lhcaly90 length=3 label="Duration other N.E.C. prob (1) (in yrs)"; attrib lahca91 length=3 label="Other, N.E.C. prob (2) causes limitation"; attrib lhcaln91 length=3 label="Duration otr, N.E.C. prob (2): # units"; attrib lhcalt91 length=3 label="Duration otr, N.E.C. prob (2): Time unit"; attrib lhcaly91 length=3 label="Duration other, N.E.C. prob (2) (in yrs)"; attrib lacntr1 length=3 label="Duration of visual prob recode 2"; attrib lacntr2 length=3 label="Duration of hearing prob recode 2"; attrib lacntr3 length=3 label="Duration of speech prob recode 2"; attrib lacntr4 length=3 label="Duration asthma/breathing prob recode 2"; attrib lacntr5 length=3 label="Duration of birth defect recode 2"; attrib lacntr6 length=3 label="Duration of injury recode 2"; attrib lacntr7 length=3 label="Duration of mental retardation recode 2"; attrib lacntr8 length=3 label="Duration of otr dev prob recode 2"; attrib lacntr9 length=3 label="Duration of otr emot/behav prob recode 2"; attrib lacntr10 length=3 label="Duration bone/joint/muscl prob recode 2"; attrib lacntr11 length=3 label="Duration of epilepsy recode 2"; attrib lacntr12 length=3 label="Duration of learning disab recode 2"; attrib lacntr13 length=3 label="Duration of ADD/ADHD recode 2"; attrib lacntr90 length=3 label="Duration of otr, N.E.C. prob(1) recode 2"; attrib lacntr91 length=3 label="Duration of otr, N.E.C. prob(2) recode 2"; attrib laantr1 length=3 label="Duration of vision prob recode 2"; attrib laantr2 length=3 label="Duration of hearing prob recode 2"; attrib laantr3 length=3 label="Duration of arthritis prob recode 2"; attrib laantr4 length=3 label="Duration of back/neck prob recode 2"; attrib laantr5 length=3 label="Dur fract/bone/joint inj recode 2"; attrib laantr6 length=3 label="Duration of other injury recode 2"; attrib laantr7 length=3 label="Duration of heart prob recode 2"; attrib laantr8 length=3 label="Duration of stroke recode 2"; attrib laantr9 length=3 label="Duration of hypertension recode 2"; attrib laantr10 length=3 label="Duration of diabetes recode 2"; attrib laantr11 length=3 label="Duration of lung prob recode 2"; attrib laantr12 length=3 label="Duration of cancer recode 2"; attrib laantr13 length=3 label="Duration of birth defect recode 2"; attrib laantr14 length=3 label="Duration of mental retardation recode 2"; attrib laantr15 length=3 label="Duration of otr dev prob recode 2"; attrib laantr16 length=3 label="Duration of senility recode 2"; attrib laantr17 length=3 label="Duration of dep/anx/emot prob recode 2"; attrib laantr18 length=3 label="Duration of weight prob recode 2"; attrib laantr19 length=3 label="Duration of missing limb/finger recode 2"; attrib laantr20 length=3 label="Duration of musculoskel prob recode 2"; attrib laantr21 length=3 label="Duration of circulatory prob recode 2"; attrib laantr22 length=3 label="Duration of endocrine prob recode 2"; attrib laantr23 length=3 label="Duration of nervous sys prob recode 2"; attrib laantr24 length=3 label="Duration of digestive prob recode 2"; attrib laantr25 length=3 label="Duration of genitourinary prob recode 2"; attrib laantr26 length=3 label="Duration of skin prob recode 2"; attrib laantr27 length=3 label="Duration of blood prob recode 2"; attrib laantr28 length=3 label="Duration of benign tumor recode 2"; attrib laantr29 length=3 label="Duration of alcohol/drug prob recode 2"; attrib laantr30 length=3 label="Duration of otr mental prob recode 2"; attrib laantr31 length=3 label="Duration surgical after-effects recode 2"; attrib laantr32 length=3 label="Duration of 'old age' recode 2"; attrib laantr33 length=3 label="Duration of fatigue recode 2"; attrib laantr34 length=3 label="Dur pregnancy prob recode 2"; attrib laantr90 length=3 label="Duration of otr, N.E.C. prob(1) recode 2"; attrib laantr91 length=3 label="Duration of otr, N.E.C. prob(2) recode 2"; attrib lccndr1 length=3 label="Vision problem condition status"; attrib lccndr2 length=3 label="Hearing problem condition status"; attrib lccndr3 length=3 label="Speech problem condition status"; attrib lccndr4 length=3 label="Asthma/breath prob condition status"; attrib lccndr5 length=3 label="Birth defect condition status"; attrib lccndr6 length=3 label="Injury condition status"; attrib lccndr7 length=3 label="Mental retardation condition status"; attrib lccndr8 length=3 label="Otr dev prob condition status"; attrib lccndr9 length=3 label="Otr emot/behav prob condition status"; attrib lccndr10 length=3 label="Bone/joint/muscl prob condition status"; attrib lccndr11 length=3 label="Epilepsy condition status"; attrib lccndr12 length=3 label="Learning disability condition status"; attrib lccndr13 length=3 label="ADD/ADHD condition status"; attrib lccndr90 length=3 label="Otr, N.E.C prob (1) condition status"; attrib lccndr91 length=3 label="Otr, N.E.C prob (2) condition status"; attrib lacndr1 length=3 label="Vision problem condition status"; attrib lacndr2 length=3 label="Hearing problem condition status"; attrib lacndr3 length=3 label="Arthritis prob condition status"; attrib lacndr4 length=3 label="Back/neck problem condition status"; attrib lacndr5 length=3 label="Fract/bone/joint inj condition status"; attrib lacndr6 length=3 label="Other injury condition status"; attrib lacndr7 length=3 label="Heart problem condition status"; attrib lacndr8 length=3 label="Stroke condition status"; attrib lacndr9 length=3 label="Hypertension condition status"; attrib lacndr10 length=3 label="Diabetes condition status"; attrib lacndr11 length=3 label="Lung prob condition status"; attrib lacndr12 length=3 label="Cancer condition status"; attrib lacndr13 length=3 label="Birth defect condition status"; attrib lacndr14 length=3 label="Mental retardation condition status"; attrib lacndr15 length=3 label="Otr dev prob condition status"; attrib lacndr16 length=3 label="Senility condition status"; attrib lacndr17 length=3 label="Dep/anx/emot prob condition status"; attrib lacndr18 length=3 label="Weight prob condition status"; attrib lacndr19 length=3 label="Missing limb/finger condition status"; attrib lacndr20 length=3 label="Musculoskeletal condition status"; attrib lacndr21 length=3 label="Circulatory condition status"; attrib lacndr22 length=3 label="Endocrine prob condition status"; attrib lacndr23 length=3 label="Nervous sys prob condition status"; attrib lacndr24 length=3 label="Digestive prob condition status"; attrib lacndr25 length=3 label="Genitourinary prob condition status"; attrib lacndr26 length=3 label="Skin prob condition status"; attrib lacndr27 length=3 label="Blood prob condition status"; attrib lacndr28 length=3 label="Benign tumor condition status"; attrib lacndr29 length=3 label="Alcohol/drug prob condition status"; attrib lacndr30 length=3 label="Otr mental prob condition status"; attrib lacndr31 length=3 label="Surgical after-effects condition status"; attrib lacndr32 length=3 label="'Old age' condition status"; attrib lacndr33 length=3 label="Fatigue condition status"; attrib lacndr34 length=3 label="Pregnancy prob condition status"; attrib lacndr90 length=3 label="Otr, N.E.C. prob(1) condition status"; attrib lacndr91 length=3 label="Otr, N.E.C. prob(2) condition status"; attrib lcondrt length=3 label="Chronic cond rec for person with LA"; attrib lachronr length=3 label="Lim of activ recode by chron cond status"; attrib phstat length=3 label="Reported health status"; attrib pdmed12m length=3 label="Was med care delayed for - - (cost), 12m"; attrib pnmed12m length=3 label="Did--need+NOT get med care (cost), 12m"; attrib homewho length=3 label="Did--need & NOT get home hlth care, 12m"; attrib adaywho length=3 label="Did--need & NOT get adult day care, 12m"; attrib astlwho length=3 label="Did--need & NOT get assisted living 12m"; attrib hospwho length=3 label="Did--need & NOT get hospice care, 12m"; attrib nurswho length=3 label="Did--need & NOT get nursing home care 12"; attrib phospyr length=3 label="Was - - in a hospital OVERNIGHT, 12m"; attrib hospno length=3 label="Number of times in hosp overnight, 12m"; attrib hpnite length=3 label="Number of nights in hospital, 12m"; attrib phchm2w length=3 label="Did - - rec HOME care by hlth prof, 2 wk"; attrib phchmn2w length=3 label="Number of HOME visits by hlth prof, 2wk"; attrib phcph2wr length=3 label="Did--get adv/test results by phone, 2wk"; attrib phcphn2w length=3 label="Number of PHONE calls to hlth prof, 2wk"; attrib phcdv2w length=3 label="Did - - see hlth prof in office etc, 2wk"; attrib phcdvn2w length=3 label="Number of times VISITED hlth prof, 2wk"; attrib p10dvyr length=3 label="Did - - receive care 10+ times, 12m"; attrib hikinda length=3 label="Private hlth ins from employer or work"; attrib hikindb length=3 label="Private hlth ins purchased directly"; attrib hikindc length=3 label="Private health insurance through gov/com"; attrib hikindd length=3 label="Medicare"; attrib hikinde length=3 label="Medi-Gap"; attrib hikindf length=3 label="Medicaid"; attrib hikindg length=3 label="Children's Health Insurance Program"; attrib hikindh length=3 label="Military hlth care/VA"; attrib hikindi length=3 label="CHAMPUS/TRICARE/CHAMP-VA"; attrib hikindj length=3 label="Indian Health Service"; attrib hikindk length=3 label="State-sponsored health plan"; attrib hikindl length=3 label="Other government program"; attrib hikindm length=3 label="Single service plan"; attrib hikindn length=3 label="No Health Insurance"; attrib medicare length=3 label="Medicare coverage recode"; attrib mcpart length=3 label="Type of Medicare coverage"; attrib mcchoice length=3 label="Enrolled in Medicare Plus Choice"; attrib mchmo length=3 label="Is - - signed up with an HMO?"; attrib mcname length=3 label="Type of Medicare HMO"; attrib mcref length=3 label="Need a referral for special care"; attrib mcpaypre length=3 label="More comprehensive benefit plan"; attrib medicaid length=3 label="Medicaid coverage recode"; attrib machmd length=3 label="Any doc, choose from list, doc assigned"; attrib mapcmd length=3 label="Primary care physician for routine care"; attrib maref length=3 label="Need a referral for special care"; attrib single length=3 label="Single service plan recode"; attrib sstypea length=3 label="Accidents"; attrib sstypeb length=3 label="AIDS care"; attrib sstypec length=3 label="Cancer treatment"; attrib sstyped length=3 label="Catastrophic care"; attrib sstypee length=3 label="Dental care"; attrib sstypef length=3 label="Disability insurance"; attrib sstypeg length=3 label="Hospice care"; attrib sstypeh length=3 label="Hospitalization only"; attrib sstypei length=3 label="Long-term care"; attrib sstypej length=3 label="Prescriptions"; attrib sstypek length=3 label="Vision care"; attrib sstypel length=3 label="Other"; attrib private length=3 label="Private health insurance coverage recode"; attrib hitype1 length=3 label="Name of plan (Plan 1)"; attrib whonam1 length=3 label="Plan in whose name (Plan 1)"; attrib plnwrk1 length=3 label="Originally through work or union (Plan 1"; attrib plnpay11 length=3 label="Paid for by self or family (Plan 1)"; attrib plnpay21 length=3 label="Paid for by employer or union (Plan 1)"; attrib plnpay31 length=3 label="Paid by someone outside household Plan 1"; attrib plnpay41 length=3 label="Paid for by Medicare (Plan 1)"; attrib plnpay51 length=3 label="Paid for by Medicaid (Plan 1)"; attrib plnpay61 length=3 label="Paid for by CHIP (Plan 1)"; attrib plnpay71 length=3 label="Paid for by government program (Plan 1)"; attrib hicostr1 length=4 label="Out-of-pocket premium cost (Plan 2)"; attrib plnmgd1 length=3 label="Type of plan (Plan 1)"; attrib mgchmd1 length=3 label="Doctor choice (Plan 1)"; attrib mgprmd1 length=3 label="Preferred list (Plan 1)"; attrib mgpymd1 length=3 label="Out of plan use (Plan 1)"; attrib mgpref1 length=3 label="Private referral (plan 1)"; attrib hitype2 length=3 label="Name of plan (Plan 2)"; attrib whonam2 length=3 label="Plan in whose name (Plan 2)"; attrib plnwrk2 length=3 label="Originally thrgh work or union (Plan 2)"; attrib plnpay12 length=3 label="Paid for by self or family (Plan 2)"; attrib plnpay22 length=3 label="Paid for by employer or union (Plan 2)"; attrib plnpay32 length=3 label="Paid by someone outside household Plan 2"; attrib plnpay42 length=3 label="Paid for by Medicare (Plan 2)"; attrib plnpay52 length=3 label="Paid for by Medicaid (Plan 2)"; attrib plnpay62 length=3 label="Paid for by CHIP (Plan 2)"; attrib plnpay72 length=3 label="Paid for by government program (Plan 2)"; attrib hicostr2 length=4 label="Out-of-pocket premium cost (Plan 2)"; attrib plnmgd2 length=3 label="Type of plan (Plan 2)"; attrib mgchmd2 length=3 label="Doctor choice (Plan 2)"; attrib mgprmd2 length=3 label="Preferred list (Plan 2)"; attrib mgpymd2 length=3 label="Out of plan use (Plan 2)"; attrib mgpref2 length=3 label="Private referral (plan 2)"; attrib hitype3 length=3 label="Name of plan (Plan 3)"; attrib whonam3 length=3 label="Plan in whose name (Plan 3)"; attrib plnwrk3 length=3 label="Originally thrgh work or union (Plan 3)"; attrib plnpay13 length=3 label="Paid for by self or family (Plan 3)"; attrib plnpay23 length=3 label="Paid for by employer or union (Plan 3)"; attrib plnpay33 length=3 label="Paid by someone outside household Plan 3"; attrib plnpay43 length=3 label="Paid for by Medicare (Plan 3)"; attrib plnpay53 length=3 label="Paid for by Medicaid (Plan 3)"; attrib plnpay63 length=3 label="Paid for by CHIP (Plan 3)"; attrib plnpay73 length=3 label="Paid for by government program (Plan 3)"; attrib hicostr3 length=4 label="Out-of-pocket premium cost (Plan 3)"; attrib plnmgd3 length=3 label="Type of plan (Plan 3)"; attrib mgchmd3 length=3 label="Doctor choice (Plan 3)"; attrib mgprmd3 length=3 label="Preferred list (Plan 3)"; attrib mgpymd3 length=3 label="Out of plan use (Plan 3)"; attrib mgpref3 length=3 label="Private referral (plan 3)"; attrib hitype4 length=3 label="Name of plan (Plan 4)"; attrib whonam4 length=3 label="Plan in whose name (Plan 4)"; attrib plnwrk4 length=3 label="Originally thrgh work or union (Plan 4)"; attrib plnpay14 length=3 label="Paid for by self or family (Plan 4)"; attrib plnpay24 length=3 label="Paid for by employer or union (Plan 4)"; attrib plnpay34 length=3 label="Paid by someone outside household Plan 4"; attrib plnpay44 length=3 label="Paid for by Medicare (Plan 4)"; attrib plnpay54 length=3 label="Paid for by Medicaid (Plan 4)"; attrib plnpay64 length=3 label="Paid for by CHIP (Plan 4)"; attrib plnpay74 length=3 label="Paid for by government program (Plan 4)"; attrib hicostr4 length=4 label="Out-of-pocket premium cost (Plan 4)"; attrib plnmgd4 length=3 label="Type of plan (Plan 4)"; attrib mgchmd4 length=3 label="Doctor choice (Plan 4)"; attrib mgprmd4 length=3 label="Preferred list (Plan 4)"; attrib mgpymd4 length=3 label="Out of plan use (Plan 4)"; attrib mgpref4 length=3 label="Private referral (plan 4)"; attrib ihs length=3 label="Indian Health Service Recode"; attrib military length=3 label="Military coverage recode"; attrib chip length=3 label="Children's Health Insurance Prog Recode"; attrib otherpub length=3 label="Other State-Sponsored Health Plan Recode"; attrib othergov length=3 label="Other government programs Recode"; attrib notcov length=3 label="Coverage status as used in Health US"; attrib hilast length=3 label="How long since last had hlth coverage"; attrib histop1 length=3 label="Persons in family with health insurance"; attrib histop2 length=3 label="Got divorced or separated/death of spous"; attrib histop3 length=3 label="Ineligible due to age/left school"; attrib histop4 length=3 label="Empl doesn't offer cov/or not eligible"; attrib histop5 length=3 label="Cost is too high"; attrib histop6 length=3 label="Insurance company refused coverage"; attrib histop7 length=3 label="Medicaid/Medical plan stopped after preg"; attrib histop8 length=3 label="Lost Medicaid/Medical plan because of ne"; attrib histop9 length=3 label="Lost Medicaid (other)"; attrib histop10 length=3 label="Other"; attrib histop11 length=3 label="Never had health insurance"; attrib histop12 length=3 label="Moved from another county/state/country"; attrib histop13 length=3 label="Self-employed"; attrib histop14 length=3 label="No need for it/chooses not to have"; attrib histop15 length=3 label="Got married"; attrib hinotyr length=3 label="No hlth coverage during past 12 months"; attrib hinotmyr length=3 label="Months w/o coverage in past 12 months"; attrib hcspfyr length=3 label="Amount family spent for medical care"; attrib regionbr length=3 label="Region of Birth Recode"; attrib usbrth_p length=3 label="Was -- born in U.S. (excl U.S. terr*)?"; attrib yrsinus length=3 label="Years that -- has been in the U.S."; attrib citizenp length=3 label="Citizenship Status"; attrib headst length=3 label="Now attending Head Start?"; attrib headstv1 length=3 label="Ever attended Head Start?"; attrib educ length=3 label="Highest level of school completed"; attrib educ_r1 length=3 label="Education Recode"; attrib miltryds length=3 label="Ever honorably discharged (active duty)?"; attrib doinglw1 length=3 label="What was -- doing last week?"; attrib whynowk1 length=3 label="Main reason for not working last week"; attrib wrkhrs length=3 label="Total hrs worked last week/usually"; attrib wrkftall length=3 label="Does -- usually work full time?"; attrib wrklyr1 length=3 label="Did -- work for pay in last year?"; attrib wrkmyr length=3 label="Months in {last yr} person had 1+ jobs"; attrib majr_act length=3 label="Major activity in last week"; attrib ernyr_p length=3 label="{Person's} total earnings in 2000"; attrib hiempof length=3 label="Was health ins offered thru workplace?"; attrib psal length=3 label="Rec inc from wage/sal (last CY)"; attrib pseinc length=3 label="Rec inc from self-employ (last CY)"; attrib pssrr length=3 label="Rec inc from SS or RR (last CY)"; attrib pssrrdb length=3 label="Rec'd SS or RR a disability benefit"; attrib pssrrd length=3 label="Rec'd benefit due to disability"; attrib ppens length=3 label="Rec inc from otr pensions (disab)"; attrib popens length=3 label="Rec inc from any otr pension"; attrib pssi length=3 label="Rec'd inc from SSI"; attrib pssid length=3 label="Rec'd SSI due to disability"; attrib ptanf length=3 label="Rec'd inc from Welfare/TANF"; attrib powben length=3 label="Rec'd otr govt assistance"; attrib pintrstr length=3 label="Rec int from sav/bank accounts"; attrib pdivd length=3 label="Rec div from stocks/funds/etc."; attrib pchldsp length=3 label="Rec'd inc from child support"; attrib pincot length=3 label="Rec'd inc from any other source"; attrib incgrp length=3 label="Total Combined Family Income (Grouped)"; attrib ab_bl20k length=3 label=""; attrib rat_cat length=3 label="Ratio of fam inc to poverty threshold"; attrib houseown length=3 label="Home Tenure Status"; attrib fgah length=3 label="Paying lower rent due to govt prgm"; attrib pssapl length=3 label="Ever applied for SSI"; attrib psdapl length=3 label="Ever applied for SSDI"; attrib tanfmyr length=3 label="Months rec Welfare/TANF (last CY)"; attrib pfstp length=3 label="Person author to rec fd stmps (last CY)"; attrib fstpmyr length=3 label="Months rec food stamps (last CY)"; attrib eligpwic length=3 label="Anyone age-eligible for the WIC program?"; attrib pwic length=3 label="Rec'd WIC benefits"; attrib wic_flag length=3 label="WIC recipient age-eligible"; INPUT @1 rectype 2. @3 srvy_yr 4. @7 hhx $6. @13 fmx $2. @15 px $2. @17 intv_qrt 1. @18 sex 1. @19 age_p 2. @21 r_age1 1. @22 r_age2 1. @23 dob_m $2. @25 dob_y_p $4. @29 origin_i 1. @30 origimpt 1. @31 hispan_i 2. @33 hispimpt 1. @34 rcdt1p_i 2. @36 rc_smp_i 2. @38 racerp_i 2. @40 raceimpt 1. @41 mracrp_i 2. @43 mracbp_i 2. @45 racrec_i 1. @46 hiscod_i 1. @47 erimpflg 1. @48 r_maritl 1. @49 cohab1 1. @50 cohab2 1. @51 lg_mstat 1. @52 cdcmstat 1. @53 rrp 2. @55 hh_ref $2. @57 hhreflg $1. @58 frrp 2. @60 fm_ref $2. @62 fmreflg $1. @63 fm_resp 2. @65 fmrpflg $1. @66 sib_deg 1. @67 mother $2. @69 mom_deg 1. @70 father $2. @72 dad_deg 1. @73 guard $2. @75 parents 1. @76 mom_ed 2. @78 dad_ed 2. @80 fm_size 2. @82 fm_type 1. @83 fm_strcp 2. @85 fm_strp 2. @87 nowaf 1. @88 astatflg 1. @89 cstatflg 1. @90 immunflg 1. @91 region 1. @92 msasizep 1. @93 wtia 6. @99 wtfa 6. @105 stratum 3. @108 psu 1. @109 plaplylm 1. @110 plaplyun 1. @111 pspedeis 1. @112 pspedem 1. @113 plaadl 1. @114 labath 1. @115 ladress 1. @116 laeat 1. @117 labed 1. @118 latoilt 1. @119 lahome 1. @120 plaiadl 1. @121 plawknow 1. @122 plawklim 1. @123 plawalk 1. @124 plaremem 1. @125 plimany 1. @126 la1ar 1. @127 lahcc1 1. @128 lhccln1 2. @130 lhcclt1 1. @131 lhccly1 2. @133 lahcc2 1. @134 lhccln2 2. @136 lhcclt2 1. @137 lhccly2 2. @139 lahcc3 1. @140 lhccln3 2. @142 lhcclt3 1. @143 lhccly3 2. @145 lahcc4 1. @146 lhccln4 2. @148 lhcclt4 1. @149 lhccly4 2. @151 lahcc5 1. @152 lhccln5 2. @154 lhcclt5 1. @155 lhccly5 2. @157 lahcc6 1. @158 lhccln6 2. @160 lhcclt6 1. @161 lhccly6 2. @163 lahcc7 1. @164 lhccln7 2. @166 lhcclt7 1. @167 lhccly7 2. @169 lahcc8 1. @170 lhccln8 2. @172 lhcclt8 1. @173 lhccly8 2. @175 lahcc9 1. @176 lhccln9 2. @178 lhcclt9 1. @179 lhccly9 2. @181 lahcc10 1. @182 lhccln10 2. @184 lhcclt10 1. @185 lhccly10 2. @187 lahcc11 1. @188 lhccln11 2. @190 lhcclt11 1. @191 lhccly11 2. @193 lahcc12 1. @194 lhccln12 2. @196 lhcclt12 1. @197 lhccly12 2. @199 lahcc13 1. @200 lhccln13 2. @202 lhcclt13 1. @203 lhccly13 2. @205 lahcc90 1. @206 lhccln90 2. @208 lhcclt90 1. @209 lhccly90 2. @211 lahcc91 1. @212 lhccln91 2. @214 lhcclt91 1. @215 lhccly91 2. @217 lahca1 1. @218 lhcaln1 2. @220 lhcalt1 1. @221 lhcaly1 2. @223 lahca2 1. @224 lhcaln2 2. @226 lhcalt2 1. @227 lhcaly2 2. @229 lahca3 1. @230 lhcaln3 2. @232 lhcalt3 1. @233 lhcaly3 2. @235 lahca4 1. @236 lhcaln4 2. @238 lhcalt4 1. @239 lhcaly4 2. @241 lahca5 1. @242 lhcaln5 2. @244 lhcalt5 1. @245 lhcaly5 2. @247 lahca6 1. @248 lhcaln6 2. @250 lhcalt6 1. @251 lhcaly6 2. @253 lahca7 1. @254 lhcaln7 2. @256 lhcalt7 1. @257 lhcaly7 2. @259 lahca8 1. @260 lhcaln8 2. @262 lhcalt8 1. @263 lhcaly8 2. @265 lahca9 1. @266 lhcaln9 2. @268 lhcalt9 1. @269 lhcaly9 2. @271 lahca10 1. @272 lhcaln10 2. @274 lhcalt10 1. @275 lhcaly10 2. @277 lahca11 1. @278 lhcaln11 2. @280 lhcalt11 1. @281 lhcaly11 2. @283 lahca12 1. @284 lhcaln12 2. @286 lhcalt12 1. @287 lhcaly12 2. @289 lahca13 1. @290 lhcaln13 2. @292 lhcalt13 1. @293 lhcaly13 2. @295 lahca14 1. @296 lhcaln14 2. @298 lhcalt14 1. @299 lhcaly14 2. @301 lahca15 1. @302 lhcaln15 2. @304 lhcalt15 1. @305 lhcaly15 2. @307 lahca16 1. @308 lhcaln16 2. @310 lhcalt16 1. @311 lhcaly16 2. @313 lahca17 1. @314 lhcaln17 2. @316 lhcalt17 1. @317 lhcaly17 2. @319 lahca18 1. @320 lhcaln18 2. @322 lhcalt18 1. @323 lhcaly18 2. @325 lahca19 1. @326 lhcaln19 2. @328 lhcalt19 1. @329 lhcaly19 2. @331 lahca20 1. @332 lhcaln20 2. @334 lhcalt20 1. @335 lhcaly20 2. @337 lahca21 1. @338 lhcaln21 2. @340 lhcalt21 1. @341 lhcaly21 2. @343 lahca22 1. @344 lhcaln22 2. @346 lhcalt22 1. @347 lhcaly22 2. @349 lahca23 1. @350 lhcaln23 2. @352 lhcalt23 1. @353 lhcaly23 2. @355 lahca24 1. @356 lhcaln24 2. @358 lhcalt24 1. @359 lhcaly24 2. @361 lahca25 1. @362 lhcaln25 2. @364 lhcalt25 1. @365 lhcaly25 2. @367 lahca26 1. @368 lhcaln26 2. @370 lhcalt26 1. @371 lhcaly26 2. @373 lahca27 1. @374 lhcaln27 2. @376 lhcalt27 1. @377 lhcaly27 2. @379 lahca28 1. @380 lhcaln28 2. @382 lhcalt28 1. @383 lhcaly28 2. @385 lahca29 1. @386 lhcaln29 2. @388 lhcalt29 1. @389 lhcaly29 2. @391 lahca30 1. @392 lhcaln30 2. @394 lhcalt30 1. @395 lhcaly30 2. @397 lahca31 1. @398 lhcaln31 2. @400 lhcalt31 1. @401 lhcaly31 2. @403 lahca32 1. @404 lhcaln32 2. @406 lhcalt32 1. @407 lhcaly32 2. @409 lahca33 1. @410 lhcaln33 2. @412 lhcalt33 1. @413 lhcaly33 2. @415 lahca34 1. @416 lhcaln34 2. @418 lhcalt34 1. @419 lhcaly34 2. @421 lahca90 1. @422 lhcaln90 2. @424 lhcalt90 1. @425 lhcaly90 2. @427 lahca91 1. @428 lhcaln91 2. @430 lhcalt91 1. @431 lhcaly91 2. @433 lacntr1 2. @435 lacntr2 2. @437 lacntr3 2. @439 lacntr4 2. @441 lacntr5 2. @443 lacntr6 2. @445 lacntr7 2. @447 lacntr8 2. @449 lacntr9 2. @451 lacntr10 2. @453 lacntr11 2. @455 lacntr12 2. @457 lacntr13 2. @459 lacntr90 2. @461 lacntr91 2. @463 laantr1 2. @465 laantr2 2. @467 laantr3 2. @469 laantr4 2. @471 laantr5 2. @473 laantr6 2. @475 laantr7 2. @477 laantr8 2. @479 laantr9 2. @481 laantr10 2. @483 laantr11 2. @485 laantr12 2. @487 laantr13 2. @489 laantr14 2. @491 laantr15 2. @493 laantr16 2. @495 laantr17 2. @497 laantr18 2. @499 laantr19 2. @501 laantr20 2. @503 laantr21 2. @505 laantr22 2. @507 laantr23 2. @509 laantr24 2. @511 laantr25 2. @513 laantr26 2. @515 laantr27 2. @517 laantr28 2. @519 laantr29 2. @521 laantr30 2. @523 laantr31 2. @525 laantr32 2. @527 laantr33 2. @529 laantr34 2. @531 laantr90 2. @533 laantr91 2. @535 lccndr1 1. @536 lccndr2 1. @537 lccndr3 1. @538 lccndr4 1. @539 lccndr5 1. @540 lccndr6 1. @541 lccndr7 1. @542 lccndr8 1. @543 lccndr9 1. @544 lccndr10 1. @545 lccndr11 1. @546 lccndr12 1. @547 lccndr13 1. @548 lccndr90 1. @549 lccndr91 1. @550 lacndr1 1. @551 lacndr2 1. @552 lacndr3 1. @553 lacndr4 1. @554 lacndr5 1. @555 lacndr6 1. @556 lacndr7 1. @557 lacndr8 1. @558 lacndr9 1. @559 lacndr10 1. @560 lacndr11 1. @561 lacndr12 1. @562 lacndr13 1. @563 lacndr14 1. @564 lacndr15 1. @565 lacndr16 1. @566 lacndr17 1. @567 lacndr18 1. @568 lacndr19 1. @569 lacndr20 1. @570 lacndr21 1. @571 lacndr22 1. @572 lacndr23 1. @573 lacndr24 1. @574 lacndr25 1. @575 lacndr26 1. @576 lacndr27 1. @577 lacndr28 1. @578 lacndr29 1. @579 lacndr30 1. @580 lacndr31 1. @581 lacndr32 1. @582 lacndr33 1. @583 lacndr34 1. @584 lacndr90 1. @585 lacndr91 1. @586 lcondrt 1. @587 lachronr 1. @588 phstat 1. @589 pdmed12m 1. @590 pnmed12m 1. @591 homewho 1. @592 adaywho 1. @593 astlwho 1. @594 hospwho 1. @595 nurswho 1. @596 phospyr 1. @597 hospno 3. @600 hpnite 3. @603 phchm2w 1. @604 phchmn2w 2. @606 phcph2wr 1. @607 phcphn2w 2. @609 phcdv2w 1. @610 phcdvn2w 2. @612 p10dvyr 1. @613 hikinda 1. @614 hikindb 1. @615 hikindc 1. @616 hikindd 1. @617 hikinde 1. @618 hikindf 1. @619 hikindg 1. @620 hikindh 1. @621 hikindi 1. @622 hikindj 1. @623 hikindk 1. @624 hikindl 1. @625 hikindm 1. @626 hikindn 1. @627 medicare 1. @628 mcpart 1. @629 mcchoice 1. @630 mchmo 1. @631 mcname 2. @633 mcref 1. @634 mcpaypre 1. @635 medicaid 1. @636 machmd 1. @637 mapcmd 1. @638 maref 1. @639 single 1. @640 sstypea 1. @641 sstypeb 1. @642 sstypec 1. @643 sstyped 1. @644 sstypee 1. @645 sstypef 1. @646 sstypeg 1. @647 sstypeh 1. @648 sstypei 1. @649 sstypej 1. @650 sstypek 1. @651 sstypel 1. @652 private 1. @653 hitype1 2. @655 whonam1 1. @656 plnwrk1 1. @657 plnpay11 1. @658 plnpay21 1. @659 plnpay31 1. @660 plnpay41 1. @661 plnpay51 1. @662 plnpay61 1. @663 plnpay71 1. @664 hicostr1 5. @669 plnmgd1 1. @670 mgchmd1 1. @671 mgprmd1 1. @672 mgpymd1 1. @673 mgpref1 1. @674 hitype2 2. @676 whonam2 1. @677 plnwrk2 1. @678 plnpay12 1. @679 plnpay22 1. @680 plnpay32 1. @681 plnpay42 1. @682 plnpay52 1. @683 plnpay62 1. @684 plnpay72 1. @685 hicostr2 5. @690 plnmgd2 1. @691 mgchmd2 1. @692 mgprmd2 1. @693 mgpymd2 1. @694 mgpref2 1. @695 hitype3 2. @697 whonam3 1. @698 plnwrk3 1. @699 plnpay13 1. @700 plnpay23 1. @701 plnpay33 1. @702 plnpay43 1. @703 plnpay53 1. @704 plnpay63 1. @705 plnpay73 1. @706 hicostr3 5. @711 plnmgd3 1. @712 mgchmd3 1. @713 mgprmd3 1. @714 mgpymd3 1. @715 mgpref3 1. @716 hitype4 2. @718 whonam4 1. @719 plnwrk4 1. @720 plnpay14 1. @721 plnpay24 1. @722 plnpay34 1. @723 plnpay44 1. @724 plnpay54 1. @725 plnpay64 1. @726 plnpay74 1. @727 hicostr4 5. @732 plnmgd4 1. @733 mgchmd4 1. @734 mgprmd4 1. @735 mgpymd4 1. @736 mgpref4 1. @737 ihs 1. @738 military 1. @739 chip 1. @740 otherpub 1. @741 othergov 1. @742 notcov 1. @743 hilast 1. @744 histop1 1. @745 histop2 1. @746 histop3 1. @747 histop4 1. @748 histop5 1. @749 histop6 1. @750 histop7 1. @751 histop8 1. @752 histop9 1. @753 histop10 1. @754 histop11 1. @755 histop12 1. @756 histop13 1. @757 histop14 1. @758 histop15 1. @759 hinotyr 1. @760 hinotmyr 2. @762 hcspfyr 1. @763 regionbr 2. @765 usbrth_p 1. @766 yrsinus 1. @767 citizenp 1. @768 headst 1. @769 headstv1 1. @770 educ 2. @772 educ_r1 2. @774 miltryds 1. @775 doinglw1 1. @776 whynowk1 2. @778 wrkhrs 2. @780 wrkftall 1. @781 wrklyr1 1. @782 wrkmyr 2. @784 majr_act 1. @785 ernyr_p 2. @787 hiempof 1. @788 psal 1. @789 pseinc 1. @790 pssrr 1. @791 pssrrdb 1. @792 pssrrd 1. @793 ppens 1. @794 popens 1. @795 pssi 1. @796 pssid 1. @797 ptanf 1. @798 powben 1. @799 pintrstr 1. @800 pdivd 1. @801 pchldsp 1. @802 pincot 1. @803 incgrp 2. @805 ab_bl20k 1. @806 rat_cat 2. @808 houseown 1. @809 fgah 1. @810 pssapl 1. @811 psdapl 1. @812 tanfmyr 2. @814 pfstp 1. @815 fstpmyr 2. @817 eligpwic 1. @818 pwic 1. @819 wic_flag 1. ; /*------------------------------------------------ The PROC FORMAT statement will store the formats in a sas data set called fpers01 To use the stored formats in a subsequent program, use code like the following: proc format cntlin=library.fpers01; PROC freq; tables pesex ; format pesex P135L.; For more information, consult PROC FORMAT in the SAS Procedures Guide ----------------------------------------------- */ PROC FORMAT cntlout=library.fpers01; ; VALUE rectype (default=32) 20 = "Person" ; VALUE srvy_yr (default=32) 2001 = "2001" ; VALUE intv_qrt (default=32) 1 = "Quarter 1" 2 = "Quarter 2" 3 = "Quarter 3" 4 = "Quarter 4" ; VALUE sex (default=32) 1 = "Male" 2 = "Female" ; VALUE age_p (default=32) 00 = "Under 1 year" 85 = "85+ years" ; VALUE r_age1l (default=32) 1 = "Under 5 years" 2 = "5-17 years" 3 = "18-24 years" 4 = "25-44 years" 5 = "45-64 years" 6 = "65-69 years" 7 = "70-74 years" 8 = "75 years and over" ; VALUE r_age2l (default=32) 1 = "Under 6 years" 2 = "6-16 years" 3 = "17-24 years" 4 = "25-34 years" 5 = "35-44 years" 6 = "45-54 years" 7 = "55-64 years" 8 = "65-74 years" 9 = "75 years and over" ; VALUE $dob_m (default=32) ""01"" = "January" ""02"" = "February" ""03"" = "March" ""04"" = "April" ""05"" = "May" ""06"" = "June" ""07"" = "July" ""08"" = "August" ""09"" = "September" ""10"" = "October" ""11"" = "November" ""12"" = "December" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" ; VALUE $dob_y_p (default=32) ""1917"" = "1917 or before" ""9997"" = "Refused" ""9998"" = "Not ascertained" ""9999"" = "Don't know" ; VALUE origin_i (default=32) 1 = "Yes" 2 = "No" ; VALUE origimpt (default=32) 1 = "Imputed 'refused' Hispanic Origin response" 2 = "Imputed 'not ascertained' Hispanic Origin" 3 = "Imputed 'does not know' Hispanic Origin" 4 = "Hispanic origin given by respondent/proxy" ; VALUE hispan_i (default=32) 00 = "Multiple Hispanic" 01 = "Puerto Rican" 02 = "Mexican" 03 = "Mexican-American" 04 = "Cuban/Cuban American" 05 = "Dominican (Republic)" 06 = "Central or South American" 07 = "Other Latin American; type not specified" 08 = "Other Spanish" 09 = "Hispanic/Latino/Spanish; non-specific type" 10 = "Hispanic/Latino/Spanish; type refused" 11 = "Hispanic/Latino/Spanish; type not ascertained" 12 = "Not Hispanic/Spanish origin" ; VALUE hispimpt (default=32) 1 = "Imputed 'refused' Hispanic Origin type" 2 = "Imputed 'not ascertained' Hispanic Origin type" 3 = "Imputed 'does not know' Hispanic Origin type" 4 = "Hispanic Origin type given by respondent/proxy" ; VALUE rcdt1p_i (default=32) 01 = "White only" 02 = "Black/African American only" 03 = "AIAN only" 09 = "Asian Indian only" 10 = "Chinese only" 11 = "Filipino only" 15 = "Other Asian only" 16 = "Other race only" 17 = "Multiple detailed race*" ; VALUE rc_smp_i (default=32) 01 = "White only" 02 = "Black/African American only" 03 = "AIAN only*" 04 = "Asian only" 05 = "Other race only" 06 = "Multiple detailed race only" ; VALUE racerp_i (default=32) 01 = "White only" 02 = "Black/African American only" 03 = "AIAN* only" 04 = "Asian only" 05 = "Other race only" 06 = "Multiple race" ; VALUE raceimpt (default=32) 1 = "Imputed 'refused' race response" 2 = "Imputed 'not ascertained' race response" 3 = "Imputed 'does not know' race response" 4 = "Race given by respondent/proxy" ; VALUE mracrp_i (default=32) 01 = "White" 02 = "Black/African American" 03 = "Indian (American); Alaska Native" 09 = "Asian Indian" 10 = "Chinese" 11 = "Filipino" 15 = "Other Asian*" 16 = "Other Race*" 17 = "Multiple Race*" ; VALUE mracbp_i (default=32) 01 = "White" 02 = "Black/African American" 03 = "Indian (American) (includes Eskimo; Aleut)" 06 = "Chinese" 07 = "Filipino" 12 = "Asian Indian" 16 = "Other race" 17 = "Multiple race" ; VALUE racrec_i (default=32) 1 = "White" 2 = "Black" 3 = "Other" ; VALUE hiscod_i (default=32) 1 = "Hispanic" 2 = "Non-Hispanic White" 3 = "Non-Hispanic Black" 4 = "Non-Hispanic Other" ; VALUE erimpflg (default=32) 1 = "Ethnicity/race imputed" 2 = "Ethnicity/race given by respondent/proxy" ; VALUE r_maritl (default=32) 0 = "Under 14 years" 1 = "Married - spouse in household" 2 = "Married - spouse not in household" 3 = "Married - spouse in household unknown" 4 = "Widowed" 5 = "Divorced" 6 = "Separated" 7 = "Never married" 8 = "Living with partner" 9 = "Unknown marital status" ; VALUE cohab1l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cohab2l (default=32) 1 = "Married" 2 = "Widowed" 3 = "Divorced" 4 = "Separated" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lg_mstat (default=32) 1 = "Married; spouse in household" 2 = "Married; spouse not in household" 3 = "Married; spouse in household unknown" 4 = "Widowed" 5 = "Divorced" 6 = "Separated" 7 = "Never Married" 9 = "Unknown marital status" ; VALUE cdcmstat (default=32) 1 = "Separated" 2 = "Divorced" 3 = "Married" 4 = "Single/never married" 5 = "Widowed" 9 = "Unknown marital status" ; VALUE rrp (default=32) 01 = "Household reference person" 02 = "Spouse (husband/wife)" 03 = "Unmarried Partner" 04 = "Child (biological/adoptive/in-law/step/foster)" 05 = "Child of partner" 06 = "Grandchild" 07 = "Parent (bio./adoptive/in-law/step/foster)" 08 = "Brother/sister (bio./adop./in-law/step/foster)" 09 = "Grandparent (Grandmother/Grandfather)" 10 = "Aunt/Uncle" 11 = "Niece/Nephew" 12 = "Other relative" 13 = "Housemate/roommate" 14 = "Roomer/Boarder" 15 = "Other nonrelative" 16 = "Legal guardian" 17 = "Ward" 97 = "Refused" 99 = "Don't know" ; VALUE $hh_ref (default=32) ""98"" = "Not ascertained" ; VALUE $hhreflg (default=32) ""P"" = "HH Reference person" ""8"" = "Not ascertained" """ = " " ; VALUE frrp (default=32) 01 = "Family reference person" 02 = "Spouse (husband/wife)" 03 = "Unmarried Partner" 04 = "Child (biological/adoptive/in-law/step/foster)" 05 = "Child of partner" 06 = "Grandchild" 07 = "Parent (bio./adoptive/in-law/step/foster)" 08 = "Brother/sister (bio./adop./in-law/step/foster)" 09 = "Grandparent (Grandmother/Grandfather)" 10 = "Aunt/Uncle" 11 = "Niece/Nephew" 12 = "Other relative" 16 = "Legal guardian" 17 = "Ward" 97 = "Refused" 99 = "Don't know" ; VALUE $fm_ref (default=32) ""98"" = "Not ascertained" ; VALUE $fmreflg (default=32) ""P"" = "Family reference person" ""8"" = "Not ascertained" """ = " " ; VALUE fm_resp (default=32) 98 = "Not ascertained" ; VALUE $fmrpflg (default=32) ""B"" = "Family respondent" ""8"" = "Not ascertained" """ = " " ; VALUE sib_deg (default=32) 1 = "Full {brother/sister}" 2 = "Half {brother/sister}" 3 = "Adopted {brother/sister}" 4 = "Step {brother/sister}" 5 = "Foster {brother/sister}" 6 = "{brother/sister}-in-law" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE $mother (default=32) ""00"" = "No mother in the household" ""96"" = "Has legal guardian" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" ; VALUE mom_deg (default=32) 1 = "Biological" 2 = "Step" 3 = "Adoptive" 4 = "Foster" 5 = "In-law" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE $father (default=32) ""00"" = "No father in the household" ""96"" = "Has legal guardian" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" ; VALUE dad_deg (default=32) 1 = "Biological" 2 = "Step" 3 = "Adoptive" 4 = "Foster" 5 = "In-law" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE $guard (default=32) ""00"" = "Guardian is not a household member" ""97"" = "Refused" ""98"" = "Not ascertained" ""99"" = "Don't know" """ = " Not in Universe" ; VALUE parents (default=32) 1 = "Mother; no father" 2 = "Father; no mother" 3 = "Mother and father" 4 = "Neither mother nor father" 9 = "Unknown" ; VALUE mom_ed (default=32) 01 = "Less/equal to 8th grade" 02 = "9-12th grade; no high school diploma" 03 = "High school graduate/GED recipient" 04 = "Some college; no degree" 05 = "AA degree; technical or vocational" 06 = "AA degree; academic program" 07 = "Bachelor's degree" 08 = "Master's; professional; or doctoral degree" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE dad_ed (default=32) 01 = "Less/equal to 8th grade" 02 = "9-12th grade; no high school diploma" 03 = "High school graduate/GED recipient" 04 = "Some college; no degree" 05 = "AA degree; technical or vocational" 06 = "AA degree; academic program" 07 = "Bachelor's degree" 08 = "Master's; professional; or doctoral degree" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE fm_type (default=32) 1 = "One adult; no child(ren) under 18" 2 = "Multiple adults; no child(ren) under 18" 3 = "One adult; 1+ child(ren) under 18" 4 = "Multiple adults; 1+ child(ren) under 18" 9 = "Unknown" ; VALUE nowaf (default=32) 1 = "Armed Forces" 2 = "Not Armed Forces" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE astatflg (default=32) 0 = "Sample Adult - no record" 1 = "Sample Adult - has record" 2 = "Not selected as Sample Adult" 3 = "No one selected as Sample Adult" 4 = "Armed Force member" 5 = "Armed Force member - selected as Sample Adult" ; VALUE cstatflg (default=32) 0 = "Sample Child - no record" 1 = "Sample Child - has record" 2 = "Not selected as Sample Child" 3 = "No one selected as Sample Child" 4 = "Emancipated Minor" ; VALUE immunflg (default=32) 0 = "Immunization Child - no record" 1 = "Immunization Child - has record" 2 = "Not eligible for immunization questions" ; VALUE region (default=32) 1 = "Northeast" 2 = "Midwest" 3 = "South" 4 = "West" ; VALUE msasizep (default=32) 1 = "5;000;000 or more" 2 = "2;500;000 - 4;999;999" 3 = "1;000;000 - 2;499;999" 4 = "500;000 - 999;999" 5 = "250;000 - 499;999" 6 = "Under 250;000" 7 = "Non-MSA" ; VALUE plaplylm (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plaplyun (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pspedeis (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pspedem (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plaadl (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE labath (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ladress (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE laeat (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE labed (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE latoilt (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lahome (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plaiadl (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plawknow (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plawklim (default=32) 0 = "Unable to work" 1 = "Limited in work" 2 = "Not limited in work" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plawalk (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plaremem (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plimany (default=32) 0 = "Limitation previously mentioned" 1 = "Yes; limited in some other way" 2 = "Not limited in any way" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE la1ar (default=32) 1 = "Limited in any way" 2 = "Not limited in any way" 3 = "Unknown if limited" ; VALUE lahcc1l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln1l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt1l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly1l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc2l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln2l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt2l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly2l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc3l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln3l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt3l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly3l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc4l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln4l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt4l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly4l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc5l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln5l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lhcclt5l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly5l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc6l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln6l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt6l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly6l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc7l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln7l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt7l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly7l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc8l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln8l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt8l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly8l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc9l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln9l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt9l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly9l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc10l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln1j (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt1j (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly1j (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc11l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln1a (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt1a (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly1a (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc12l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln1b (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt1b (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly1b (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc13l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln1c (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt1c (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly1c (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc90l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln9j (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt9j (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly9j (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahcc91l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccln9a (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcclt9a (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhccly9a (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca1l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln1l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt1l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly1l (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca2l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln2l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt2l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly2l (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca3l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln3l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt3l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly3l (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca4l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln4l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt4l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly4l (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca5l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln5l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt5l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly5l (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca6l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln6l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt6l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly6l (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca7l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln7l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt7l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly7l (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca8l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln8l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt8l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly8l (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca9l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln9l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt9l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly9l (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca10l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln1j (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt1j (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly1j (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca11l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln1a (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt1a (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly1a (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca12l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln1b (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt1b (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly1b (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca13l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln1c (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lhcalt1c (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly1c (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca14l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln1d (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt1d (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly1d (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca15l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln1e (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt1e (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly1e (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca16l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln1f (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt1f (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly1f (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca17l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln1g (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt1g (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly1g (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca18l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln1h (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt1h (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly1h (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca19l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln1i (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt1i (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly1i (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca20l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln2j (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt2j (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly2j (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca21l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln2a (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt2a (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly2a (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca22l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln2b (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt2b (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly2b (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca23l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln2c (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt2c (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly2c (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca24l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln2d (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt2d (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly2d (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca25l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln2e (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt2e (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly2e (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca26l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln2f (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt2f (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly2f (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca27l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln2g (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt2g (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly2g (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca28l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln2h (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt2h (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly2h (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca29l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln2i (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt2i (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly2i (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca30l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln3j (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt3j (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly3j (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca31l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln3a (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt3a (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly3a (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca32l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln3b (default=32) 95 = "95+" 96 = "Since birth **" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt3b (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth *" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly3b (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca33l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln3c (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt3c (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly3c (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca34l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln3d (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt3d (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly3d (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca90l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln9j (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt9j (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly9j (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lahca91l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaln9a (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused*" 98 = "Not ascertained" 99 = "Don't know*" ; VALUE lhcalt9a (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lhcaly9a (default=32) 00 = "Less than 1 year" 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE lacntr1l (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr2l (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr3l (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr4l (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr5l (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr6l (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr7l (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr8l (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr9l (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr1j (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr1a (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr1b (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr1c (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr9j (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lacntr9a (default=32) 00 = "Since birth and child < 1 year of age" 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr1l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr2l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr3l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr4l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr5l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr6l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr7l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr8l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr9l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr1j (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr1a (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr1b (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr1c (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr1d (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr1e (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr1f (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr1g (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr1h (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr1i (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr2j (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr2a (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr2b (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr2c (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr2d (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr2e (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr2f (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr2g (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr2h (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr2i (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr3j (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr3a (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr3b (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr3c (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr3d (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr9j (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE laantr9a (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE lccndr1l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr2l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr3l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr4l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr5l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr6l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr7l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr8l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr9l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr1j (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr1a (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr1b (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr1c (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr9j (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lccndr9a (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr1l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr2l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr3l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr4l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr5l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr6l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr7l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr8l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr9l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr1j (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr1a (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr1b (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr1c (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr1d (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr1e (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr1f (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr1g (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr1h (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr1i (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr2j (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr2a (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr2b (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr2c (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr2d (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr2e (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr2f (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr2g (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr2h (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr2i (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr3j (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr3a (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr3b (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr3c (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr3d (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr9j (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lacndr9a (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE lcondrt (default=32) 1 = "At least one condition causing LA is chronic" 2 = "No condition causing LA is chronic" 9 = "Unknown if any condition causing LA is chronic" ; VALUE lachronr (default=32) 0 = "Not limited in any way (incl unk if limited)" 1 = "Limited; caused by at least one chronic cond" 2 = "Limited; not caused by chronic cond" 3 = "Limited; unk if cond causing LA is chronic" ; VALUE phstat (default=32) 1 = "Excellent" 2 = "Very good" 3 = "Good" 4 = "Fair" 5 = "Poor" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pdmed12m (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pnmed12m (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE homewho (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE adaywho (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE astlwho (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hospwho (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE nurswho (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE phospyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hospno (default=32) 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE hpnite (default=32) 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE phchm2w (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE phchmn2w (default=32) 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE phcph2wr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE phcphn2w (default=32) 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE phcdv2w (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE phcdvn2w (default=32) 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE p10dvyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikinda (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindb (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindc (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindd (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikinde (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindf (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindg (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindh (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindi (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindj (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindk (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindl (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindm (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hikindn (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE medicare (default=32) 1 = "Yes; information" 2 = "Yes; but no detail information" 3 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mcpart (default=32) 1 = "Part A - Hospital Only" 2 = "Part B - Medical Only" 3 = "Both Part A and Part B" 4 = "Card Not Available" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mcchoice (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mchmo (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mcname (default=32) 04 = "Medigap plan" 12 = "Group" 22 = "Staff" 32 = "IPA" 92 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE mcref (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mcpaypre (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE medicaid (default=32) 1 = "Yes; information" 2 = "Yes; but no detail information" 3 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE machmd (default=32) 1 = "Any doctor" 2 = "Select from a book/list" 3 = "Doctor is assigned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mapcmd (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE maref (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE single (default=32) 1 = "Yes with detail" 2 = "Yes with no detail" 3 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstypea (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstypeb (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstypec (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstyped (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstypee (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstypef (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstypeg (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstypeh (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstypei (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstypej (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstypek (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sstypel (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE private (default=32) 1 = "Yes; information" 2 = "Yes; but no detail information" 3 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hitype1l (default=32) 98 = "Not ascertained" 99 = "Unknown" ; VALUE whonam1l (default=32) 1 = "In own name" 2 = "Someone else in family" 3 = "Person not in household" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnwrk1l (default=32) 1 = "Employer" 2 = "Union" 3 = "Through work; but DK if employer or union" 4 = "Through work; self-employ or prof assoc" 5 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay1a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay2a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay3a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay4a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay5a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay6a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay7a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hicostra (default=32) 20000 = "$20000 or more" 99997 = "Refused" 99998 = "Not ascertained" 99999 = "Don't know" ; VALUE plnmgd1l (default=32) 1 = "HMO/IPA" 2 = "PPO" 3 = "POS" 4 = "Fee-for-service/indemnity" 5 = "Other" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgchmd1l (default=32) 1 = "Any doctor" 2 = "Select from group/list" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgprmd1l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgpymd1l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgpref1l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hitype2l (default=32) 98 = "Not ascertained" 99 = "Unknown" ; VALUE whonam2l (default=32) 1 = "In own name" 2 = "Someone else in family" 3 = "Person not in household" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnwrk2l (default=32) 1 = "Employer" 2 = "Union" 3 = "Through work; but DK if employer or union" 4 = "Through work; self-employ or prof assoc" 5 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay1b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay2b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay3b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay4b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay5b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay6b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay7b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hicostrb (default=32) 20000 = "$20000 or more" 99997 = "Refused" 99998 = "Not ascertained" 99999 = "Don't know" ; VALUE plnmgd2l (default=32) 1 = "HMO/IPA" 2 = "PPO" 3 = "POS" 4 = "Fee-for-service/indemnity" 5 = "Other" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgchmd2l (default=32) 1 = "Any doctor" 2 = "Select from group/list" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgprmd2l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgpymd2l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgpref2l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hitype3l (default=32) 98 = "Not ascertained" 99 = "Unknown" ; VALUE whonam3l (default=32) 1 = "In own name" 2 = "Someone else in family" 3 = "Person not in household" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnwrk3l (default=32) 1 = "Employer" 2 = "Union" 3 = "Through work; but DK if employer or union" 4 = "Through work; self-employ or prof assoc" 5 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay1c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay2c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay3c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay4c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay5c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay6c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay7c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hicostrc (default=32) 20000 = "$20000 or more" 99997 = "Refused" 99998 = "Not ascertained" 99999 = "Don't know" ; VALUE plnmgd3l (default=32) 1 = "HMO/IPA" 2 = "PPO" 3 = "POS" 4 = "Fee-for-service/indemnity" 5 = "Other" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgchmd3l (default=32) 1 = "Any doctor" 2 = "Select from group/list" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgprmd3l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgpymd3l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgpref3l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hitype4l (default=32) 98 = "Not ascertained" 99 = "Unknown" ; VALUE whonam4l (default=32) 1 = "In own name" 2 = "Someone else in family" 3 = "Person not in household" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnwrk4l (default=32) 1 = "Employer" 2 = "Union" 3 = "Through work; but DK if employer or union" 4 = "Through work; self-employ or prof assoc" 5 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay1d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay2d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay3d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay4d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay5d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay6d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE plnpay7d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hicostrd (default=32) 20000 = "$20000 or more" 99997 = "Refused" 99998 = "Not ascertained" 99999 = "Don't know" ; VALUE plnmgd4l (default=32) 1 = "HMO/IPA" 2 = "PPO" 3 = "POS" 4 = "Fee-for-service/indemnity" 5 = "Other" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgchmd4l (default=32) 1 = "Any doctor" 2 = "Select from group/list" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgprmd4l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgpymd4l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mgpref4l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ihs (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE military (default=32) 1 = "Yes; Military/VA only" 2 = "Yes; CHAMPUS/TRICARE/CHAMP-VA only" 3 = "Yes Both Military/VA + CHAMPUS/TRICARE/CHAMP-VA" 4 = "Yes unknown type" 5 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE chip (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE otherpub (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE othergov (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE notcov (default=32) 1 = "Not covered" 2 = "Covered" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hilast (default=32) 1 = "6 months or less" 2 = "More than 6 months; but not more than 1 year ago" 3 = "More than 1 year; but not more than 3 years ago" 4 = "More than 3 years" 5 = "Never" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop1l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop2l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop3l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop4l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop5l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop6l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop7l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop8l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop9l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop1j (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop1a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop1b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop1c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop1d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE histop1e (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hinotyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE hinotmyr (default=32) 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE hcspfyr (default=32) 0 = "Zero" 1 = "Less than $500" 2 = "$500-$1;999" 3 = "$2;000-$2;999" 4 = "$3;000-$4;999" 5 = "$5;000 or more" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE regionbr (default=32) 01 = "United States" 02 = "Mexico; Central America; Caribbean Islands" 03 = "South America" 04 = "Europe" 05 = "Russia (and former USSR areas)" 06 = "Africa" 07 = "Middle East" 08 = "Indian Subcontinent" 09 = "Asia" 10 = "SE Asia" 11 = "Elsewhere" 99 = "Unknown" ; VALUE usbrth_p (default=32) 1 = "Yes" 2 = "No" ; VALUE yrsinus (default=32) 1 = "Less than 1 year" 2 = "1 yr.; less than 5 yrs." 3 = "5 yrs.; less than 10 yrs." 4 = "10 yrs.; less than 15 yrs." 5 = "15 years or more" 9 = "Unknown" ; VALUE citizenp (default=32) 1 = "Yes; citizen of the United States" 2 = "No; not a citizen of the United States" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE headst (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE headstva (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not Ascertained" 9 = "Don't know" ; VALUE educ (default=32) 00 = "Never attended/ kindergarten only" 12 = "12th grade; no diploma" 13 = "HIGH SCHOOL GRADUATE" 14 = "GED or equivalent" 15 = "Some college; no degree" 16 = "AA degree: technical or vocational" 17 = "AA degree: academic program" 18 = "Bachelor's degree (BA; AB; BS; BBA)" 19 = "Master's degree (MA; MS; MEng; MEd; MBA)" 20 = "Professional degree (MD; DDS; DVM; JD)" 21 = "Doctoral degree (PhD; EdD)" 96 = "Child under 5 years old" 97 = "Refused" 98 = "Not Ascertained" 99 = "Don't know" ; VALUE educ_r1l (default=32) 01 = "Less/equal to 8th grade" 02 = "9-12th grade; no high school diploma" 03 = "High school graduate" 04 = "GED recipient" 05 = "Some college; no degree" 06 = "AA degree; technical or vocational" 07 = "AA degree; academic program" 08 = "Bachelor's degree (BA; BS; AB; BBA)" 09 = "Master's; professional; or doctoral degree" 96 = "Child under 5 years of age" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE miltryds (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE doinglwa (default=32) 1 = "Working for pay at a job or business" 2 = "With a job or business but not at work" 3 = "Looking for work" 4 = "Working; but not for pay; at a job or business" 5 = "Not working and not looking for work" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whynowka (default=32) 01 = "Taking care of house or family" 02 = "Going to school" 03 = "Retired" 04 = "On a planned vacation from work" 05 = "On family or maternity leave" 06 = "Temporarily unable to work for health reasons" 07 = "On layoff" 08 = "Disabled" 09 = "Have job/contract; off-season" 10 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE wrkhrs (default=32) 95 = "95+ hours" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE wrkftall (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE wrklyr1l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE wrkmyr (default=32) 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE majr_act (default=32) 1 = "Working at a job or business" 2 = "Keeping house" 3 = "Going to school" 4 = "Something else" 5 = "Unknown" ; VALUE ernyr_p (default=32) 01 = "$01-$4999" 02 = "$5000-$9999" 03 = "$10000-$14999" 04 = "$15000-$19999" 05 = "$20000-$24999" 06 = "$25000-$34999" 07 = "$35000-$44999" 08 = "$45000-$54999" 09 = "$55000-$64999" 10 = "$65000-$74999" 11 = "$75000 and over" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE hiempof (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE psal (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pseinc (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pssrr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pssrrdb (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pssrrd (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ppens (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE popens (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pssi (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pssid (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ptanf (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE powben (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pintrstr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pdivd (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pchldsp (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pincot (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE incgrp (default=32) 01 = "0-$4999" 02 = "$5000-$9999" 03 = "$10000-$14999" 04 = "$15000-$19999" 05 = "$20000-$24999" 06 = "$25000-$34999" 07 = "$35000-$44999" 08 = "$45000-$54999" 09 = "$55000-$64999" 10 = "$65000-$74999" 11 = "$75000 and over" 12 = "$20000 or more (no detail)" 13 = "Less than $20000 (no detail)" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE ab_bl20k (default=32) 1 = "$20;000 or more" 2 = "Less than $20;000" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE rat_cat (default=32) 01 = "Under .50" 02 = ".50 to .74" 03 = ".75 to .99" 04 = "1.00 to 1.24" 05 = "1.25 to 1.49" 06 = "1.50 to 1.74" 07 = "1.75 to 1.99" 08 = "2.00 to 2.49" 09 = "2.50 to 2.99" 10 = "3.00 to 3.49" 11 = "3.50 to 3.99" 12 = "4.00 to 4.49" 13 = "4.50 to 4.99" 14 = "5.00 and over" 96 = "Undefinable" 99 = "Unknown" ; VALUE houseown (default=32) 1 = "Owned or being bought" 2 = "Rented" 3 = "Other arrangement" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE fgah (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pssapl (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE psdapl (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE tanfmyr (default=32) 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE pfstp (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE fstpmyr (default=32) 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE eligpwic (default=32) 0 = "No WIC age-eligible family members" 1 = "At least 1 WIC age-eligible family member" ; VALUE pwic (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE wic_flag (default=32) 0 = "Person not age-eligible" 1 = "Person age-eligible" ; proc print data=library.nhis2001_personsx (obs=6); FORMAT rectype rectype. srvy_yr srvy_yr. intv_qrt intv_qrt. sex sex. age_p age_p. r_age1 r_age1l. r_age2 r_age2l. dob_m $dob_m. dob_y_p $dob_y_p. origin_i origin_i. origimpt origimpt. hispan_i hispan_i. hispimpt hispimpt. rcdt1p_i rcdt1p_i. rc_smp_i rc_smp_i. racerp_i racerp_i. raceimpt raceimpt. mracrp_i mracrp_i. mracbp_i mracbp_i. racrec_i racrec_i. hiscod_i hiscod_i. erimpflg erimpflg. r_maritl r_maritl. cohab1 cohab1l. cohab2 cohab2l. lg_mstat lg_mstat. cdcmstat cdcmstat. rrp rrp. hh_ref $hh_ref. hhreflg $hhreflg. frrp frrp. fm_ref $fm_ref. fmreflg $fmreflg. fm_resp fm_resp. fmrpflg $fmrpflg. sib_deg sib_deg. mother $mother. mom_deg mom_deg. father $father. dad_deg dad_deg. guard $guard. parents parents. mom_ed mom_ed. dad_ed dad_ed. fm_type fm_type. nowaf nowaf. astatflg astatflg. cstatflg cstatflg. immunflg immunflg. region region. msasizep msasizep. plaplylm plaplylm. plaplyun plaplyun. pspedeis pspedeis. pspedem pspedem. plaadl plaadl. labath labath. ladress ladress. laeat laeat. labed labed. latoilt latoilt. lahome lahome. plaiadl plaiadl. plawknow plawknow. plawklim plawklim. plawalk plawalk. plaremem plaremem. plimany plimany. la1ar la1ar. lahcc1 lahcc1l. lhccln1 lhccln1l. lhcclt1 lhcclt1l. lhccly1 lhccly1l. lahcc2 lahcc2l. lhccln2 lhccln2l. lhcclt2 lhcclt2l. lhccly2 lhccly2l. lahcc3 lahcc3l. lhccln3 lhccln3l. lhcclt3 lhcclt3l. lhccly3 lhccly3l. lahcc4 lahcc4l. lhccln4 lhccln4l. lhcclt4 lhcclt4l. lhccly4 lhccly4l. lahcc5 lahcc5l. lhccln5 lhccln5l. lhcclt5 lhcclt5l. lhccly5 lhccly5l. lahcc6 lahcc6l. lhccln6 lhccln6l. lhcclt6 lhcclt6l. lhccly6 lhccly6l. lahcc7 lahcc7l. lhccln7 lhccln7l. lhcclt7 lhcclt7l. lhccly7 lhccly7l. lahcc8 lahcc8l. lhccln8 lhccln8l. lhcclt8 lhcclt8l. lhccly8 lhccly8l. lahcc9 lahcc9l. lhccln9 lhccln9l. lhcclt9 lhcclt9l. lhccly9 lhccly9l. lahcc10 lahcc10l. lhccln10 lhccln1j. lhcclt10 lhcclt1j. lhccly10 lhccly1j. lahcc11 lahcc11l. lhccln11 lhccln1a. lhcclt11 lhcclt1a. lhccly11 lhccly1a. lahcc12 lahcc12l. lhccln12 lhccln1b. lhcclt12 lhcclt1b. lhccly12 lhccly1b. lahcc13 lahcc13l. lhccln13 lhccln1c. lhcclt13 lhcclt1c. lhccly13 lhccly1c. lahcc90 lahcc90l. lhccln90 lhccln9j. lhcclt90 lhcclt9j. lhccly90 lhccly9j. lahcc91 lahcc91l. lhccln91 lhccln9a. lhcclt91 lhcclt9a. lhccly91 lhccly9a. lahca1 lahca1l. lhcaln1 lhcaln1l. lhcalt1 lhcalt1l. lhcaly1 lhcaly1l. lahca2 lahca2l. lhcaln2 lhcaln2l. lhcalt2 lhcalt2l. lhcaly2 lhcaly2l. lahca3 lahca3l. lhcaln3 lhcaln3l. lhcalt3 lhcalt3l. lhcaly3 lhcaly3l. lahca4 lahca4l. lhcaln4 lhcaln4l. lhcalt4 lhcalt4l. lhcaly4 lhcaly4l. lahca5 lahca5l. lhcaln5 lhcaln5l. lhcalt5 lhcalt5l. lhcaly5 lhcaly5l. lahca6 lahca6l. lhcaln6 lhcaln6l. lhcalt6 lhcalt6l. lhcaly6 lhcaly6l. lahca7 lahca7l. lhcaln7 lhcaln7l. lhcalt7 lhcalt7l. lhcaly7 lhcaly7l. lahca8 lahca8l. lhcaln8 lhcaln8l. lhcalt8 lhcalt8l. lhcaly8 lhcaly8l. lahca9 lahca9l. lhcaln9 lhcaln9l. lhcalt9 lhcalt9l. lhcaly9 lhcaly9l. lahca10 lahca10l. lhcaln10 lhcaln1j. lhcalt10 lhcalt1j. lhcaly10 lhcaly1j. lahca11 lahca11l. lhcaln11 lhcaln1a. lhcalt11 lhcalt1a. lhcaly11 lhcaly1a. lahca12 lahca12l. lhcaln12 lhcaln1b. lhcalt12 lhcalt1b. lhcaly12 lhcaly1b. lahca13 lahca13l. lhcaln13 lhcaln1c. lhcalt13 lhcalt1c. lhcaly13 lhcaly1c. lahca14 lahca14l. lhcaln14 lhcaln1d. lhcalt14 lhcalt1d. lhcaly14 lhcaly1d. lahca15 lahca15l. lhcaln15 lhcaln1e. lhcalt15 lhcalt1e. lhcaly15 lhcaly1e. lahca16 lahca16l. lhcaln16 lhcaln1f. lhcalt16 lhcalt1f. lhcaly16 lhcaly1f. lahca17 lahca17l. lhcaln17 lhcaln1g. lhcalt17 lhcalt1g. lhcaly17 lhcaly1g. lahca18 lahca18l. lhcaln18 lhcaln1h. lhcalt18 lhcalt1h. lhcaly18 lhcaly1h. lahca19 lahca19l. lhcaln19 lhcaln1i. lhcalt19 lhcalt1i. lhcaly19 lhcaly1i. lahca20 lahca20l. lhcaln20 lhcaln2j. lhcalt20 lhcalt2j. lhcaly20 lhcaly2j. lahca21 lahca21l. lhcaln21 lhcaln2a. lhcalt21 lhcalt2a. lhcaly21 lhcaly2a. lahca22 lahca22l. lhcaln22 lhcaln2b. lhcalt22 lhcalt2b. lhcaly22 lhcaly2b. lahca23 lahca23l. lhcaln23 lhcaln2c. lhcalt23 lhcalt2c. lhcaly23 lhcaly2c. lahca24 lahca24l. lhcaln24 lhcaln2d. lhcalt24 lhcalt2d. lhcaly24 lhcaly2d. lahca25 lahca25l. lhcaln25 lhcaln2e. lhcalt25 lhcalt2e. lhcaly25 lhcaly2e. lahca26 lahca26l. lhcaln26 lhcaln2f. lhcalt26 lhcalt2f. lhcaly26 lhcaly2f. lahca27 lahca27l. lhcaln27 lhcaln2g. lhcalt27 lhcalt2g. lhcaly27 lhcaly2g. lahca28 lahca28l. lhcaln28 lhcaln2h. lhcalt28 lhcalt2h. lhcaly28 lhcaly2h. lahca29 lahca29l. lhcaln29 lhcaln2i. lhcalt29 lhcalt2i. lhcaly29 lhcaly2i. lahca30 lahca30l. lhcaln30 lhcaln3j. lhcalt30 lhcalt3j. lhcaly30 lhcaly3j. lahca31 lahca31l. lhcaln31 lhcaln3a. lhcalt31 lhcalt3a. lhcaly31 lhcaly3a. lahca32 lahca32l. lhcaln32 lhcaln3b. lhcalt32 lhcalt3b. lhcaly32 lhcaly3b. lahca33 lahca33l. lhcaln33 lhcaln3c. lhcalt33 lhcalt3c. lhcaly33 lhcaly3c. lahca34 lahca34l. lhcaln34 lhcaln3d. lhcalt34 lhcalt3d. lhcaly34 lhcaly3d. lahca90 lahca90l. lhcaln90 lhcaln9j. lhcalt90 lhcalt9j. lhcaly90 lhcaly9j. lahca91 lahca91l. lhcaln91 lhcaln9a. lhcalt91 lhcalt9a. lhcaly91 lhcaly9a. lacntr1 lacntr1l. lacntr2 lacntr2l. lacntr3 lacntr3l. lacntr4 lacntr4l. lacntr5 lacntr5l. lacntr6 lacntr6l. lacntr7 lacntr7l. lacntr8 lacntr8l. lacntr9 lacntr9l. lacntr10 lacntr1j. lacntr11 lacntr1a. lacntr12 lacntr1b. lacntr13 lacntr1c. lacntr90 lacntr9j. lacntr91 lacntr9a. laantr1 laantr1l. laantr2 laantr2l. laantr3 laantr3l. laantr4 laantr4l. laantr5 laantr5l. laantr6 laantr6l. laantr7 laantr7l. laantr8 laantr8l. laantr9 laantr9l. laantr10 laantr1j. laantr11 laantr1a. laantr12 laantr1b. laantr13 laantr1c. laantr14 laantr1d. laantr15 laantr1e. laantr16 laantr1f. laantr17 laantr1g. laantr18 laantr1h. laantr19 laantr1i. laantr20 laantr2j. laantr21 laantr2a. laantr22 laantr2b. laantr23 laantr2c. laantr24 laantr2d. laantr25 laantr2e. laantr26 laantr2f. laantr27 laantr2g. laantr28 laantr2h. laantr29 laantr2i. laantr30 laantr3j. laantr31 laantr3a. laantr32 laantr3b. laantr33 laantr3c. laantr34 laantr3d. laantr90 laantr9j. laantr91 laantr9a. lccndr1 lccndr1l. lccndr2 lccndr2l. lccndr3 lccndr3l. lccndr4 lccndr4l. lccndr5 lccndr5l. lccndr6 lccndr6l. lccndr7 lccndr7l. lccndr8 lccndr8l. lccndr9 lccndr9l. lccndr10 lccndr1j. lccndr11 lccndr1a. lccndr12 lccndr1b. lccndr13 lccndr1c. lccndr90 lccndr9j. lccndr91 lccndr9a. lacndr1 lacndr1l. lacndr2 lacndr2l. lacndr3 lacndr3l. lacndr4 lacndr4l. lacndr5 lacndr5l. lacndr6 lacndr6l. lacndr7 lacndr7l. lacndr8 lacndr8l. lacndr9 lacndr9l. lacndr10 lacndr1j. lacndr11 lacndr1a. lacndr12 lacndr1b. lacndr13 lacndr1c. lacndr14 lacndr1d. lacndr15 lacndr1e. lacndr16 lacndr1f. lacndr17 lacndr1g. lacndr18 lacndr1h. lacndr19 lacndr1i. lacndr20 lacndr2j. lacndr21 lacndr2a. lacndr22 lacndr2b. lacndr23 lacndr2c. lacndr24 lacndr2d. lacndr25 lacndr2e. lacndr26 lacndr2f. lacndr27 lacndr2g. lacndr28 lacndr2h. lacndr29 lacndr2i. lacndr30 lacndr3j. lacndr31 lacndr3a. lacndr32 lacndr3b. lacndr33 lacndr3c. lacndr34 lacndr3d. lacndr90 lacndr9j. lacndr91 lacndr9a. lcondrt lcondrt. lachronr lachronr. phstat phstat. pdmed12m pdmed12m. pnmed12m pnmed12m. homewho homewho. adaywho adaywho. astlwho astlwho. hospwho hospwho. nurswho nurswho. phospyr phospyr. hospno hospno. hpnite hpnite. phchm2w phchm2w. phchmn2w phchmn2w. phcph2wr phcph2wr. phcphn2w phcphn2w. phcdv2w phcdv2w. phcdvn2w phcdvn2w. p10dvyr p10dvyr. hikinda hikinda. hikindb hikindb. hikindc hikindc. hikindd hikindd. hikinde hikinde. hikindf hikindf. hikindg hikindg. hikindh hikindh. hikindi hikindi. hikindj hikindj. hikindk hikindk. hikindl hikindl. hikindm hikindm. hikindn hikindn. medicare medicare. mcpart mcpart. mcchoice mcchoice. mchmo mchmo. mcname mcname. mcref mcref. mcpaypre mcpaypre. medicaid medicaid. machmd machmd. mapcmd mapcmd. maref maref. single single. sstypea sstypea. sstypeb sstypeb. sstypec sstypec. sstyped sstyped. sstypee sstypee. sstypef sstypef. sstypeg sstypeg. sstypeh sstypeh. sstypei sstypei. sstypej sstypej. sstypek sstypek. sstypel sstypel. private private. hitype1 hitype1l. whonam1 whonam1l. plnwrk1 plnwrk1l. plnpay11 plnpay1a. plnpay21 plnpay2a. plnpay31 plnpay3a. plnpay41 plnpay4a. plnpay51 plnpay5a. plnpay61 plnpay6a. plnpay71 plnpay7a. hicostr1 hicostra. plnmgd1 plnmgd1l. mgchmd1 mgchmd1l. mgprmd1 mgprmd1l. mgpymd1 mgpymd1l. mgpref1 mgpref1l. hitype2 hitype2l. whonam2 whonam2l. plnwrk2 plnwrk2l. plnpay12 plnpay1b. plnpay22 plnpay2b. plnpay32 plnpay3b. plnpay42 plnpay4b. plnpay52 plnpay5b. plnpay62 plnpay6b. plnpay72 plnpay7b. hicostr2 hicostrb. plnmgd2 plnmgd2l. mgchmd2 mgchmd2l. mgprmd2 mgprmd2l. mgpymd2 mgpymd2l. mgpref2 mgpref2l. hitype3 hitype3l. whonam3 whonam3l. plnwrk3 plnwrk3l. plnpay13 plnpay1c. plnpay23 plnpay2c. plnpay33 plnpay3c. plnpay43 plnpay4c. plnpay53 plnpay5c. plnpay63 plnpay6c. plnpay73 plnpay7c. hicostr3 hicostrc. plnmgd3 plnmgd3l. mgchmd3 mgchmd3l. mgprmd3 mgprmd3l. mgpymd3 mgpymd3l. mgpref3 mgpref3l. hitype4 hitype4l. whonam4 whonam4l. plnwrk4 plnwrk4l. plnpay14 plnpay1d. plnpay24 plnpay2d. plnpay34 plnpay3d. plnpay44 plnpay4d. plnpay54 plnpay5d. plnpay64 plnpay6d. plnpay74 plnpay7d. hicostr4 hicostrd. plnmgd4 plnmgd4l. mgchmd4 mgchmd4l. mgprmd4 mgprmd4l. mgpymd4 mgpymd4l. mgpref4 mgpref4l. ihs ihs. military military. chip chip. otherpub otherpub. othergov othergov. notcov notcov. hilast hilast. histop1 histop1l. histop2 histop2l. histop3 histop3l. histop4 histop4l. histop5 histop5l. histop6 histop6l. histop7 histop7l. histop8 histop8l. histop9 histop9l. histop10 histop1j. histop11 histop1a. histop12 histop1b. histop13 histop1c. histop14 histop1d. histop15 histop1e. hinotyr hinotyr. hinotmyr hinotmyr. hcspfyr hcspfyr. regionbr regionbr. usbrth_p usbrth_p. yrsinus yrsinus. citizenp citizenp. headst headst. headstv1 headstva. educ educ. educ_r1 educ_r1l. miltryds miltryds. doinglw1 doinglwa. whynowk1 whynowka. wrkhrs wrkhrs. wrkftall wrkftall. wrklyr1 wrklyr1l. wrkmyr wrkmyr. majr_act majr_act. ernyr_p ernyr_p. hiempof hiempof. psal psal. pseinc pseinc. pssrr pssrr. pssrrdb pssrrdb. pssrrd pssrrd. ppens ppens. popens popens. pssi pssi. pssid pssid. ptanf ptanf. powben powben. pintrstr pintrstr. pdivd pdivd. pchldsp pchldsp. pincot pincot. incgrp incgrp. ab_bl20k ab_bl20k. rat_cat rat_cat. houseown houseown. fgah fgah. pssapl pssapl. psdapl psdapl. tanfmyr tanfmyr. pfstp pfstp. fstpmyr fstpmyr. eligpwic eligpwic. pwic pwic. wic_flag wic_flag. ; proc contents data=library.nhis2001_personsx; /* Copyright 2007 shared by the National Bureau of Economic Research and Jean Roth National Bureau of Economic Research. 1050 Massachusetts Avenue Cambridge, MA 02138 jroth@nber.org This program and all programs referenced in it are free software. You can redistribute the program or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */