/*------------------------------------------------------------------------------------*/ /*by Jean Roth Wed Jun 9 16:37:19 EDT 2004 This program reads the 1986 SIPP Full Panel Data File NOTE: This program is distributed under the GNU GPL. See end of this file and http://www.gnu.org/licenses/ for details. Please report errors to jroth@nber.org Six steps: (1) Uncomment the 'options compress=yes' statement if desired to save space (2) Uncomment 'LENGTH' statement if desired to save space (3) Specify output directories in 'libname' statements (4) Specify the input file name/location in the 'filename' statement (5) On a PC, use backslashes as in C:\ (6) Read in the compressed or uncompressed raw data file. See the 'filename' and 'INFILE' statements. Other changes may be user and platform specific. NOTE: A value of -1 (or -1/# of implied decimals) indicates 'Not in Universe' */ /*------------------------------------------------------------------------------------*/ *options obs=100; *options compress=yes; *Choose compress=yes to save space ; *Choose compress=no if converting to another package using transfer software ; *options pagesize=59 linesize=72; /*------------------------------------------------------------------------------------*/ libname library './'; *See the codebook for more detail; PROC FORMAT cntlout=library.fsp86fp; /* The PROC FORMAT statement will store the formats in a sas data set called fsip86fp To use the stored formats in a subsequent program, include something like this: proc format cntlin=library.fsp86fp; PROC freq; tables pesex ; format pesex P135L.; For more information, consult the SAS Procedures Guide section of PROC FORMAT */ ; VALUE PP_INTV (default=32) 0 = "Not applicable, children" 1 = "Interview, self" 2 = "Interview, proxy" 3 = "Noninterview - type Z refusal" 4 = "Noninterview - type Z other" ; VALUE PP_MIS (default=32) 0 = "Not matched or not in sample" 1 = "Interview" 2 = "Noninterview" ; VALUE REASLEF (default=32) 0 = "Not applicable or not" 1 = "Left - deceased" 2 = "Left - institutionalized" 3 = "Left - living in armed forces" 4 = "Left - moved outside of" 5 = "Left - separation or divorce" 6 = "Left - person #201 or greater" 7 = "Left - other" 8 = "Entered merged household" 9 = "Interviewed in previous wave" ; VALUE HHINST (default=32) 0 = "Not defined for this wave" 1 = "Interviewed" 2 = "No one home" 3 = "Temporarily absent" 4 = "Refused" 5 = "Unable to locate" 6 = "Other" 23 = "Entire household out-of-scope" 24 = "Moved, address unknown" 25 = "Moved within country beyond" 26 = "All sample persons relisted" ; VALUE SU_RGC (default=32) 0 = "Not applicable for coverage" ; VALUE LGTHHT (default=32) 0 = "NA, not in a household" 1 = "Married couple household" 2 = "Other family household, male" 3 = "Other family household," 4 = "Nonfamily household, male" 5 = "Nonfamily household, female" ; VALUE LGTKEY (default=32) 0 = "Not a key person" ; VALUE LGTOTH (default=32) 0 = "Not an 'other' person in an" ; VALUE SEX (default=32) 1 = "Male" 2 = "Female" ; VALUE RACE (default=32) 1 = "White" 2 = "Black" 3 = "American Indian, Eskimo or" 4 = "Asian or Pacific Islander" ; VALUE ETHNICTY (default=32) 1 = "German" 2 = "English" 3 = "Irish" 4 = "French" 5 = "Italian" 6 = "Scotish" 7 = "Polish" 8 = "Dutch" 9 = "Swedish" 10 = "Norwegian" 11 = "Russian" 12 = "Ukranian" 13 = "Welsh" 14 = "Mexican-American" 15 = "Chicano" 16 = "Mexican" 17 = "Puerto Rican" 18 = "Cuban" 19 = "Central or South American" 20 = "Other Spanish" 21 = "Afro-American, Black or Negro" 30 = "Another group not listed" 39 = "Don't know" ; VALUE RRP (default=32) 0 = "Not a sample person, nonmatch" 1 = "Household reference person," 2 = "Household reference person" 3 = "Spouse of household reference" 4 = "Child of household reference" 5 = "Other relative of household" 6 = "Non-relative of household" 7 = "Non-relative of household" ; VALUE AGE (default=32) 0 = "Less than 1 year or not a" 85 = "85 years or more" ; VALUE MS (default=32) 0 = "Not a sample person, nonmatch" 1 = "Married, spouse present" 2 = "Married, spouse absent" 3 = "Widowed" 4 = "Divorced" 5 = "Separated" 6 = "Never married" ; VALUE FAMTYP (default=32) 0 = "Primary family or not a" 1 = "Secondary individual, not a" 2 = "Unrelated sub, secondary" 3 = "Related subfamily" 4 = "Primary individual" ; VALUE FAMREL (default=32) 0 = "Not applicable, not in" 1 = "Reference person of family" 2 = "Spouse of family reference" 3 = "Child of family reference" ; VALUE FAMNUM (default=32) 0 = "Not applicable, not in" ; VALUE PNSP (default=32) 0 = "Not a sample person, nonmatch" 999 = "Not applicable" ; VALUE ENT_SP (default=32) 0 = "Not in sample or nonmatch" 99 = "Not applicable" ; VALUE PNPT (default=32) 0 = "Not a sample person, nonmatch" 999 = "Not applicable" ; VALUE ENT_PT (default=32) 0 = "Not in sample or nonmatch" 99 = "Not applicable" ; VALUE HIGRADE (default=32) 0 = "Not applicable if under 15," ; VALUE GRD_CMP (default=32) 0 = "Not applicable, not in" 1 = "Yes" 2 = "No" ; VALUE U_VET (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE IN_AF (default=32) 0 = "Not applicable if under 15," 1 = "Yes" 2 = "No" ; VALUE USRV1L (default=32) 0 = "Not applicable, not in" 1 = "Vietnam era, Aug'64-Apr'75" 2 = "Korean conflict" 3 = "World War II, Sept'40-July'47" 4 = "World War I, Apr'17-Nov'18" 5 = "May 1975 to August 1980" 6 = "September 1980 or later" 7 = "Other service" 9 = "Not answered" ; VALUE USRV2L (default=32) 0 = "Not applicable, not in" 1 = "Vietnam era, Aug'64-Apr'75" 2 = "Korean conflict" 3 = "World War II, Sept'40-July'47" 4 = "World War I, Apr'17-Nov'18" 5 = "May 1975 to August 1980" 6 = "September 1980 or later" 7 = "Other service" 9 = "Not answered" ; VALUE USRV3L (default=32) 0 = "Not applicable, not in" 1 = "Vietnam era, Aug'64-Apr'75" 2 = "Korean conflict" 3 = "World War II, Sept'40-July'47" 4 = "World War I, Apr'17-Nov'18" 5 = "May 1975 to August 1980" 6 = "September 1980 or later" 7 = "Other service" 9 = "Not answered" ; VALUE BRTHMN (default=32) -9 = "Not answered" ; VALUE BRTHYR (default=32) -9 = "Not answered" 1902 = "1902 or earlier" ; VALUE U_PNGD (default=32) -9 = "Not answered" 0 = "Not in universe, not in" 999 = "Not applicable" ; VALUE ENTID_G (default=32) 0 = "Not in universe, not in" 99 = "Not applicable" ; VALUE U_LVQT (default=32) 0 = "Not applicable, not in" 1 = "House, apartment, flat" 2 = "HU in nontransient hotel," 3 = "HU, permanent in transient" 4 = "HU in rooming house" 5 = "Mobile home or trailer with" 6 = "Mobile home or trailer with" 7 = "HU not specified above" 8 = "Quarters not hu in rooming or" 9 = "Unit not permanent in" 10 = "Unoccupied tent or trailer" 11 = "Other unit not specified above" ; VALUE TENURE (default=32) 0 = "Not in sample, nonmatch" 1 = "Owned or being bought by" 2 = "Rented for cash" 3 = "Occupied without payment of" ; VALUE PUBHS (default=32) 0 = "Not applicable, not in" 1 = "Yes" 2 = "No" ; VALUE LOW_RE (default=32) 0 = "Not applicable, not in" 1 = "Yes" 2 = "No" ; VALUE ENRGY_Y (default=32) 0 = "Not in universe, not in" 1 = "Yes" 2 = "No" ; VALUE H_ENRGY (default=32) 0 = "Not applicable, not in sample" 1 = "Checks sent to household" 2 = "Coupons or vouchers sent to" 3 = "Payments sent elsewhere" 4 = "Checks and coupons or" 5 = "Checks sent to household and" 6 = "Coupons or voucher sent to" 7 = "All three types of assistance" ; VALUE H_4824L (default=32) 0 = "Not in universe, not in" ; VALUE H_LUNCH (default=32) 0 = "Not applicable, not in sample" 1 = "Free" 2 = "Reduced-price" 3 = "Both" ; VALUE H_4834L (default=32) 0 = "Not in universe, not in" ; VALUE H_BREAK (default=32) 0 = "Not applicable, not in sample" 1 = "Free" 2 = "Reduced-price" 3 = "Both" ; VALUE H_4830L (default=32) 0 = "Not in universe, not in" ; VALUE PUBRNTYN (default=32) 0 = "Not in sample in wave 1" 1 = "Yes" 2 = "No" ; VALUE PUBRNAMT (default=32) 0 = "Not applicable" ; VALUE UTLPAYYN (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE FULLRENT (default=32) 0 = "Not applicable" ; VALUE STATE (default=32) 0 = "Nonmatch" 1 = "Alabama" 4 = "Arizona" 5 = "Arkansas" 6 = "California" 8 = "Colorado" 9 = "Connecticut" 10 = "Delaware" 11 = "District of Columbia" 12 = "Florida" 13 = "Georgia" 15 = "Hawaii" 17 = "Illinois" 18 = "Indiana" 20 = "Kansas" 21 = "Kentucky" 22 = "Louisiana" 24 = "Maryland" 25 = "Massachusetts" 26 = "Michigan" 27 = "Minnesota" 28 = "Mississippi" 29 = "Missouri" 31 = "Nebraska" 32 = "Nevada" 33 = "New Hampshire" 34 = "New Jersey" 35 = "New Mexico" 36 = "New York" 37 = "North Carolina" 39 = "Ohio" 40 = "Oklahoma" 41 = "Oregon" 42 = "Pennsylvania" 44 = "Rhode Island" 45 = "South Carolina" 47 = "Tennessee" 48 = "Texas" 49 = "Utah" 51 = "Virginia" 53 = "Washington" 54 = "West Virginia" 55 = "Wisconsin" 61 = "Maine, Vermont" 62 = "Iowa, North Dakota, South" 63 = "Alaska, Idaho, Montana," ; VALUE SC1332L (default=32) -1 = "Don't know" 0 = "Not in universe, not in" 1 = "Less than 6 months" 2 = "6 to 23 months" 3 = "2 to 19 years" 4 = "20 or more years" ; VALUE SC1334L (default=32) -1 = "Don't know" 0 = "Not in universe, not in" 1 = "Yes" 2 = "No" ; VALUE SC1336L (default=32) -2 = "Refused" -1 = "Don't know" 0 = "Not in universe, not in" 1 = "1-10%" 2 = "11-29%" 3 = "30-49%" 4 = "50%" 5 = "51-89%" 6 = "90-99%" 7 = "100%" 101 = "No rating" ; VALUE SC1346L (default=32) -1 = "Don't know" 0 = "Not in universe, not in" 1 = "Retired" 2 = "Disabled" 3 = "Widowed or surviving child" 4 = "Spouse or dependent child" 5 = "Some other reason" ; VALUE SC1348L (default=32) -1 = "Don't know" 0 = "Not in universe, not in" 1 = "Retired" 2 = "Disabled" 3 = "Widow,ed or surviving child" 4 = "Spouse or dependent child" 5 = "No other reason" ; VALUE SC1360L (default=32) 0 = "Not in universe, not in" 1 = "Yes" 2 = "No" ; VALUE SC1418L (default=32) 0 = "Not in universe, not in" 1 = "Widowed" 2 = "Divorced" 3 = "Both widowed and divorced" 4 = "No" ; VALUE SC1456L (default=32) 0 = "Not in universe, not in" 1 = "Yes, in the service" 2 = "Yes, from service-related" 3 = "No" ; VALUE MEDCODE (default=32) 0 = "Not in universe" 1 = "Retired or disabled worker" 2 = "Spouse of retired or disabled" 3 = "Widow of retired or" 4 = "Adult disabled as a child" 5 = "Uninsured" 7 = "Other or invalid code" 8 = "Missing code" ; VALUE SC1468L (default=32) 0 = "Not in universe or" 1 = "Hospital only, Type A" 2 = "Medical only, Type B" 3 = "Both hospital and medical" 4 = "Card not available" ; VALUE SC1472L (default=32) -1 = "Don't know" 0 = "Not in universe" 1 = "Yes" 2 = "No" ; VALUE DISAB (default=32) 0 = "Not in universe, under 15" 1 = "Ever disabled marked on the" ; VALUE ATT_SCH (default=32) 0 = "Not in universe" 1 = "Yes, full-time" 2 = "Yes, part-time" 3 = "No - skip to SC1694" ; VALUE ENRL_M (default=32) 0 = "Not enrolled, not in" 1 = "Enrolled during that month" ; VALUE ED_LEVE (default=32) 0 = "Not in universe, not in" 1 = "Elementary grades 1-8" 2 = "High school grades 9-12" 3 = "College year 1" 4 = "College year 2" 5 = "College year 3" 6 = "College year 4" 7 = "College year 5" 8 = "College year 6" 9 = "Vocational school" 10 = "Technical school" 11 = "Business school" ; VALUE ED_FINA (default=32) 0 = "Not in universe" 1 = "Yes" 2 = "No" ; VALUE SC1672L (default=32) 0 = "Not marked as a kind of" 1 = "Marked as a kind of" ; VALUE SC1674L (default=32) 0 = "Not marked as a kind of" 1 = "Marked as a kind of" ; VALUE SC1676L (default=32) 0 = "Not marked as a kind of" 1 = "Marked as a kind of" ; VALUE SC1678L (default=32) 0 = "Not marked as a kind of" 1 = "Marked as a kind of" ; VALUE SC1680L (default=32) 0 = "Not marked as a kind of" 1 = "Marked as a kind of" ; VALUE SC1682L (default=32) 0 = "Not marked as a kind of" 1 = "Marked as a kind of" ; VALUE SC1684L (default=32) 0 = "Not marked as a kind of" 1 = "Marked as a kind of" ; VALUE SC1686L (default=32) 0 = "Not marked as a kind of" 1 = "Marked as a kind of" ; VALUE SC1688L (default=32) 0 = "Not marked as a kind of" 1 = "Marked as a kind of" ; VALUE SC1690L (default=32) 0 = "Not marked as a kind of" 1 = "Marked as a kind of" ; VALUE SC1692L (default=32) 0 = "Not marked as a kind of" 1 = "Marked as a kind of" ; VALUE SC1696L (default=32) 0 = "Not in universe" 1 = "Yes" 2 = "No" ; VALUE TELEPHON (default=32) 1 = "Telephone sample" 2 = "Personal visit" ; VALUE ESR (default=32) 0 = "Not applicable, not in" 1 = "With a job entire month," 2 = "With a job entire month," 3 = "With a job entire month," 4 = "With job one or more weeks," 5 = "With job one or more weeks," 6 = "No job during month, spent" 7 = "No job during month, spent" 8 = "No job during month, no time" ; VALUE WKSPER (default=32) 0 = "Not applicable, not in" 4 = "Four weeks" 5 = "Five weeks" ; VALUE WKSJB (default=32) 0 = "0 weeks or not applicable," 1 = "1 weeks" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks, only applicable for" ; VALUE MTHWOP (default=32) 0 = "0 weeks or not applicable," 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks, only applicable for" ; VALUE WEEKSL (default=32) 0 = "None or not applicable, not" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks, only applicable for" ; VALUE SC1230L (default=32) 0 = "Not in universe" ; VALUE WS1_EI (default=32) 0 = "Not in universe, not in" ; VALUE WS2_EI (default=32) 0 = "Not in universe, not in" ; VALUE WS1_CL (default=32) 0 = "Not in universe, not in" 1 = "A private company or" 2 = "Federal government, exclude" 3 = "State government" 4 = "Local government" 5 = "Armed Forces" 6 = "Unpaid in family business or" ; VALUE WS2_CL (default=32) 0 = "Not in universe, not in" 1 = "A private company or" 2 = "Federal government, exclude" 3 = "State government" 4 = "Local government" 5 = "Armed Forces" 6 = "Unpaid in family business or" ; VALUE WS1_WK (default=32) 0 = "None or not in universe if" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" ; VALUE WS2_WK (default=32) 0 = "None or not in universe if" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" ; VALUE W2024L (default=32) -3 = "None" 0 = "Not in universe, not in" ; VALUE W2124L (default=32) 0 = "Not in universe, not in" ; VALUE W2028L (default=32) 0 = "Not in universe, not in" ; VALUE W2128L (default=32) 0 = "Not in universe, not in" ; VALUE S2202L (default=32) 0 = "Not in universe, not in" ; VALUE S2302L (default=32) 0 = "Not in universe, not in" ; VALUE SE1_TY (default=32) 0 = "Not in universe, not in" 1 = "Sole proprietorship" 2 = "Partnership" 3 = "Corporation" ; VALUE SE2_TY (default=32) 0 = "Not in universe, not in" 1 = "Sole proprietorship" 2 = "Partnership" 3 = "Corporation" ; VALUE SE1_IN (default=32) 1 = "Agriculture, forestry," 2 = "Mining" 3 = "Construction" 4 = "Manufacturing-nondurable goods" 5 = "Manufacturing-durable goods" 6 = "Transportation, comm." 7 = "Wholesale trade-durable goods" 8 = "Wholesale trade-nondurable goods" 9 = "Retail trade" 10 = "Finance, insurance, r.estate" 11 = "Business and repair services" 12 = "Personal services" 13 = "Entertainment and rec. services" 14 = "Professional and rel. services" 15 = "Public administration" 16 = "Industry not reported" ; VALUE SE2_IN (default=32) 1 = "Agriculture, forestry," 2 = "Mining" 3 = "Construction" 4 = "Manufacturing-nondurable goods" 5 = "Manufacturing-durable goods" 6 = "Transportation, comm." 7 = "Wholesale trade-durable goods" 8 = "Wholesale trade-nondurable goods" 9 = "Retail trade" 10 = "Finance, insurance, r.estate" 11 = "Business and repair services" 12 = "Personal services" 13 = "Entertainment and rec. services" 14 = "Professional and rel. services" 15 = "Public administration" 16 = "Industry not reported" ; VALUE SE1_WK (default=32) 0 = "None, not in universe, not in" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" ; VALUE SE2_WK (default=32) 0 = "None, not in universe, not in" 1 = "1 week" 2 = "2 weeks" 3 = "3 weeks" 4 = "4 weeks" 5 = "5 weeks" ; VALUE S2212L (default=32) 0 = "Not in universe, not in" ; VALUE S2312L (default=32) 0 = "Not in universe, not in" ; VALUE G1SRC1L (default=32) 0 = "Not applicable, not in" 1 = "Social Security" 2 = "Railroad Retirement" 3 = "Federal Supplemental Security" 5 = "State unemployment" 6 = "Supplemental unemployment" 7 = "Other unemployment" 8 = "Veterans compensation or" 10 = "Workers compensation" 12 = "Employer or union temporary" 13 = "Payments from a sickness," 20 = "Aid to families with" 21 = "General assistance or general" 23 = "Foster child care payments" 24 = "Other welfare" 25 = "WIC" 27 = "Food stamps" 28 = "Child support payments" 29 = "Alimony payments" 30 = "Pension from company or union" 31 = "Federal civil service or" 32 = "U.S. military retirement pay" 34 = "State government pensions" 35 = "Local government pensions" 36 = "Income from paid up life" 37 = "Estates and trusts" 38 = "Other payments for" 40 = "GI bill education benefits" 41 = "Other VA educational" 50 = "Income assistance from a" 51 = "Money from relatives or" 52 = "Lump sum payments" 53 = "Income from roomers or" 54 = "National guard or reserve pay" 55 = "Incidental or casual earnings" 56 = "Other cash income not" 75 = "State SSI/black lung/state" ; VALUE G1SRC2L (default=32) 0 = "Not applicable, not in" 1 = "Social Security" 2 = "Railroad Retirement" 3 = "Federal Supplemental Security" 5 = "State unemployment" 6 = "Supplemental unemployment" 7 = "Other unemployment" 8 = "Veterans compensation or" 10 = "Workers compensation" 12 = "Employer or union temporary" 13 = "Payments from a sickness," 20 = "Aid to families with" 21 = "General assistance or general" 23 = "Foster child care payments" 24 = "Other welfare" 25 = "WIC" 27 = "Food stamps" 28 = "Child support payments" 29 = "Alimony payments" 30 = "Pension from company or union" 31 = "Federal civil service or" 32 = "U.S. military retirement pay" 34 = "State government pensions" 35 = "Local government pensions" 36 = "Income from paid up life" 37 = "Estates and trusts" 38 = "Other payments for" 40 = "GI bill education benefits" 41 = "Other VA educational" 50 = "Income assistance from a" 51 = "Money from relatives or" 52 = "Lump sum payments" 53 = "Income from roomers or" 54 = "National guard or reserve pay" 55 = "Incidental or casual earnings" 56 = "Other cash income not" 75 = "State SSI/black lung/state" ; VALUE G1SRC3L (default=32) 0 = "Not applicable, not in" 1 = "Social Security" 2 = "Railroad Retirement" 3 = "Federal Supplemental Security" 5 = "State unemployment" 6 = "Supplemental unemployment" 7 = "Other unemployment" 8 = "Veterans compensation or" 10 = "Workers compensation" 12 = "Employer or union temporary" 13 = "Payments from a sickness," 20 = "Aid to families with" 21 = "General assistance or general" 23 = "Foster child care payments" 24 = "Other welfare" 25 = "WIC" 27 = "Food stamps" 28 = "Child support payments" 29 = "Alimony payments" 30 = "Pension from company or union" 31 = "Federal civil service or" 32 = "U.S. military retirement pay" 34 = "State government pensions" 35 = "Local government pensions" 36 = "Income from paid up life" 37 = "Estates and trusts" 38 = "Other payments for" 40 = "GI bill education benefits" 41 = "Other VA educational" 50 = "Income assistance from a" 51 = "Money from relatives or" 52 = "Lump sum payments" 53 = "Income from roomers or" 54 = "National guard or reserve pay" 55 = "Incidental or casual earnings" 56 = "Other cash income not" 75 = "State SSI/black lung/state" ; VALUE G1SRC4L (default=32) 0 = "Not applicable, not in" 1 = "Social Security" 2 = "Railroad Retirement" 3 = "Federal Supplemental Security" 5 = "State unemployment" 6 = "Supplemental unemployment" 7 = "Other unemployment" 8 = "Veterans compensation or" 10 = "Workers compensation" 12 = "Employer or union temporary" 13 = "Payments from a sickness," 20 = "Aid to families with" 21 = "General assistance or general" 23 = "Foster child care payments" 24 = "Other welfare" 25 = "WIC" 27 = "Food stamps" 28 = "Child support payments" 29 = "Alimony payments" 30 = "Pension from company or union" 31 = "Federal civil service or" 32 = "U.S. military retirement pay" 34 = "State government pensions" 35 = "Local government pensions" 36 = "Income from paid up life" 37 = "Estates and trusts" 38 = "Other payments for" 40 = "GI bill education benefits" 41 = "Other VA educational" 50 = "Income assistance from a" 51 = "Money from relatives or" 52 = "Lump sum payments" 53 = "Income from roomers or" 54 = "National guard or reserve pay" 55 = "Incidental or casual earnings" 56 = "Other cash income not" 75 = "State SSI/black lung/state" ; VALUE G1SRC5L (default=32) 0 = "Not applicable, not in" 1 = "Social Security" 2 = "Railroad Retirement" 3 = "Federal Supplemental Security" 5 = "State unemployment" 6 = "Supplemental unemployment" 7 = "Other unemployment" 8 = "Veterans compensation or" 10 = "Workers compensation" 12 = "Employer or union temporary" 13 = "Payments from a sickness," 20 = "Aid to families with" 21 = "General assistance or general" 23 = "Foster child care payments" 24 = "Other welfare" 25 = "WIC" 27 = "Food stamps" 28 = "Child support payments" 29 = "Alimony payments" 30 = "Pension from company or union" 31 = "Federal civil service or" 32 = "U.S. military retirement pay" 34 = "State government pensions" 35 = "Local government pensions" 36 = "Income from paid up life" 37 = "Estates and trusts" 38 = "Other payments for" 40 = "GI bill education benefits" 41 = "Other VA educational" 50 = "Income assistance from a" 51 = "Money from relatives or" 52 = "Lump sum payments" 53 = "Income from roomers or" 54 = "National guard or reserve pay" 55 = "Incidental or casual earnings" 56 = "Other cash income not" 75 = "State SSI/black lung/state" ; VALUE G1SRC6L (default=32) 0 = "Not applicable, not in" 1 = "Social Security" 2 = "Railroad Retirement" 3 = "Federal Supplemental Security" 5 = "State unemployment" 6 = "Supplemental unemployment" 7 = "Other unemployment" 8 = "Veterans compensation or" 10 = "Workers compensation" 12 = "Employer or union temporary" 13 = "Payments from a sickness," 20 = "Aid to families with" 21 = "General assistance or general" 23 = "Foster child care payments" 24 = "Other welfare" 25 = "WIC" 27 = "Food stamps" 28 = "Child support payments" 29 = "Alimony payments" 30 = "Pension from company or union" 31 = "Federal civil service or" 32 = "U.S. military retirement pay" 34 = "State government pensions" 35 = "Local government pensions" 36 = "Income from paid up life" 37 = "Estates and trusts" 38 = "Other payments for" 40 = "GI bill education benefits" 41 = "Other VA educational" 50 = "Income assistance from a" 51 = "Money from relatives or" 52 = "Lump sum payments" 53 = "Income from roomers or" 54 = "National guard or reserve pay" 55 = "Incidental or casual earnings" 56 = "Other cash income not" 75 = "State SSI/black lung/state" ; VALUE G1SRC7L (default=32) 0 = "Not applicable, not in" 1 = "Social Security" 2 = "Railroad Retirement" 3 = "Federal Supplemental Security" 5 = "State unemployment" 6 = "Supplemental unemployment" 7 = "Other unemployment" 8 = "Veterans compensation or" 10 = "Workers compensation" 12 = "Employer or union temporary" 13 = "Payments from a sickness," 20 = "Aid to families with" 21 = "General assistance or general" 23 = "Foster child care payments" 24 = "Other welfare" 25 = "WIC" 27 = "Food stamps" 28 = "Child support payments" 29 = "Alimony payments" 30 = "Pension from company or union" 31 = "Federal civil service or" 32 = "U.S. military retirement pay" 34 = "State government pensions" 35 = "Local government pensions" 36 = "Income from paid up life" 37 = "Estates and trusts" 38 = "Other payments for" 40 = "GI bill education benefits" 41 = "Other VA educational" 50 = "Income assistance from a" 51 = "Money from relatives or" 52 = "Lump sum payments" 53 = "Income from roomers or" 54 = "National guard or reserve pay" 55 = "Incidental or casual earnings" 56 = "Other cash income not" 75 = "State SSI/black lung/state" ; VALUE G1SRC8L (default=32) 0 = "Not applicable, not in" 1 = "Social Security" 2 = "Railroad Retirement" 3 = "Federal Supplemental Security" 5 = "State unemployment" 6 = "Supplemental unemployment" 7 = "Other unemployment" 8 = "Veterans compensation or" 10 = "Workers compensation" 12 = "Employer or union temporary" 13 = "Payments from a sickness," 20 = "Aid to families with" 21 = "General assistance or general" 23 = "Foster child care payments" 24 = "Other welfare" 25 = "WIC" 27 = "Food stamps" 28 = "Child support payments" 29 = "Alimony payments" 30 = "Pension from company or union" 31 = "Federal civil service or" 32 = "U.S. military retirement pay" 34 = "State government pensions" 35 = "Local government pensions" 36 = "Income from paid up life" 37 = "Estates and trusts" 38 = "Other payments for" 40 = "GI bill education benefits" 41 = "Other VA educational" 50 = "Income assistance from a" 51 = "Money from relatives or" 52 = "Lump sum payments" 53 = "Income from roomers or" 54 = "National guard or reserve pay" 55 = "Incidental or casual earnings" 56 = "Other cash income not" 75 = "State SSI/black lung/state" ; VALUE G1SRC9L (default=32) 0 = "Not applicable, not in" 1 = "Social Security" 2 = "Railroad Retirement" 3 = "Federal Supplemental Security" 5 = "State unemployment" 6 = "Supplemental unemployment" 7 = "Other unemployment" 8 = "Veterans compensation or" 10 = "Workers compensation" 12 = "Employer or union temporary" 13 = "Payments from a sickness," 20 = "Aid to families with" 21 = "General assistance or general" 23 = "Foster child care payments" 24 = "Other welfare" 25 = "WIC" 27 = "Food stamps" 28 = "Child support payments" 29 = "Alimony payments" 30 = "Pension from company or union" 31 = "Federal civil service or" 32 = "U.S. military retirement pay" 34 = "State government pensions" 35 = "Local government pensions" 36 = "Income from paid up life" 37 = "Estates and trusts" 38 = "Other payments for" 40 = "GI bill education benefits" 41 = "Other VA educational" 50 = "Income assistance from a" 51 = "Money from relatives or" 52 = "Lump sum payments" 53 = "Income from roomers or" 54 = "National guard or reserve pay" 55 = "Incidental or casual earnings" 56 = "Other cash income not" 75 = "State SSI/black lung/state" ; VALUE G1SRC10L (default=32) 0 = "Not applicable, not in" 1 = "Social Security" 2 = "Railroad Retirement" 3 = "Federal Supplemental Security" 5 = "State unemployment" 6 = "Supplemental unemployment" 7 = "Other unemployment" 8 = "Veterans compensation or" 10 = "Workers compensation" 12 = "Employer or union temporary" 13 = "Payments from a sickness," 20 = "Aid to families with" 21 = "General assistance or general" 23 = "Foster child care payments" 24 = "Other welfare" 25 = "WIC" 27 = "Food stamps" 28 = "Child support payments" 29 = "Alimony payments" 30 = "Pension from company or union" 31 = "Federal civil service or" 32 = "U.S. military retirement pay" 34 = "State government pensions" 35 = "Local government pensions" 36 = "Income from paid up life" 37 = "Estates and trusts" 38 = "Other payments for" 40 = "GI bill education benefits" 41 = "Other VA educational" 50 = "Income assistance from a" 51 = "Money from relatives or" 52 = "Lump sum payments" 53 = "Income from roomers or" 54 = "National guard or reserve pay" 55 = "Incidental or casual earnings" 56 = "Other cash income not" 75 = "State SSI/black lung/state" ; VALUE SSRECIN (default=32) 0 = "Not in universe" 1 = "Adult benefits received in" 2 = "Only adult benefits received" 3 = "Only child benefits received" 4 = "Adult benefits received in" 5 = "Adult benefits received" ; VALUE RRRECIN (default=32) 0 = "Not in universe" 1 = "Adult benefits received in" 2 = "Only adult benefits received" 3 = "Only child benefits received" 4 = "Adult benefits received in" 5 = "Adult benefits received" ; VALUE VET3060L (default=32) -1 = "Don't know" 0 = "Not in universe or don't know" 1 = "Yes" 2 = "No" ; VALUE AST100L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE AST101L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE AST102L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE AST103L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE AST104L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE AST105L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE AST106L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "No" ; VALUE AST107L (default=32) 0 = "Not applicable" 1 = "Yes" 2 = "NO" ; VALUE AST110L (default=32) 0 = "Not Applicable" 1 = "Yes" 2 = "No" ; VALUE RR_PID (default=32) 0 = "Not in universe, not in" ; VALUE VA_PID (default=32) 0 = "Not in universe, not in" ; VALUE AFDCPI (default=32) 0 = "Not in universe, not in" ; VALUE GA_PID (default=32) 0 = "Not in universe, not in" ; VALUE FOSTPI (default=32) 0 = "Not in universe, not in" ; VALUE OTH_PI (default=32) 0 = "Not in universe, not in" ; VALUE WIC_PI (default=32) 0 = "Not in universe, not in" ; VALUE FS_PID (default=32) 0 = "Not in universe, not in" ; VALUE WS1_IM (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE WS2_IM (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE SE1_IM (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE SE2_IM (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G1_I1L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G1_I2L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G1_I3L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G1_I4L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G11_IM (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G1_I6L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G1_I7L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G1_I8L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G1_I9L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G1_I10L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G2I100L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G2I104L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G2I110L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G2I120L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G2I130L (default=32) 0 = "Not imputed" 1 = "Imputed" ; VALUE G2I140L (default=32) 0 = "Not imputed" 1 = "Imputed" ; filename raw pipe "unzip -p /homes/data/sipp/1986/sipp86fp.zip "; data library.sip86fp; missing A; infile raw lrecl = 20000 missover ; * To read in uncompressed file, uncomment INFILE & comment filename & infile lines; * On a PC, you may need to change the direction of the slashes as in C:\; *INFILE '/homes/data/sipp/1986/sipp86fp.dat' LRECL=20000 PAD END=EOF; *LENGTH SUSEQNUM $6 SU_ID $9 PP_ENTRY $2 HH_ADD01 $2 HH_ADD02 $2 HH_ADD03 $2 HH_ADD04 $2 HH_ADD05 $2 HH_ADD06 $2 HH_ADD07 $2 HH_ADD08 $2 HH_ADD09 $2 HH_ADD10 $2 HH_ADD11 $2 HH_ADD12 $2 HH_ADD13 $2 HH_ADD14 $2 HH_ADD15 $2 HH_ADD16 $2 HH_ADD17 $2 HH_ADD18 $2 HH_ADD19 $2 HH_ADD20 $2 HH_ADD21 $2 HH_ADD22 $2 HH_ADD23 $2 HH_ADD24 $2 HH_ADD25 $2 HH_ADD26 $2 HH_ADD27 $2 HH_ADD28 $2 HH_ADD29 $2 HH_ADD30 $2 HH_ADD31 $2 HH_ADD32 $2 PNLWGT 8 FNLWGT86 8 FNLWGT87 8 LGTFA101 8 LGTFA102 8 LGTFA103 8 LGTFA104 8 LGTFA105 8 LGTFA106 8 LGTFA107 8 LGTFA108 8 LGTFA109 8 LGTFA110 8 LGTFA111 8 LGTFA112 8 LGTFA113 8 LGTFA114 8 LGTFA115 8 LGTFA116 8 LGTFA117 8 LGTFA118 8 LGTFA119 8 LGTFA120 8 LGTFA121 8 LGTFA122 8 LGTFA123 8 LGTFA124 8 LGTFA125 8 LGTFA126 8 LGTFA127 8 LGTFA128 8 LGTFA129 8 LGTFA130 8 LGTFA131 8 LGTFA132 8 LGTFA201 8 LGTFA202 8 LGTFA203 8 LGTFA204 8 LGTFA205 8 LGTFA206 8 LGTFA207 8 LGTFA208 8 LGTFA209 8 LGTFA210 8 LGTFA211 8 LGTFA212 8 LGTFA213 8 LGTFA214 8 LGTFA215 8 LGTFA216 8 LGTFA217 8 LGTFA218 8 LGTFA219 8 LGTFA220 8 LGTFA221 8 LGTFA222 8 LGTFA223 8 LGTFA224 8 LGTFA225 8 LGTFA226 8 LGTFA227 8 LGTFA228 8 LGTFA229 8 LGTFA230 8 LGTFA231 8 LGTFA232 8 BRTHYR 4 H_48241 4 H_48242 4 H_48243 4 H_48244 4 H_48245 4 H_48246 4 H_48247 4 H_48248 4 PUBRNAMT 4 FULLRENT 4 PP_INC01 5 PP_INC02 5 PP_INC03 5 PP_INC04 5 PP_INC05 5 PP_INC06 5 PP_INC07 5 PP_INC08 5 PP_INC09 5 PP_INC10 5 PP_INC11 5 PP_INC12 5 PP_INC13 5 PP_INC14 5 PP_INC15 5 PP_INC16 5 PP_INC17 5 PP_INC18 5 PP_INC19 5 PP_INC20 5 PP_INC21 5 PP_INC22 5 PP_INC23 5 PP_INC24 5 PP_INC25 5 PP_INC26 5 PP_INC27 5 PP_INC28 5 PP_INC29 5 PP_INC30 5 PP_INC31 5 PP_INC32 5 PP_EAR01 5 PP_EAR02 5 PP_EAR03 5 PP_EAR04 5 PP_EAR05 5 PP_EAR06 5 PP_EAR07 5 PP_EAR08 5 PP_EAR09 5 PP_EAR10 5 PP_EAR11 5 PP_EAR12 5 PP_EAR13 5 PP_EAR14 5 PP_EAR15 5 PP_EAR16 5 PP_EAR17 5 PP_EAR18 5 PP_EAR19 5 PP_EAR20 5 PP_EAR21 5 PP_EAR22 5 PP_EAR23 5 PP_EAR24 5 PP_EAR25 5 PP_EAR26 5 PP_EAR27 5 PP_EAR28 5 PP_EAR29 5 PP_EAR30 5 PP_EAR31 5 PP_EAR32 5 FF_INC01 5 FF_INC02 5 FF_INC03 5 FF_INC04 5 FF_INC05 5 FF_INC06 5 FF_INC07 5 FF_INC08 5 FF_INC09 5 FF_INC10 5 FF_INC11 5 FF_INC12 5 FF_INC13 5 FF_INC14 5 FF_INC15 5 FF_INC16 5 FF_INC17 5 FF_INC18 5 FF_INC19 5 FF_INC20 5 FF_INC21 5 FF_INC22 5 FF_INC23 5 FF_INC24 5 FF_INC25 5 FF_INC26 5 FF_INC27 5 FF_INC28 5 FF_INC29 5 FF_INC30 5 FF_INC31 5 FF_INC32 5 FF_EAR01 4 FF_EAR02 4 FF_EAR03 4 FF_EAR04 4 FF_EAR05 4 FF_EAR06 4 FF_EAR07 4 FF_EAR08 4 FF_EAR09 4 FF_EAR10 4 FF_EAR11 4 FF_EAR12 4 FF_EAR13 4 FF_EAR14 4 FF_EAR15 4 FF_EAR16 4 FF_EAR17 4 FF_EAR18 4 FF_EAR19 4 FF_EAR20 4 FF_EAR21 4 FF_EAR22 4 FF_EAR23 4 FF_EAR24 4 FF_EAR25 4 FF_EAR26 4 FF_EAR27 4 FF_EAR28 4 FF_EAR29 4 FF_EAR30 4 FF_EAR31 4 FF_EAR32 4 FF_PRO01 4 FF_PRO02 4 FF_PRO03 4 FF_PRO04 4 FF_PRO05 4 FF_PRO06 4 FF_PRO07 4 FF_PRO08 4 FF_PRO09 4 FF_PRO10 4 FF_PRO11 4 FF_PRO12 4 FF_PRO13 4 FF_PRO14 4 FF_PRO15 4 FF_PRO16 4 FF_PRO17 4 FF_PRO18 4 FF_PRO19 4 FF_PRO20 4 FF_PRO21 4 FF_PRO22 4 FF_PRO23 4 FF_PRO24 4 FF_PRO25 4 FF_PRO26 4 FF_PRO27 4 FF_PRO28 4 FF_PRO29 4 FF_PRO30 4 FF_PRO31 4 FF_PRO32 4 FF_TRA01 4 FF_TRA02 4 FF_TRA03 4 FF_TRA04 4 FF_TRA05 4 FF_TRA06 4 FF_TRA07 4 FF_TRA08 4 FF_TRA09 4 FF_TRA10 4 FF_TRA11 4 FF_TRA12 4 FF_TRA13 4 FF_TRA14 4 FF_TRA15 4 FF_TRA16 4 FF_TRA17 4 FF_TRA18 4 FF_TRA19 4 FF_TRA20 4 FF_TRA21 4 FF_TRA22 4 FF_TRA23 4 FF_TRA24 4 FF_TRA25 4 FF_TRA26 4 FF_TRA27 4 FF_TRA28 4 FF_TRA29 4 FF_TRA30 4 FF_TRA31 4 FF_TRA32 4 FF_OTH01 4 FF_OTH02 4 FF_OTH03 4 FF_OTH04 4 FF_OTH05 4 FF_OTH06 4 FF_OTH07 4 FF_OTH08 4 FF_OTH09 4 FF_OTH10 4 FF_OTH11 4 FF_OTH12 4 FF_OTH13 4 FF_OTH14 4 FF_OTH15 4 FF_OTH16 4 FF_OTH17 4 FF_OTH18 4 FF_OTH19 4 FF_OTH20 4 FF_OTH21 4 FF_OTH22 4 FF_OTH23 4 FF_OTH24 4 FF_OTH25 4 FF_OTH26 4 FF_OTH27 4 FF_OTH28 4 FF_OTH29 4 FF_OTH30 4 FF_OTH31 4 FF_OTH32 4 HH_INC01 5 HH_INC02 5 HH_INC03 5 HH_INC04 5 HH_INC05 5 HH_INC06 5 HH_INC07 5 HH_INC08 5 HH_INC09 5 HH_INC10 5 HH_INC11 5 HH_INC12 5 HH_INC13 5 HH_INC14 5 HH_INC15 5 HH_INC16 5 HH_INC17 5 HH_INC18 5 HH_INC19 5 HH_INC20 5 HH_INC21 5 HH_INC22 5 HH_INC23 5 HH_INC24 5 HH_INC25 5 HH_INC26 5 HH_INC27 5 HH_INC28 5 HH_INC29 5 HH_INC30 5 HH_INC31 5 HH_INC32 5 HH_EAR01 4 HH_EAR02 4 HH_EAR03 4 HH_EAR04 4 HH_EAR05 4 HH_EAR06 4 HH_EAR07 4 HH_EAR08 4 HH_EAR09 4 HH_EAR10 4 HH_EAR11 4 HH_EAR12 4 HH_EAR13 4 HH_EAR14 4 HH_EAR15 4 HH_EAR16 4 HH_EAR17 4 HH_EAR18 4 HH_EAR19 4 HH_EAR20 4 HH_EAR21 4 HH_EAR22 4 HH_EAR23 4 HH_EAR24 4 HH_EAR25 4 HH_EAR26 4 HH_EAR27 4 HH_EAR28 4 HH_EAR29 4 HH_EAR30 4 HH_EAR31 4 HH_EAR32 4 HH_PRO01 4 HH_PRO02 4 HH_PRO03 4 HH_PRO04 4 HH_PRO05 4 HH_PRO06 4 HH_PRO07 4 HH_PRO08 4 HH_PRO09 4 HH_PRO10 4 HH_PRO11 4 HH_PRO12 4 HH_PRO13 4 HH_PRO14 4 HH_PRO15 4 HH_PRO16 4 HH_PRO17 4 HH_PRO18 4 HH_PRO19 4 HH_PRO20 4 HH_PRO21 4 HH_PRO22 4 HH_PRO23 4 HH_PRO24 4 HH_PRO25 4 HH_PRO26 4 HH_PRO27 4 HH_PRO28 4 HH_PRO29 4 HH_PRO30 4 HH_PRO31 4 HH_PRO32 4 HH_TRA01 4 HH_TRA02 4 HH_TRA03 4 HH_TRA04 4 HH_TRA05 4 HH_TRA06 4 HH_TRA07 4 HH_TRA08 4 HH_TRA09 4 HH_TRA10 4 HH_TRA11 4 HH_TRA12 4 HH_TRA13 4 HH_TRA14 4 HH_TRA15 4 HH_TRA16 4 HH_TRA17 4 HH_TRA18 4 HH_TRA19 4 HH_TRA20 4 HH_TRA21 4 HH_TRA22 4 HH_TRA23 4 HH_TRA24 4 HH_TRA25 4 HH_TRA26 4 HH_TRA27 4 HH_TRA28 4 HH_TRA29 4 HH_TRA30 4 HH_TRA31 4 HH_TRA32 4 HH_OTH01 4 HH_OTH02 4 HH_OTH03 4 HH_OTH04 4 HH_OTH05 4 HH_OTH06 4 HH_OTH07 4 HH_OTH08 4 HH_OTH09 4 HH_OTH10 4 HH_OTH11 4 HH_OTH12 4 HH_OTH13 4 HH_OTH14 4 HH_OTH15 4 HH_OTH16 4 HH_OTH17 4 HH_OTH18 4 HH_OTH19 4 HH_OTH20 4 HH_OTH21 4 HH_OTH22 4 HH_OTH23 4 HH_OTH24 4 HH_OTH25 4 HH_OTH26 4 HH_OTH27 4 HH_OTH28 4 HH_OTH29 4 HH_OTH30 4 HH_OTH31 4 HH_OTH32 4 FF_POV01 4 FF_POV02 4 FF_POV03 4 FF_POV04 4 FF_POV05 4 FF_POV06 4 FF_POV07 4 FF_POV08 4 FF_POV09 4 FF_POV10 4 FF_POV11 4 FF_POV12 4 FF_POV13 4 FF_POV14 4 FF_POV15 4 FF_POV16 4 FF_POV17 4 FF_POV18 4 FF_POV19 4 FF_POV20 4 FF_POV21 4 FF_POV22 4 FF_POV23 4 FF_POV24 4 FF_POV25 4 FF_POV26 4 FF_POV27 4 FF_POV28 4 FF_POV29 4 FF_POV30 4 FF_POV31 4 FF_POV32 4 WS1_AM01 4 WS1_AM02 4 WS1_AM03 4 WS1_AM04 4 WS1_AM05 4 WS1_AM06 4 WS1_AM07 4 WS1_AM08 4 WS1_AM09 4 WS1_AM10 4 WS1_AM11 4 WS1_AM12 4 WS1_AM13 4 WS1_AM14 4 WS1_AM15 4 WS1_AM16 4 WS1_AM17 4 WS1_AM18 4 WS1_AM19 4 WS1_AM20 4 WS1_AM21 4 WS1_AM22 4 WS1_AM23 4 WS1_AM24 4 WS1_AM25 4 WS1_AM26 4 WS1_AM27 4 WS1_AM28 4 WS1_AM29 4 WS1_AM30 4 WS1_AM31 4 WS1_AM32 4 WS2_AM01 4 WS2_AM02 4 WS2_AM03 4 WS2_AM04 4 WS2_AM05 4 WS2_AM06 4 WS2_AM07 4 WS2_AM08 4 WS2_AM09 4 WS2_AM10 4 WS2_AM11 4 WS2_AM12 4 WS2_AM13 4 WS2_AM14 4 WS2_AM15 4 WS2_AM16 4 WS2_AM17 4 WS2_AM18 4 WS2_AM19 4 WS2_AM20 4 WS2_AM21 4 WS2_AM22 4 WS2_AM23 4 WS2_AM24 4 WS2_AM25 4 WS2_AM26 4 WS2_AM27 4 WS2_AM28 4 WS2_AM29 4 WS2_AM30 4 WS2_AM31 4 WS2_AM32 4 W2028_01 8 W2028_02 8 W2028_03 8 W2028_04 8 W2028_05 8 W2028_06 8 W2028_07 8 W2028_08 8 W2028_09 8 W2028_10 8 W2028_11 8 W2028_12 8 W2028_13 8 W2028_14 8 W2028_15 8 W2028_16 8 W2028_17 8 W2028_18 8 W2028_19 8 W2028_20 8 W2028_21 8 W2028_22 8 W2028_23 8 W2028_24 8 W2028_25 8 W2028_26 8 W2028_27 8 W2028_28 8 W2028_29 8 W2028_30 8 W2028_31 8 W2028_32 8 W2128_01 8 W2128_02 8 W2128_03 8 W2128_04 8 W2128_05 8 W2128_06 8 W2128_07 8 W2128_08 8 W2128_09 8 W2128_10 8 W2128_11 8 W2128_12 8 W2128_13 8 W2128_14 8 W2128_15 8 W2128_16 8 W2128_17 8 W2128_18 8 W2128_19 8 W2128_20 8 W2128_21 8 W2128_22 8 W2128_23 8 W2128_24 8 W2128_25 8 W2128_26 8 W2128_27 8 W2128_28 8 W2128_29 8 W2128_30 8 W2128_31 8 W2128_32 8 SE1_AM01 4 SE1_AM02 4 SE1_AM03 4 SE1_AM04 4 SE1_AM05 4 SE1_AM06 4 SE1_AM07 4 SE1_AM08 4 SE1_AM09 4 SE1_AM10 4 SE1_AM11 4 SE1_AM12 4 SE1_AM13 4 SE1_AM14 4 SE1_AM15 4 SE1_AM16 4 SE1_AM17 4 SE1_AM18 4 SE1_AM19 4 SE1_AM20 4 SE1_AM21 4 SE1_AM22 4 SE1_AM23 4 SE1_AM24 4 SE1_AM25 4 SE1_AM26 4 SE1_AM27 4 SE1_AM28 4 SE1_AM29 4 SE1_AM30 4 SE1_AM31 4 SE1_AM32 4 SE2_AM01 4 SE2_AM02 4 SE2_AM03 4 SE2_AM04 4 SE2_AM05 4 SE2_AM06 4 SE2_AM07 4 SE2_AM08 4 SE2_AM09 4 SE2_AM10 4 SE2_AM11 4 SE2_AM12 4 SE2_AM13 4 SE2_AM14 4 SE2_AM15 4 SE2_AM16 4 SE2_AM17 4 SE2_AM18 4 SE2_AM19 4 SE2_AM20 4 SE2_AM21 4 SE2_AM22 4 SE2_AM23 4 SE2_AM24 4 SE2_AM25 4 SE2_AM26 4 SE2_AM27 4 SE2_AM28 4 SE2_AM29 4 SE2_AM30 4 SE2_AM31 4 SE2_AM32 4 G1_A1_01 4 G1_A1_02 4 G1_A1_03 4 G1_A1_04 4 G1_A1_05 4 G1_A1_06 4 G1_A1_07 4 G1_A1_08 4 G1_A1_09 4 G1_A1_10 4 G1_A1_11 4 G1_A1_12 4 G1_A1_13 4 G1_A1_14 4 G1_A1_15 4 G1_A1_16 4 G1_A1_17 4 G1_A1_18 4 G1_A1_19 4 G1_A1_20 4 G1_A1_21 4 G1_A1_22 4 G1_A1_23 4 G1_A1_24 4 G1_A1_25 4 G1_A1_26 4 G1_A1_27 4 G1_A1_28 4 G1_A1_29 4 G1_A1_30 4 G1_A1_31 4 G1_A1_32 4 G1_A2_01 4 G1_A2_02 4 G1_A2_03 4 G1_A2_04 4 G1_A2_05 4 G1_A2_06 4 G1_A2_07 4 G1_A2_08 4 G1_A2_09 4 G1_A2_10 4 G1_A2_11 4 G1_A2_12 4 G1_A2_13 4 G1_A2_14 4 G1_A2_15 4 G1_A2_16 4 G1_A2_17 4 G1_A2_18 4 G1_A2_19 4 G1_A2_20 4 G1_A2_21 4 G1_A2_22 4 G1_A2_23 4 G1_A2_24 4 G1_A2_25 4 G1_A2_26 4 G1_A2_27 4 G1_A2_28 4 G1_A2_29 4 G1_A2_30 4 G1_A2_31 4 G1_A2_32 4 G1_A3_01 4 G1_A3_02 4 G1_A3_03 4 G1_A3_04 4 G1_A3_05 4 G1_A3_06 4 G1_A3_07 4 G1_A3_08 4 G1_A3_09 4 G1_A3_10 4 G1_A3_11 4 G1_A3_12 4 G1_A3_13 4 G1_A3_14 4 G1_A3_15 4 G1_A3_16 4 G1_A3_17 4 G1_A3_18 4 G1_A3_19 4 G1_A3_20 4 G1_A3_21 4 G1_A3_22 4 G1_A3_23 4 G1_A3_24 4 G1_A3_25 4 G1_A3_26 4 G1_A3_27 4 G1_A3_28 4 G1_A3_29 4 G1_A3_30 4 G1_A3_31 4 G1_A3_32 4 G1_A4_01 4 G1_A4_02 4 G1_A4_03 4 G1_A4_04 4 G1_A4_05 4 G1_A4_06 4 G1_A4_07 4 G1_A4_08 4 G1_A4_09 4 G1_A4_10 4 G1_A4_11 4 G1_A4_12 4 G1_A4_13 4 G1_A4_14 4 G1_A4_15 4 G1_A4_16 4 G1_A4_17 4 G1_A4_18 4 G1_A4_19 4 G1_A4_20 4 G1_A4_21 4 G1_A4_22 4 G1_A4_23 4 G1_A4_24 4 G1_A4_25 4 G1_A4_26 4 G1_A4_27 4 G1_A4_28 4 G1_A4_29 4 G1_A4_30 4 G1_A4_31 4 G1_A4_32 4 G1_A5_01 4 G1_A5_02 4 G1_A5_03 4 G1_A5_04 4 G1_A5_05 4 G1_A5_06 4 G1_A5_07 4 G1_A5_08 4 G1_A5_09 4 G1_A5_10 4 G1_A5_11 4 G1_A5_12 4 G1_A5_13 4 G1_A5_14 4 G1_A5_15 4 G1_A5_16 4 G1_A5_17 4 G1_A5_18 4 G1_A5_19 4 G1_A5_20 4 G1_A5_21 4 G1_A5_22 4 G1_A5_23 4 G1_A5_24 4 G1_A5_25 4 G1_A5_26 4 G1_A5_27 4 G1_A5_28 4 G1_A5_29 4 G1_A5_30 4 G1_A5_31 4 G1_A5_32 4 G1_A6_01 4 G1_A6_02 4 G1_A6_03 4 G1_A6_04 4 G1_A6_05 4 G1_A6_06 4 G1_A6_07 4 G1_A6_08 4 G1_A6_09 4 G1_A6_10 4 G1_A6_11 4 G1_A6_12 4 G1_A6_13 4 G1_A6_14 4 G1_A6_15 4 G1_A6_16 4 G1_A6_17 4 G1_A6_18 4 G1_A6_19 4 G1_A6_20 4 G1_A6_21 4 G1_A6_22 4 G1_A6_23 4 G1_A6_24 4 G1_A6_25 4 G1_A6_26 4 G1_A6_27 4 G1_A6_28 4 G1_A6_29 4 G1_A6_30 4 G1_A6_31 4 G1_A6_32 4 G1_A7_01 4 G1_A7_02 4 G1_A7_03 4 G1_A7_04 4 G1_A7_05 4 G1_A7_06 4 G1_A7_07 4 G1_A7_08 4 G1_A7_09 4 G1_A7_10 4 G1_A7_11 4 G1_A7_12 4 G1_A7_13 4 G1_A7_14 4 G1_A7_15 4 G1_A7_16 4 G1_A7_17 4 G1_A7_18 4 G1_A7_19 4 G1_A7_20 4 G1_A7_21 4 G1_A7_22 4 G1_A7_23 4 G1_A7_24 4 G1_A7_25 4 G1_A7_26 4 G1_A7_27 4 G1_A7_28 4 G1_A7_29 4 G1_A7_30 4 G1_A7_31 4 G1_A7_32 4 G1_A8_01 4 G1_A8_02 4 G1_A8_03 4 G1_A8_04 4 G1_A8_05 4 G1_A8_06 4 G1_A8_07 4 G1_A8_08 4 G1_A8_09 4 G1_A8_10 4 G1_A8_11 4 G1_A8_12 4 G1_A8_13 4 G1_A8_14 4 G1_A8_15 4 G1_A8_16 4 G1_A8_17 4 G1_A8_18 4 G1_A8_19 4 G1_A8_20 4 G1_A8_21 4 G1_A8_22 4 G1_A8_23 4 G1_A8_24 4 G1_A8_25 4 G1_A8_26 4 G1_A8_27 4 G1_A8_28 4 G1_A8_29 4 G1_A8_30 4 G1_A8_31 4 G1_A8_32 4 G1_A9_01 4 G1_A9_02 4 G1_A9_03 4 G1_A9_04 4 G1_A9_05 4 G1_A9_06 4 G1_A9_07 4 G1_A9_08 4 G1_A9_09 4 G1_A9_10 4 G1_A9_11 4 G1_A9_12 4 G1_A9_13 4 G1_A9_14 4 G1_A9_15 4 G1_A9_16 4 G1_A9_17 4 G1_A9_18 4 G1_A9_19 4 G1_A9_20 4 G1_A9_21 4 G1_A9_22 4 G1_A9_23 4 G1_A9_24 4 G1_A9_25 4 G1_A9_26 4 G1_A9_27 4 G1_A9_28 4 G1_A9_29 4 G1_A9_30 4 G1_A9_31 4 G1_A9_32 4 G1_A1001 4 G1_A1002 4 G1_A1003 4 G1_A1004 4 G1_A1005 4 G1_A1006 4 G1_A1007 4 G1_A1008 4 G1_A1009 4 G1_A1010 4 G1_A1011 4 G1_A1012 4 G1_A1013 4 G1_A1014 4 G1_A1015 4 G1_A1016 4 G1_A1017 4 G1_A1018 4 G1_A1019 4 G1_A1020 4 G1_A1021 4 G1_A1022 4 G1_A1023 4 G1_A1024 4 G1_A1025 4 G1_A1026 4 G1_A1027 4 G1_A1028 4 G1_A1029 4 G1_A1030 4 G1_A1031 4 G1_A1032 4 G2A10001 5 G2A10002 5 G2A10003 5 G2A10004 5 G2A10005 5 G2A10006 5 G2A10007 5 G2A10008 5 G2A10009 5 G2A10010 5 G2A10011 5 G2A10012 5 G2A10013 5 G2A10014 5 G2A10015 5 G2A10016 5 G2A10017 5 G2A10018 5 G2A10019 5 G2A10020 5 G2A10021 5 G2A10022 5 G2A10023 5 G2A10024 5 G2A10025 5 G2A10026 5 G2A10027 5 G2A10028 5 G2A10029 5 G2A10030 5 G2A10031 5 G2A10032 5 G2A10401 5 G2A10402 5 G2A10403 5 G2A10404 5 G2A10405 5 G2A10406 5 G2A10407 5 G2A10408 5 G2A10409 5 G2A10410 5 G2A10411 5 G2A10412 5 G2A10413 5 G2A10414 5 G2A10415 5 G2A10416 5 G2A10417 5 G2A10418 5 G2A10419 5 G2A10420 5 G2A10421 5 G2A10422 5 G2A10423 5 G2A10424 5 G2A10425 5 G2A10426 5 G2A10427 5 G2A10428 5 G2A10429 5 G2A10430 5 G2A10431 5 G2A10432 5 G2A11001 5 G2A11002 5 G2A11003 5 G2A11004 5 G2A11005 5 G2A11006 5 G2A11007 5 G2A11008 5 G2A11009 5 G2A11010 5 G2A11011 5 G2A11012 5 G2A11013 5 G2A11014 5 G2A11015 5 G2A11016 5 G2A11017 5 G2A11018 5 G2A11019 5 G2A11020 5 G2A11021 5 G2A11022 5 G2A11023 5 G2A11024 5 G2A11025 5 G2A11026 5 G2A11027 5 G2A11028 5 G2A11029 5 G2A11030 5 G2A11031 5 G2A11032 5 G2A12001 5 G2A12002 5 G2A12003 5 G2A12004 5 G2A12005 5 G2A12006 5 G2A12007 5 G2A12008 5 G2A12009 5 G2A12010 5 G2A12011 5 G2A12012 5 G2A12013 5 G2A12014 5 G2A12015 5 G2A12016 5 G2A12017 5 G2A12018 5 G2A12019 5 G2A12020 5 G2A12021 5 G2A12022 5 G2A12023 5 G2A12024 5 G2A12025 5 G2A12026 5 G2A12027 5 G2A12028 5 G2A12029 5 G2A12030 5 G2A12031 5 G2A12032 5 G2A13001 5 G2A13002 5 G2A13003 5 G2A13004 5 G2A13005 5 G2A13006 5 G2A13007 5 G2A13008 5 G2A13009 5 G2A13010 5 G2A13011 5 G2A13012 5 G2A13013 5 G2A13014 5 G2A13015 5 G2A13016 5 G2A13017 5 G2A13018 5 G2A13019 5 G2A13020 5 G2A13021 5 G2A13022 5 G2A13023 5 G2A13024 5 G2A13025 5 G2A13026 5 G2A13027 5 G2A13028 5 G2A13029 5 G2A13030 5 G2A13031 5 G2A13032 5 G2A14001 5 G2A14002 5 G2A14003 5 G2A14004 5 G2A14005 5 G2A14006 5 G2A14007 5 G2A14008 5 G2A14009 5 G2A14010 5 G2A14011 5 G2A14012 5 G2A14013 5 G2A14014 5 G2A14015 5 G2A14016 5 G2A14017 5 G2A14018 5 G2A14019 5 G2A14020 5 G2A14021 5 G2A14022 5 G2A14023 5 G2A14024 5 G2A14025 5 G2A14026 5 G2A14027 5 G2A14028 5 G2A14029 5 G2A14030 5 G2A14031 5 G2A14032 5 DEFAULT=3; /*-------------------------------------------------------------------------------------*/ /* The following changes in variable names have been made, if necessary: '$' to 'd'; '-' to '_'; '%' to 'p'; Note: Variable names in SAS are not case-sensitive */ /*-------------------------------------------------------------------------------------*/ INPUT @1 SUSEQNUM $6. @7 ROT 1. @8 SU_ID $9. @17 PP_ENTRY $2. @19 PP_PNUM $3. @22 SU_TOTPP 2. @24 PP_RCSEQ 2. @26 HH_ADD01 $2. @28 HH_ADD02 $2. @30 HH_ADD03 $2. @32 HH_ADD04 $2. @34 HH_ADD05 $2. @36 HH_ADD06 $2. @38 HH_ADD07 $2. @40 HH_ADD08 $2. @42 HH_ADD09 $2. @44 HH_ADD10 $2. @46 HH_ADD11 $2. @48 HH_ADD12 $2. @50 HH_ADD13 $2. @52 HH_ADD14 $2. @54 HH_ADD15 $2. @56 HH_ADD16 $2. @58 HH_ADD17 $2. @60 HH_ADD18 $2. @62 HH_ADD19 $2. @64 HH_ADD20 $2. @66 HH_ADD21 $2. @68 HH_ADD22 $2. @70 HH_ADD23 $2. @72 HH_ADD24 $2. @74 HH_ADD25 $2. @76 HH_ADD26 $2. @78 HH_ADD27 $2. @80 HH_ADD28 $2. @82 HH_ADD29 $2. @84 HH_ADD30 $2. @86 HH_ADD31 $2. @88 HH_ADD32 $2. @90 PP_INTV1 1. @91 PP_INTV2 1. @92 PP_INTV3 1. @93 PP_INTV4 1. @94 PP_INTV5 1. @95 PP_INTV6 1. @96 PP_INTV7 1. @97 PP_INTV8 1. @98 PP_MIS01 1. @99 PP_MIS02 1. @100 PP_MIS03 1. @101 PP_MIS04 1. @102 PP_MIS05 1. @103 PP_MIS06 1. @104 PP_MIS07 1. @105 PP_MIS08 1. @106 PP_MIS09 1. @107 PP_MIS10 1. @108 PP_MIS11 1. @109 PP_MIS12 1. @110 PP_MIS13 1. @111 PP_MIS14 1. @112 PP_MIS15 1. @113 PP_MIS16 1. @114 PP_MIS17 1. @115 PP_MIS18 1. @116 PP_MIS19 1. @117 PP_MIS20 1. @118 PP_MIS21 1. @119 PP_MIS22 1. @120 PP_MIS23 1. @121 PP_MIS24 1. @122 PP_MIS25 1. @123 PP_MIS26 1. @124 PP_MIS27 1. @125 PP_MIS28 1. @126 PP_MIS29 1. @127 PP_MIS30 1. @128 PP_MIS31 1. @129 PP_MIS32 1. @130 REASLEF1 1. @131 REASLEF2 1. @132 REASLEF3 1. @133 REASLEF4 1. @134 REASLEF5 1. @135 REASLEF6 1. @136 REASLEF7 1. @137 REASLEF8 1. @138 HHINST01 2. @140 HHINST02 2. @142 HHINST03 2. @144 HHINST04 2. @146 HHINST05 2. @148 HHINST06 2. @150 HHINST07 2. @152 HHINST08 2. @154 HHINST09 2. @156 HHINST10 2. @158 HHINST11 2. @160 HHINST12 2. @162 HHINST13 2. @164 HHINST14 2. @166 HHINST15 2. @168 HHINST16 2. @170 HHINST17 2. @172 HHINST18 2. @174 HHINST19 2. @176 HHINST20 2. @178 HHINST21 2. @180 HHINST22 2. @182 HHINST23 2. @184 HHINST24 2. @186 HHINST25 2. @188 HHINST26 2. @190 HHINST27 2. @192 HHINST28 2. @194 HHINST29 2. @196 HHINST30 2. @198 HHINST31 2. @200 HHINST32 2. @202 PNLWGT 12.4 @214 FNLWGT86 12.4 @226 FNLWGT87 12.4 @238 SU_RGC 3. @241 HSC 1. @242 STRAT 2. @244 LGTHHT01 1. @245 LGTHHT02 1. @246 LGTHHT03 1. @247 LGTHHT04 1. @248 LGTHHT05 1. @249 LGTHHT06 1. @250 LGTHHT07 1. @251 LGTHHT08 1. @252 LGTHHT09 1. @253 LGTHHT10 1. @254 LGTHHT11 1. @255 LGTHHT12 1. @256 LGTHHT13 1. @257 LGTHHT14 1. @258 LGTHHT15 1. @259 LGTHHT16 1. @260 LGTHHT17 1. @261 LGTHHT18 1. @262 LGTHHT19 1. @263 LGTHHT20 1. @264 LGTHHT21 1. @265 LGTHHT22 1. @266 LGTHHT23 1. @267 LGTHHT24 1. @268 LGTHHT25 1. @269 LGTHHT26 1. @270 LGTHHT27 1. @271 LGTHHT28 1. @272 LGTHHT29 1. @273 LGTHHT30 1. @274 LGTHHT31 1. @275 LGTHHT32 1. @276 LGTKEY01 3. @279 LGTKEY02 3. @282 LGTKEY03 3. @285 LGTKEY04 3. @288 LGTKEY05 3. @291 LGTKEY06 3. @294 LGTKEY07 3. @297 LGTKEY08 3. @300 LGTKEY09 3. @303 LGTKEY10 3. @306 LGTKEY11 3. @309 LGTKEY12 3. @312 LGTKEY13 3. @315 LGTKEY14 3. @318 LGTKEY15 3. @321 LGTKEY16 3. @324 LGTKEY17 3. @327 LGTKEY18 3. @330 LGTKEY19 3. @333 LGTKEY20 3. @336 LGTKEY21 3. @339 LGTKEY22 3. @342 LGTKEY23 3. @345 LGTKEY24 3. @348 LGTKEY25 3. @351 LGTKEY26 3. @354 LGTKEY27 3. @357 LGTKEY28 3. @360 LGTKEY29 3. @363 LGTKEY30 3. @366 LGTKEY31 3. @369 LGTKEY32 3. @372 LGTOTH01 3. @375 LGTOTH02 3. @378 LGTOTH03 3. @381 LGTOTH04 3. @384 LGTOTH05 3. @387 LGTOTH06 3. @390 LGTOTH07 3. @393 LGTOTH08 3. @396 LGTOTH09 3. @399 LGTOTH10 3. @402 LGTOTH11 3. @405 LGTOTH12 3. @408 LGTOTH13 3. @411 LGTOTH14 3. @414 LGTOTH15 3. @417 LGTOTH16 3. @420 LGTOTH17 3. @423 LGTOTH18 3. @426 LGTOTH19 3. @429 LGTOTH20 3. @432 LGTOTH21 3. @435 LGTOTH22 3. @438 LGTOTH23 3. @441 LGTOTH24 3. @444 LGTOTH25 3. @447 LGTOTH26 3. @450 LGTOTH27 3. @453 LGTOTH28 3. @456 LGTOTH29 3. @459 LGTOTH30 3. @462 LGTOTH31 3. @465 LGTOTH32 3. @468 LGTFA101 12.4 @480 LGTFA102 12.4 @492 LGTFA103 12.4 @504 LGTFA104 12.4 @516 LGTFA105 12.4 @528 LGTFA106 12.4 @540 LGTFA107 12.4 @552 LGTFA108 12.4 @564 LGTFA109 12.4 @576 LGTFA110 12.4 @588 LGTFA111 12.4 @600 LGTFA112 12.4 @612 LGTFA113 12.4 @624 LGTFA114 12.4 @636 LGTFA115 12.4 @648 LGTFA116 12.4 @660 LGTFA117 12.4 @672 LGTFA118 12.4 @684 LGTFA119 12.4 @696 LGTFA120 12.4 @708 LGTFA121 12.4 @720 LGTFA122 12.4 @732 LGTFA123 12.4 @744 LGTFA124 12.4 @756 LGTFA125 12.4 @768 LGTFA126 12.4 @780 LGTFA127 12.4 @792 LGTFA128 12.4 @804 LGTFA129 12.4 @816 LGTFA130 12.4 @828 LGTFA131 12.4 @840 LGTFA132 12.4 @852 LGTFA201 12.4 @864 LGTFA202 12.4 @876 LGTFA203 12.4 @888 LGTFA204 12.4 @900 LGTFA205 12.4 @912 LGTFA206 12.4 @924 LGTFA207 12.4 @936 LGTFA208 12.4 @948 LGTFA209 12.4 @960 LGTFA210 12.4 @972 LGTFA211 12.4 @984 LGTFA212 12.4 @996 LGTFA213 12.4 @1008 LGTFA214 12.4 @1020 LGTFA215 12.4 @1032 LGTFA216 12.4 @1044 LGTFA217 12.4 @1056 LGTFA218 12.4 @1068 LGTFA219 12.4 @1080 LGTFA220 12.4 @1092 LGTFA221 12.4 @1104 LGTFA222 12.4 @1116 LGTFA223 12.4 @1128 LGTFA224 12.4 @1140 LGTFA225 12.4 @1152 LGTFA226 12.4 @1164 LGTFA227 12.4 @1176 LGTFA228 12.4 @1188 LGTFA229 12.4 @1200 LGTFA230 12.4 @1212 LGTFA231 12.4 @1224 LGTFA232 12.4 @1236 SEX 1. @1237 RACE 1. @1238 ETHNICTY 2. @1240 RRP_01 1. @1241 RRP_02 1. @1242 RRP_03 1. @1243 RRP_04 1. @1244 RRP_05 1. @1245 RRP_06 1. @1246 RRP_07 1. @1247 RRP_08 1. @1248 RRP_09 1. @1249 RRP_10 1. @1250 RRP_11 1. @1251 RRP_12 1. @1252 RRP_13 1. @1253 RRP_14 1. @1254 RRP_15 1. @1255 RRP_16 1. @1256 RRP_17 1. @1257 RRP_18 1. @1258 RRP_19 1. @1259 RRP_20 1. @1260 RRP_21 1. @1261 RRP_22 1. @1262 RRP_23 1. @1263 RRP_24 1. @1264 RRP_25 1. @1265 RRP_26 1. @1266 RRP_27 1. @1267 RRP_28 1. @1268 RRP_29 1. @1269 RRP_30 1. @1270 RRP_31 1. @1271 RRP_32 1. @1272 AGE_01 2. @1274 AGE_02 2. @1276 AGE_03 2. @1278 AGE_04 2. @1280 AGE_05 2. @1282 AGE_06 2. @1284 AGE_07 2. @1286 AGE_08 2. @1288 AGE_09 2. @1290 AGE_10 2. @1292 AGE_11 2. @1294 AGE_12 2. @1296 AGE_13 2. @1298 AGE_14 2. @1300 AGE_15 2. @1302 AGE_16 2. @1304 AGE_17 2. @1306 AGE_18 2. @1308 AGE_19 2. @1310 AGE_20 2. @1312 AGE_21 2. @1314 AGE_22 2. @1316 AGE_23 2. @1318 AGE_24 2. @1320 AGE_25 2. @1322 AGE_26 2. @1324 AGE_27 2. @1326 AGE_28 2. @1328 AGE_29 2. @1330 AGE_30 2. @1332 AGE_31 2. @1334 AGE_32 2. @1336 MS_01 1. @1337 MS_02 1. @1338 MS_03 1. @1339 MS_04 1. @1340 MS_05 1. @1341 MS_06 1. @1342 MS_07 1. @1343 MS_08 1. @1344 MS_09 1. @1345 MS_10 1. @1346 MS_11 1. @1347 MS_12 1. @1348 MS_13 1. @1349 MS_14 1. @1350 MS_15 1. @1351 MS_16 1. @1352 MS_17 1. @1353 MS_18 1. @1354 MS_19 1. @1355 MS_20 1. @1356 MS_21 1. @1357 MS_22 1. @1358 MS_23 1. @1359 MS_24 1. @1360 MS_25 1. @1361 MS_26 1. @1362 MS_27 1. @1363 MS_28 1. @1364 MS_29 1. @1365 MS_30 1. @1366 MS_31 1. @1367 MS_32 1. @1368 FAMTYP01 1. @1369 FAMTYP02 1. @1370 FAMTYP03 1. @1371 FAMTYP04 1. @1372 FAMTYP05 1. @1373 FAMTYP06 1. @1374 FAMTYP07 1. @1375 FAMTYP08 1. @1376 FAMTYP09 1. @1377 FAMTYP10 1. @1378 FAMTYP11 1. @1379 FAMTYP12 1. @1380 FAMTYP13 1. @1381 FAMTYP14 1. @1382 FAMTYP15 1. @1383 FAMTYP16 1. @1384 FAMTYP17 1. @1385 FAMTYP18 1. @1386 FAMTYP19 1. @1387 FAMTYP20 1. @1388 FAMTYP21 1. @1389 FAMTYP22 1. @1390 FAMTYP23 1. @1391 FAMTYP24 1. @1392 FAMTYP25 1. @1393 FAMTYP26 1. @1394 FAMTYP27 1. @1395 FAMTYP28 1. @1396 FAMTYP29 1. @1397 FAMTYP30 1. @1398 FAMTYP31 1. @1399 FAMTYP32 1. @1400 FAMREL01 1. @1401 FAMREL02 1. @1402 FAMREL03 1. @1403 FAMREL04 1. @1404 FAMREL05 1. @1405 FAMREL06 1. @1406 FAMREL07 1. @1407 FAMREL08 1. @1408 FAMREL09 1. @1409 FAMREL10 1. @1410 FAMREL11 1. @1411 FAMREL12 1. @1412 FAMREL13 1. @1413 FAMREL14 1. @1414 FAMREL15 1. @1415 FAMREL16 1. @1416 FAMREL17 1. @1417 FAMREL18 1. @1418 FAMREL19 1. @1419 FAMREL20 1. @1420 FAMREL21 1. @1421 FAMREL22 1. @1422 FAMREL23 1. @1423 FAMREL24 1. @1424 FAMREL25 1. @1425 FAMREL26 1. @1426 FAMREL27 1. @1427 FAMREL28 1. @1428 FAMREL29 1. @1429 FAMREL30 1. @1430 FAMREL31 1. @1431 FAMREL32 1. @1432 FAMNUM01 1. @1433 FAMNUM02 1. @1434 FAMNUM03 1. @1435 FAMNUM04 1. @1436 FAMNUM05 1. @1437 FAMNUM06 1. @1438 FAMNUM07 1. @1439 FAMNUM08 1. @1440 FAMNUM09 1. @1441 FAMNUM10 1. @1442 FAMNUM11 1. @1443 FAMNUM12 1. @1444 FAMNUM13 1. @1445 FAMNUM14 1. @1446 FAMNUM15 1. @1447 FAMNUM16 1. @1448 FAMNUM17 1. @1449 FAMNUM18 1. @1450 FAMNUM19 1. @1451 FAMNUM20 1. @1452 FAMNUM21 1. @1453 FAMNUM22 1. @1454 FAMNUM23 1. @1455 FAMNUM24 1. @1456 FAMNUM25 1. @1457 FAMNUM26 1. @1458 FAMNUM27 1. @1459 FAMNUM28 1. @1460 FAMNUM29 1. @1461 FAMNUM30 1. @1462 FAMNUM31 1. @1463 FAMNUM32 1. @1464 PNSP_01 3. @1467 PNSP_02 3. @1470 PNSP_03 3. @1473 PNSP_04 3. @1476 PNSP_05 3. @1479 PNSP_06 3. @1482 PNSP_07 3. @1485 PNSP_08 3. @1488 PNSP_09 3. @1491 PNSP_10 3. @1494 PNSP_11 3. @1497 PNSP_12 3. @1500 PNSP_13 3. @1503 PNSP_14 3. @1506 PNSP_15 3. @1509 PNSP_16 3. @1512 PNSP_17 3. @1515 PNSP_18 3. @1518 PNSP_19 3. @1521 PNSP_20 3. @1524 PNSP_21 3. @1527 PNSP_22 3. @1530 PNSP_23 3. @1533 PNSP_24 3. @1536 PNSP_25 3. @1539 PNSP_26 3. @1542 PNSP_27 3. @1545 PNSP_28 3. @1548 PNSP_29 3. @1551 PNSP_30 3. @1554 PNSP_31 3. @1557 PNSP_32 3. @1560 ENT_SP01 2. @1562 ENT_SP02 2. @1564 ENT_SP03 2. @1566 ENT_SP04 2. @1568 ENT_SP05 2. @1570 ENT_SP06 2. @1572 ENT_SP07 2. @1574 ENT_SP08 2. @1576 ENT_SP09 2. @1578 ENT_SP10 2. @1580 ENT_SP11 2. @1582 ENT_SP12 2. @1584 ENT_SP13 2. @1586 ENT_SP14 2. @1588 ENT_SP15 2. @1590 ENT_SP16 2. @1592 ENT_SP17 2. @1594 ENT_SP18 2. @1596 ENT_SP19 2. @1598 ENT_SP20 2. @1600 ENT_SP21 2. @1602 ENT_SP22 2. @1604 ENT_SP23 2. @1606 ENT_SP24 2. @1608 ENT_SP25 2. @1610 ENT_SP26 2. @1612 ENT_SP27 2. @1614 ENT_SP28 2. @1616 ENT_SP29 2. @1618 ENT_SP30 2. @1620 ENT_SP31 2. @1622 ENT_SP32 2. @1624 PNPT_01 3. @1627 PNPT_02 3. @1630 PNPT_03 3. @1633 PNPT_04 3. @1636 PNPT_05 3. @1639 PNPT_06 3. @1642 PNPT_07 3. @1645 PNPT_08 3. @1648 PNPT_09 3. @1651 PNPT_10 3. @1654 PNPT_11 3. @1657 PNPT_12 3. @1660 PNPT_13 3. @1663 PNPT_14 3. @1666 PNPT_15 3. @1669 PNPT_16 3. @1672 PNPT_17 3. @1675 PNPT_18 3. @1678 PNPT_19 3. @1681 PNPT_20 3. @1684 PNPT_21 3. @1687 PNPT_22 3. @1690 PNPT_23 3. @1693 PNPT_24 3. @1696 PNPT_25 3. @1699 PNPT_26 3. @1702 PNPT_27 3. @1705 PNPT_28 3. @1708 PNPT_29 3. @1711 PNPT_30 3. @1714 PNPT_31 3. @1717 PNPT_32 3. @1720 ENT_PT01 2. @1722 ENT_PT02 2. @1724 ENT_PT03 2. @1726 ENT_PT04 2. @1728 ENT_PT05 2. @1730 ENT_PT06 2. @1732 ENT_PT07 2. @1734 ENT_PT08 2. @1736 ENT_PT09 2. @1738 ENT_PT10 2. @1740 ENT_PT11 2. @1742 ENT_PT12 2. @1744 ENT_PT13 2. @1746 ENT_PT14 2. @1748 ENT_PT15 2. @1750 ENT_PT16 2. @1752 ENT_PT17 2. @1754 ENT_PT18 2. @1756 ENT_PT19 2. @1758 ENT_PT20 2. @1760 ENT_PT21 2. @1762 ENT_PT22 2. @1764 ENT_PT23 2. @1766 ENT_PT24 2. @1768 ENT_PT25 2. @1770 ENT_PT26 2. @1772 ENT_PT27 2. @1774 ENT_PT28 2. @1776 ENT_PT29 2. @1778 ENT_PT30 2. @1780 ENT_PT31 2. @1782 ENT_PT32 2. @1784 HIGRADE1 2. @1786 HIGRADE2 2. @1788 HIGRADE3 2. @1790 HIGRADE4 2. @1792 HIGRADE5 2. @1794 HIGRADE6 2. @1796 HIGRADE7 2. @1798 HIGRADE8 2. @1800 GRD_CMP1 1. @1801 GRD_CMP2 1. @1802 GRD_CMP3 1. @1803 GRD_CMP4 1. @1804 GRD_CMP5 1. @1805 GRD_CMP6 1. @1806 GRD_CMP7 1. @1807 GRD_CMP8 1. @1808 U_VET_1 1. @1809 U_VET_2 1. @1810 U_VET_3 1. @1811 U_VET_4 1. @1812 U_VET_5 1. @1813 U_VET_6 1. @1814 U_VET_7 1. @1815 U_VET_8 1. @1816 IN_AF_1 1. @1817 IN_AF_2 1. @1818 IN_AF_3 1. @1819 IN_AF_4 1. @1820 IN_AF_5 1. @1821 IN_AF_6 1. @1822 IN_AF_7 1. @1823 IN_AF_8 1. @1824 USRV1_1 1. @1825 USRV1_2 1. @1826 USRV1_3 1. @1827 USRV1_4 1. @1828 USRV1_5 1. @1829 USRV1_6 1. @1830 USRV1_7 1. @1831 USRV1_8 1. @1832 USRV2_1 1. @1833 USRV2_2 1. @1834 USRV2_3 1. @1835 USRV2_4 1. @1836 USRV2_5 1. @1837 USRV2_6 1. @1838 USRV2_7 1. @1839 USRV2_8 1. @1840 USRV3_1 1. @1841 USRV3_2 1. @1842 USRV3_3 1. @1843 USRV3_4 1. @1844 USRV3_5 1. @1845 USRV3_6 1. @1846 USRV3_7 1. @1847 USRV3_8 1. @1848 BRTHMN 2. @1850 BRTHYR 4. @1854 U_PNGD1 3. @1857 U_PNGD2 3. @1860 U_PNGD3 3. @1863 U_PNGD4 3. @1866 U_PNGD5 3. @1869 U_PNGD6 3. @1872 U_PNGD7 3. @1875 U_PNGD8 3. @1878 ENTID_G1 2. @1880 ENTID_G2 2. @1882 ENTID_G3 2. @1884 ENTID_G4 2. @1886 ENTID_G5 2. @1888 ENTID_G6 2. @1890 ENTID_G7 2. @1892 ENTID_G8 2. @1894 U_LVQT01 2. @1896 U_LVQT02 2. @1898 U_LVQT03 2. @1900 U_LVQT04 2. @1902 U_LVQT05 2. @1904 U_LVQT06 2. @1906 U_LVQT07 2. @1908 U_LVQT08 2. @1910 U_LVQT09 2. @1912 U_LVQT10 2. @1914 U_LVQT11 2. @1916 U_LVQT12 2. @1918 U_LVQT13 2. @1920 U_LVQT14 2. @1922 U_LVQT15 2. @1924 U_LVQT16 2. @1926 U_LVQT17 2. @1928 U_LVQT18 2. @1930 U_LVQT19 2. @1932 U_LVQT20 2. @1934 U_LVQT21 2. @1936 U_LVQT22 2. @1938 U_LVQT23 2. @1940 U_LVQT24 2. @1942 U_LVQT25 2. @1944 U_LVQT26 2. @1946 U_LVQT27 2. @1948 U_LVQT28 2. @1950 U_LVQT29 2. @1952 U_LVQT30 2. @1954 U_LVQT31 2. @1956 U_LVQT32 2. @1958 TENURE01 1. @1959 TENURE02 1. @1960 TENURE03 1. @1961 TENURE04 1. @1962 TENURE05 1. @1963 TENURE06 1. @1964 TENURE07 1. @1965 TENURE08 1. @1966 TENURE09 1. @1967 TENURE10 1. @1968 TENURE11 1. @1969 TENURE12 1. @1970 TENURE13 1. @1971 TENURE14 1. @1972 TENURE15 1. @1973 TENURE16 1. @1974 TENURE17 1. @1975 TENURE18 1. @1976 TENURE19 1. @1977 TENURE20 1. @1978 TENURE21 1. @1979 TENURE22 1. @1980 TENURE23 1. @1981 TENURE24 1. @1982 TENURE25 1. @1983 TENURE26 1. @1984 TENURE27 1. @1985 TENURE28 1. @1986 TENURE29 1. @1987 TENURE30 1. @1988 TENURE31 1. @1989 TENURE32 1. @1990 PUBHS_01 1. @1991 PUBHS_02 1. @1992 PUBHS_03 1. @1993 PUBHS_04 1. @1994 PUBHS_05 1. @1995 PUBHS_06 1. @1996 PUBHS_07 1. @1997 PUBHS_08 1. @1998 PUBHS_09 1. @1999 PUBHS_10 1. @2000 PUBHS_11 1. @2001 PUBHS_12 1. @2002 PUBHS_13 1. @2003 PUBHS_14 1. @2004 PUBHS_15 1. @2005 PUBHS_16 1. @2006 PUBHS_17 1. @2007 PUBHS_18 1. @2008 PUBHS_19 1. @2009 PUBHS_20 1. @2010 PUBHS_21 1. @2011 PUBHS_22 1. @2012 PUBHS_23 1. @2013 PUBHS_24 1. @2014 PUBHS_25 1. @2015 PUBHS_26 1. @2016 PUBHS_27 1. @2017 PUBHS_28 1. @2018 PUBHS_29 1. @2019 PUBHS_30 1. @2020 PUBHS_31 1. @2021 PUBHS_32 1. @2022 LOW_RE01 1. @2023 LOW_RE02 1. @2024 LOW_RE03 1. @2025 LOW_RE04 1. @2026 LOW_RE05 1. @2027 LOW_RE06 1. @2028 LOW_RE07 1. @2029 LOW_RE08 1. @2030 LOW_RE09 1. @2031 LOW_RE10 1. @2032 LOW_RE11 1. @2033 LOW_RE12 1. @2034 LOW_RE13 1. @2035 LOW_RE14 1. @2036 LOW_RE15 1. @2037 LOW_RE16 1. @2038 LOW_RE17 1. @2039 LOW_RE18 1. @2040 LOW_RE19 1. @2041 LOW_RE20 1. @2042 LOW_RE21 1. @2043 LOW_RE22 1. @2044 LOW_RE23 1. @2045 LOW_RE24 1. @2046 LOW_RE25 1. @2047 LOW_RE26 1. @2048 LOW_RE27 1. @2049 LOW_RE28 1. @2050 LOW_RE29 1. @2051 LOW_RE30 1. @2052 LOW_RE31 1. @2053 LOW_RE32 1. @2054 ADDID51 2. @2056 ADDID52 2. @2058 ADDID53 2. @2060 ADDID54 2. @2062 ADDID55 2. @2064 ADDID56 2. @2066 ADDID57 2. @2068 ADDID58 2. @2070 ENRGY_Y1 1. @2071 ENRGY_Y2 1. @2072 ENRGY_Y3 1. @2073 ENRGY_Y4 1. @2074 ENRGY_Y5 1. @2075 ENRGY_Y6 1. @2076 ENRGY_Y7 1. @2077 ENRGY_Y8 1. @2078 H_ENRGY1 1. @2079 H_ENRGY2 1. @2080 H_ENRGY3 1. @2081 H_ENRGY4 1. @2082 H_ENRGY5 1. @2083 H_ENRGY6 1. @2084 H_ENRGY7 1. @2085 H_ENRGY8 1. @2086 H_48241 6. @2092 H_48242 6. @2098 H_48243 6. @2104 H_48244 6. @2110 H_48245 6. @2116 H_48246 6. @2122 H_48247 6. @2128 H_48248 6. @2134 H_LUNCH1 1. @2135 H_LUNCH2 1. @2136 H_LUNCH3 1. @2137 H_LUNCH4 1. @2138 H_LUNCH5 1. @2139 H_LUNCH6 1. @2140 H_LUNCH7 1. @2141 H_LUNCH8 1. @2142 H_48341 2. @2144 H_48342 2. @2146 H_48343 2. @2148 H_48344 2. @2150 H_48345 2. @2152 H_48346 2. @2154 H_48347 2. @2156 H_48348 2. @2158 H_BREAK1 1. @2159 H_BREAK2 1. @2160 H_BREAK3 1. @2161 H_BREAK4 1. @2162 H_BREAK5 1. @2163 H_BREAK6 1. @2164 H_BREAK7 1. @2165 H_BREAK8 1. @2166 H_48301 2. @2168 H_48302 2. @2170 H_48303 2. @2172 H_48304 2. @2174 H_48305 2. @2176 H_48306 2. @2178 H_48307 2. @2180 H_48308 2. @2182 PUBRNTYN 1. @2183 PUBRNAMT 6. @2189 UTLPAYYN 1. @2190 FULLRENT 6. @2196 STATE_1 2. @2198 STATE_2 2. @2200 STATE_3 2. @2202 STATE_4 2. @2204 STATE_5 2. @2206 STATE_6 2. @2208 STATE_7 2. @2210 STATE_8 2. @2212 SC1332 2. @2214 SC1334 2. @2216 SC1336 3. @2219 SC1346 2. @2221 SC1348 2. @2223 SC1360 1. @2224 SC1418 1. @2225 SC1456 1. @2226 MEDCODE 2. @2228 SC1468 1. @2229 SC1472 2. @2231 DISAB 1. @2232 ATT_SCH1 1. @2233 ATT_SCH2 1. @2234 ATT_SCH3 1. @2235 ATT_SCH4 1. @2236 ATT_SCH5 1. @2237 ATT_SCH6 1. @2238 ATT_SCH7 1. @2239 ATT_SCH8 1. @2240 ENRL_M01 1. @2241 ENRL_M02 1. @2242 ENRL_M03 1. @2243 ENRL_M04 1. @2244 ENRL_M05 1. @2245 ENRL_M06 1. @2246 ENRL_M07 1. @2247 ENRL_M08 1. @2248 ENRL_M09 1. @2249 ENRL_M10 1. @2250 ENRL_M11 1. @2251 ENRL_M12 1. @2252 ENRL_M13 1. @2253 ENRL_M14 1. @2254 ENRL_M15 1. @2255 ENRL_M16 1. @2256 ENRL_M17 1. @2257 ENRL_M18 1. @2258 ENRL_M19 1. @2259 ENRL_M20 1. @2260 ENRL_M21 1. @2261 ENRL_M22 1. @2262 ENRL_M23 1. @2263 ENRL_M24 1. @2264 ENRL_M25 1. @2265 ENRL_M26 1. @2266 ENRL_M27 1. @2267 ENRL_M28 1. @2268 ENRL_M29 1. @2269 ENRL_M30 1. @2270 ENRL_M31 1. @2271 ENRL_M32 1. @2272 ED_LEVE1 2. @2274 ED_LEVE2 2. @2276 ED_LEVE3 2. @2278 ED_LEVE4 2. @2280 ED_LEVE5 2. @2282 ED_LEVE6 2. @2284 ED_LEVE7 2. @2286 ED_LEVE8 2. @2288 ED_FINA1 1. @2289 ED_FINA2 1. @2290 ED_FINA3 1. @2291 ED_FINA4 1. @2292 ED_FINA5 1. @2293 ED_FINA6 1. @2294 ED_FINA7 1. @2295 ED_FINA8 1. @2296 SC16721 1. @2297 SC16722 1. @2298 SC16723 1. @2299 SC16724 1. @2300 SC16725 1. @2301 SC16726 1. @2302 SC16727 1. @2303 SC16728 1. @2304 SC16741 1. @2305 SC16742 1. @2306 SC16743 1. @2307 SC16744 1. @2308 SC16745 1. @2309 SC16746 1. @2310 SC16747 1. @2311 SC16748 1. @2312 SC16761 1. @2313 SC16762 1. @2314 SC16763 1. @2315 SC16764 1. @2316 SC16765 1. @2317 SC16766 1. @2318 SC16767 1. @2319 SC16768 1. @2320 SC16781 1. @2321 SC16782 1. @2322 SC16783 1. @2323 SC16784 1. @2324 SC16785 1. @2325 SC16786 1. @2326 SC16787 1. @2327 SC16788 1. @2328 SC16801 1. @2329 SC16802 1. @2330 SC16803 1. @2331 SC16804 1. @2332 SC16805 1. @2333 SC16806 1. @2334 SC16807 1. @2335 SC16808 1. @2336 SC16821 1. @2337 SC16822 1. @2338 SC16823 1. @2339 SC16824 1. @2340 SC16825 1. @2341 SC16826 1. @2342 SC16827 1. @2343 SC16828 1. @2344 SC16841 1. @2345 SC16842 1. @2346 SC16843 1. @2347 SC16844 1. @2348 SC16845 1. @2349 SC16846 1. @2350 SC16847 1. @2351 SC16848 1. @2352 SC16861 1. @2353 SC16862 1. @2354 SC16863 1. @2355 SC16864 1. @2356 SC16865 1. @2357 SC16866 1. @2358 SC16867 1. @2359 SC16868 1. @2360 SC16881 1. @2361 SC16882 1. @2362 SC16883 1. @2363 SC16884 1. @2364 SC16885 1. @2365 SC16886 1. @2366 SC16887 1. @2367 SC16888 1. @2368 SC16901 1. @2369 SC16902 1. @2370 SC16903 1. @2371 SC16904 1. @2372 SC16905 1. @2373 SC16906 1. @2374 SC16907 1. @2375 SC16908 1. @2376 SC16921 1. @2377 SC16922 1. @2378 SC16923 1. @2379 SC16924 1. @2380 SC16925 1. @2381 SC16926 1. @2382 SC16927 1. @2383 SC16928 1. @2384 SC16961 1. @2385 SC16962 1. @2386 SC16963 1. @2387 SC16964 1. @2388 SC16965 1. @2389 SC16966 1. @2390 SC16967 1. @2391 SC16968 1. @2392 PP_INC01 8. @2400 PP_INC02 8. @2408 PP_INC03 8. @2416 PP_INC04 8. @2424 PP_INC05 8. @2432 PP_INC06 8. @2440 PP_INC07 8. @2448 PP_INC08 8. @2456 PP_INC09 8. @2464 PP_INC10 8. @2472 PP_INC11 8. @2480 PP_INC12 8. @2488 PP_INC13 8. @2496 PP_INC14 8. @2504 PP_INC15 8. @2512 PP_INC16 8. @2520 PP_INC17 8. @2528 PP_INC18 8. @2536 PP_INC19 8. @2544 PP_INC20 8. @2552 PP_INC21 8. @2560 PP_INC22 8. @2568 PP_INC23 8. @2576 PP_INC24 8. @2584 PP_INC25 8. @2592 PP_INC26 8. @2600 PP_INC27 8. @2608 PP_INC28 8. @2616 PP_INC29 8. @2624 PP_INC30 8. @2632 PP_INC31 8. @2640 PP_INC32 8. @2648 PP_EAR01 7. @2655 PP_EAR02 7. @2662 PP_EAR03 7. @2669 PP_EAR04 7. @2676 PP_EAR05 7. @2683 PP_EAR06 7. @2690 PP_EAR07 7. @2697 PP_EAR08 7. @2704 PP_EAR09 7. @2711 PP_EAR10 7. @2718 PP_EAR11 7. @2725 PP_EAR12 7. @2732 PP_EAR13 7. @2739 PP_EAR14 7. @2746 PP_EAR15 7. @2753 PP_EAR16 7. @2760 PP_EAR17 7. @2767 PP_EAR18 7. @2774 PP_EAR19 7. @2781 PP_EAR20 7. @2788 PP_EAR21 7. @2795 PP_EAR22 7. @2802 PP_EAR23 7. @2809 PP_EAR24 7. @2816 PP_EAR25 7. @2823 PP_EAR26 7. @2830 PP_EAR27 7. @2837 PP_EAR28 7. @2844 PP_EAR29 7. @2851 PP_EAR30 7. @2858 PP_EAR31 7. @2865 PP_EAR32 7. @2872 FF_INC01 8. @2880 FF_INC02 8. @2888 FF_INC03 8. @2896 FF_INC04 8. @2904 FF_INC05 8. @2912 FF_INC06 8. @2920 FF_INC07 8. @2928 FF_INC08 8. @2936 FF_INC09 8. @2944 FF_INC10 8. @2952 FF_INC11 8. @2960 FF_INC12 8. @2968 FF_INC13 8. @2976 FF_INC14 8. @2984 FF_INC15 8. @2992 FF_INC16 8. @3000 FF_INC17 8. @3008 FF_INC18 8. @3016 FF_INC19 8. @3024 FF_INC20 8. @3032 FF_INC21 8. @3040 FF_INC22 8. @3048 FF_INC23 8. @3056 FF_INC24 8. @3064 FF_INC25 8. @3072 FF_INC26 8. @3080 FF_INC27 8. @3088 FF_INC28 8. @3096 FF_INC29 8. @3104 FF_INC30 8. @3112 FF_INC31 8. @3120 FF_INC32 8. @3128 FF_EAR01 6. @3134 FF_EAR02 6. @3140 FF_EAR03 6. @3146 FF_EAR04 6. @3152 FF_EAR05 6. @3158 FF_EAR06 6. @3164 FF_EAR07 6. @3170 FF_EAR08 6. @3176 FF_EAR09 6. @3182 FF_EAR10 6. @3188 FF_EAR11 6. @3194 FF_EAR12 6. @3200 FF_EAR13 6. @3206 FF_EAR14 6. @3212 FF_EAR15 6. @3218 FF_EAR16 6. @3224 FF_EAR17 6. @3230 FF_EAR18 6. @3236 FF_EAR19 6. @3242 FF_EAR20 6. @3248 FF_EAR21 6. @3254 FF_EAR22 6. @3260 FF_EAR23 6. @3266 FF_EAR24 6. @3272 FF_EAR25 6. @3278 FF_EAR26 6. @3284 FF_EAR27 6. @3290 FF_EAR28 6. @3296 FF_EAR29 6. @3302 FF_EAR30 6. @3308 FF_EAR31 6. @3314 FF_EAR32 6. @3320 FF_PRO01 6. @3326 FF_PRO02 6. @3332 FF_PRO03 6. @3338 FF_PRO04 6. @3344 FF_PRO05 6. @3350 FF_PRO06 6. @3356 FF_PRO07 6. @3362 FF_PRO08 6. @3368 FF_PRO09 6. @3374 FF_PRO10 6. @3380 FF_PRO11 6. @3386 FF_PRO12 6. @3392 FF_PRO13 6. @3398 FF_PRO14 6. @3404 FF_PRO15 6. @3410 FF_PRO16 6. @3416 FF_PRO17 6. @3422 FF_PRO18 6. @3428 FF_PRO19 6. @3434 FF_PRO20 6. @3440 FF_PRO21 6. @3446 FF_PRO22 6. @3452 FF_PRO23 6. @3458 FF_PRO24 6. @3464 FF_PRO25 6. @3470 FF_PRO26 6. @3476 FF_PRO27 6. @3482 FF_PRO28 6. @3488 FF_PRO29 6. @3494 FF_PRO30 6. @3500 FF_PRO31 6. @3506 FF_PRO32 6. @3512 FF_TRA01 6. @3518 FF_TRA02 6. @3524 FF_TRA03 6. @3530 FF_TRA04 6. @3536 FF_TRA05 6. @3542 FF_TRA06 6. @3548 FF_TRA07 6. @3554 FF_TRA08 6. @3560 FF_TRA09 6. @3566 FF_TRA10 6. @3572 FF_TRA11 6. @3578 FF_TRA12 6. @3584 FF_TRA13 6. @3590 FF_TRA14 6. @3596 FF_TRA15 6. @3602 FF_TRA16 6. @3608 FF_TRA17 6. @3614 FF_TRA18 6. @3620 FF_TRA19 6. @3626 FF_TRA20 6. @3632 FF_TRA21 6. @3638 FF_TRA22 6. @3644 FF_TRA23 6. @3650 FF_TRA24 6. @3656 FF_TRA25 6. @3662 FF_TRA26 6. @3668 FF_TRA27 6. @3674 FF_TRA28 6. @3680 FF_TRA29 6. @3686 FF_TRA30 6. @3692 FF_TRA31 6. @3698 FF_TRA32 6. @3704 FF_OTH01 6. @3710 FF_OTH02 6. @3716 FF_OTH03 6. @3722 FF_OTH04 6. @3728 FF_OTH05 6. @3734 FF_OTH06 6. @3740 FF_OTH07 6. @3746 FF_OTH08 6. @3752 FF_OTH09 6. @3758 FF_OTH10 6. @3764 FF_OTH11 6. @3770 FF_OTH12 6. @3776 FF_OTH13 6. @3782 FF_OTH14 6. @3788 FF_OTH15 6. @3794 FF_OTH16 6. @3800 FF_OTH17 6. @3806 FF_OTH18 6. @3812 FF_OTH19 6. @3818 FF_OTH20 6. @3824 FF_OTH21 6. @3830 FF_OTH22 6. @3836 FF_OTH23 6. @3842 FF_OTH24 6. @3848 FF_OTH25 6. @3854 FF_OTH26 6. @3860 FF_OTH27 6. @3866 FF_OTH28 6. @3872 FF_OTH29 6. @3878 FF_OTH30 6. @3884 FF_OTH31 6. @3890 FF_OTH32 6. @3896 HH_INC01 8. @3904 HH_INC02 8. @3912 HH_INC03 8. @3920 HH_INC04 8. @3928 HH_INC05 8. @3936 HH_INC06 8. @3944 HH_INC07 8. @3952 HH_INC08 8. @3960 HH_INC09 8. @3968 HH_INC10 8. @3976 HH_INC11 8. @3984 HH_INC12 8. @3992 HH_INC13 8. @4000 HH_INC14 8. @4008 HH_INC15 8. @4016 HH_INC16 8. @4024 HH_INC17 8. @4032 HH_INC18 8. @4040 HH_INC19 8. @4048 HH_INC20 8. @4056 HH_INC21 8. @4064 HH_INC22 8. @4072 HH_INC23 8. @4080 HH_INC24 8. @4088 HH_INC25 8. @4096 HH_INC26 8. @4104 HH_INC27 8. @4112 HH_INC28 8. @4120 HH_INC29 8. @4128 HH_INC30 8. @4136 HH_INC31 8. @4144 HH_INC32 8. @4152 HH_EAR01 6. @4158 HH_EAR02 6. @4164 HH_EAR03 6. @4170 HH_EAR04 6. @4176 HH_EAR05 6. @4182 HH_EAR06 6. @4188 HH_EAR07 6. @4194 HH_EAR08 6. @4200 HH_EAR09 6. @4206 HH_EAR10 6. @4212 HH_EAR11 6. @4218 HH_EAR12 6. @4224 HH_EAR13 6. @4230 HH_EAR14 6. @4236 HH_EAR15 6. @4242 HH_EAR16 6. @4248 HH_EAR17 6. @4254 HH_EAR18 6. @4260 HH_EAR19 6. @4266 HH_EAR20 6. @4272 HH_EAR21 6. @4278 HH_EAR22 6. @4284 HH_EAR23 6. @4290 HH_EAR24 6. @4296 HH_EAR25 6. @4302 HH_EAR26 6. @4308 HH_EAR27 6. @4314 HH_EAR28 6. @4320 HH_EAR29 6. @4326 HH_EAR30 6. @4332 HH_EAR31 6. @4338 HH_EAR32 6. @4344 HH_PRO01 6. @4350 HH_PRO02 6. @4356 HH_PRO03 6. @4362 HH_PRO04 6. @4368 HH_PRO05 6. @4374 HH_PRO06 6. @4380 HH_PRO07 6. @4386 HH_PRO08 6. @4392 HH_PRO09 6. @4398 HH_PRO10 6. @4404 HH_PRO11 6. @4410 HH_PRO12 6. @4416 HH_PRO13 6. @4422 HH_PRO14 6. @4428 HH_PRO15 6. @4434 HH_PRO16 6. @4440 HH_PRO17 6. @4446 HH_PRO18 6. @4452 HH_PRO19 6. @4458 HH_PRO20 6. @4464 HH_PRO21 6. @4470 HH_PRO22 6. @4476 HH_PRO23 6. @4482 HH_PRO24 6. @4488 HH_PRO25 6. @4494 HH_PRO26 6. @4500 HH_PRO27 6. @4506 HH_PRO28 6. @4512 HH_PRO29 6. @4518 HH_PRO30 6. @4524 HH_PRO31 6. @4530 HH_PRO32 6. @4536 HH_TRA01 6. @4542 HH_TRA02 6. @4548 HH_TRA03 6. @4554 HH_TRA04 6. @4560 HH_TRA05 6. @4566 HH_TRA06 6. @4572 HH_TRA07 6. @4578 HH_TRA08 6. @4584 HH_TRA09 6. @4590 HH_TRA10 6. @4596 HH_TRA11 6. @4602 HH_TRA12 6. @4608 HH_TRA13 6. @4614 HH_TRA14 6. @4620 HH_TRA15 6. @4626 HH_TRA16 6. @4632 HH_TRA17 6. @4638 HH_TRA18 6. @4644 HH_TRA19 6. @4650 HH_TRA20 6. @4656 HH_TRA21 6. @4662 HH_TRA22 6. @4668 HH_TRA23 6. @4674 HH_TRA24 6. @4680 HH_TRA25 6. @4686 HH_TRA26 6. @4692 HH_TRA27 6. @4698 HH_TRA28 6. @4704 HH_TRA29 6. @4710 HH_TRA30 6. @4716 HH_TRA31 6. @4722 HH_TRA32 6. @4728 HH_OTH01 6. @4734 HH_OTH02 6. @4740 HH_OTH03 6. @4746 HH_OTH04 6. @4752 HH_OTH05 6. @4758 HH_OTH06 6. @4764 HH_OTH07 6. @4770 HH_OTH08 6. @4776 HH_OTH09 6. @4782 HH_OTH10 6. @4788 HH_OTH11 6. @4794 HH_OTH12 6. @4800 HH_OTH13 6. @4806 HH_OTH14 6. @4812 HH_OTH15 6. @4818 HH_OTH16 6. @4824 HH_OTH17 6. @4830 HH_OTH18 6. @4836 HH_OTH19 6. @4842 HH_OTH20 6. @4848 HH_OTH21 6. @4854 HH_OTH22 6. @4860 HH_OTH23 6. @4866 HH_OTH24 6. @4872 HH_OTH25 6. @4878 HH_OTH26 6. @4884 HH_OTH27 6. @4890 HH_OTH28 6. @4896 HH_OTH29 6. @4902 HH_OTH30 6. @4908 HH_OTH31 6. @4914 HH_OTH32 6. @4920 FF_POV01 5. @4925 FF_POV02 5. @4930 FF_POV03 5. @4935 FF_POV04 5. @4940 FF_POV05 5. @4945 FF_POV06 5. @4950 FF_POV07 5. @4955 FF_POV08 5. @4960 FF_POV09 5. @4965 FF_POV10 5. @4970 FF_POV11 5. @4975 FF_POV12 5. @4980 FF_POV13 5. @4985 FF_POV14 5. @4990 FF_POV15 5. @4995 FF_POV16 5. @5000 FF_POV17 5. @5005 FF_POV18 5. @5010 FF_POV19 5. @5015 FF_POV20 5. @5020 FF_POV21 5. @5025 FF_POV22 5. @5030 FF_POV23 5. @5035 FF_POV24 5. @5040 FF_POV25 5. @5045 FF_POV26 5. @5050 FF_POV27 5. @5055 FF_POV28 5. @5060 FF_POV29 5. @5065 FF_POV30 5. @5070 FF_POV31 5. @5075 FF_POV32 5. @5080 TELEPHON 1. @5081 ESR_01 1. @5082 ESR_02 1. @5083 ESR_03 1. @5084 ESR_04 1. @5085 ESR_05 1. @5086 ESR_06 1. @5087 ESR_07 1. @5088 ESR_08 1. @5089 ESR_09 1. @5090 ESR_10 1. @5091 ESR_11 1. @5092 ESR_12 1. @5093 ESR_13 1. @5094 ESR_14 1. @5095 ESR_15 1. @5096 ESR_16 1. @5097 ESR_17 1. @5098 ESR_18 1. @5099 ESR_19 1. @5100 ESR_20 1. @5101 ESR_21 1. @5102 ESR_22 1. @5103 ESR_23 1. @5104 ESR_24 1. @5105 ESR_25 1. @5106 ESR_26 1. @5107 ESR_27 1. @5108 ESR_28 1. @5109 ESR_29 1. @5110 ESR_30 1. @5111 ESR_31 1. @5112 ESR_32 1. @5113 WKSPER01 1. @5114 WKSPER02 1. @5115 WKSPER03 1. @5116 WKSPER04 1. @5117 WKSPER05 1. @5118 WKSPER06 1. @5119 WKSPER07 1. @5120 WKSPER08 1. @5121 WKSPER09 1. @5122 WKSPER10 1. @5123 WKSPER11 1. @5124 WKSPER12 1. @5125 WKSPER13 1. @5126 WKSPER14 1. @5127 WKSPER15 1. @5128 WKSPER16 1. @5129 WKSPER17 1. @5130 WKSPER18 1. @5131 WKSPER19 1. @5132 WKSPER20 1. @5133 WKSPER21 1. @5134 WKSPER22 1. @5135 WKSPER23 1. @5136 WKSPER24 1. @5137 WKSPER25 1. @5138 WKSPER26 1. @5139 WKSPER27 1. @5140 WKSPER28 1. @5141 WKSPER29 1. @5142 WKSPER30 1. @5143 WKSPER31 1. @5144 WKSPER32 1. @5145 WKSJB_01 1. @5146 WKSJB_02 1. @5147 WKSJB_03 1. @5148 WKSJB_04 1. @5149 WKSJB_05 1. @5150 WKSJB_06 1. @5151 WKSJB_07 1. @5152 WKSJB_08 1. @5153 WKSJB_09 1. @5154 WKSJB_10 1. @5155 WKSJB_11 1. @5156 WKSJB_12 1. @5157 WKSJB_13 1. @5158 WKSJB_14 1. @5159 WKSJB_15 1. @5160 WKSJB_16 1. @5161 WKSJB_17 1. @5162 WKSJB_18 1. @5163 WKSJB_19 1. @5164 WKSJB_20 1. @5165 WKSJB_21 1. @5166 WKSJB_22 1. @5167 WKSJB_23 1. @5168 WKSJB_24 1. @5169 WKSJB_25 1. @5170 WKSJB_26 1. @5171 WKSJB_27 1. @5172 WKSJB_28 1. @5173 WKSJB_29 1. @5174 WKSJB_30 1. @5175 WKSJB_31 1. @5176 WKSJB_32 1. @5177 MTHWOP01 1. @5178 MTHWOP02 1. @5179 MTHWOP03 1. @5180 MTHWOP04 1. @5181 MTHWOP05 1. @5182 MTHWOP06 1. @5183 MTHWOP07 1. @5184 MTHWOP08 1. @5185 MTHWOP09 1. @5186 MTHWOP10 1. @5187 MTHWOP11 1. @5188 MTHWOP12 1. @5189 MTHWOP13 1. @5190 MTHWOP14 1. @5191 MTHWOP15 1. @5192 MTHWOP16 1. @5193 MTHWOP17 1. @5194 MTHWOP18 1. @5195 MTHWOP19 1. @5196 MTHWOP20 1. @5197 MTHWOP21 1. @5198 MTHWOP22 1. @5199 MTHWOP23 1. @5200 MTHWOP24 1. @5201 MTHWOP25 1. @5202 MTHWOP26 1. @5203 MTHWOP27 1. @5204 MTHWOP28 1. @5205 MTHWOP29 1. @5206 MTHWOP30 1. @5207 MTHWOP31 1. @5208 MTHWOP32 1. @5209 WEEKSL01 1. @5210 WEEKSL02 1. @5211 WEEKSL03 1. @5212 WEEKSL04 1. @5213 WEEKSL05 1. @5214 WEEKSL06 1. @5215 WEEKSL07 1. @5216 WEEKSL08 1. @5217 WEEKSL09 1. @5218 WEEKSL10 1. @5219 WEEKSL11 1. @5220 WEEKSL12 1. @5221 WEEKSL13 1. @5222 WEEKSL14 1. @5223 WEEKSL15 1. @5224 WEEKSL16 1. @5225 WEEKSL17 1. @5226 WEEKSL18 1. @5227 WEEKSL19 1. @5228 WEEKSL20 1. @5229 WEEKSL21 1. @5230 WEEKSL22 1. @5231 WEEKSL23 1. @5232 WEEKSL24 1. @5233 WEEKSL25 1. @5234 WEEKSL26 1. @5235 WEEKSL27 1. @5236 WEEKSL28 1. @5237 WEEKSL29 1. @5238 WEEKSL30 1. @5239 WEEKSL31 1. @5240 WEEKSL32 1. @5241 SC12301 2. @5243 SC12302 2. @5245 SC12303 2. @5247 SC12304 2. @5249 SC12305 2. @5251 SC12306 2. @5253 SC12307 2. @5255 SC12308 2. @5257 WS1_EI01 2. @5259 WS1_EI02 2. @5261 WS1_EI03 2. @5263 WS1_EI04 2. @5265 WS1_EI05 2. @5267 WS1_EI06 2. @5269 WS1_EI07 2. @5271 WS1_EI08 2. @5273 WS1_EI09 2. @5275 WS1_EI10 2. @5277 WS1_EI11 2. @5279 WS1_EI12 2. @5281 WS1_EI13 2. @5283 WS1_EI14 2. @5285 WS1_EI15 2. @5287 WS1_EI16 2. @5289 WS1_EI17 2. @5291 WS1_EI18 2. @5293 WS1_EI19 2. @5295 WS1_EI20 2. @5297 WS1_EI21 2. @5299 WS1_EI22 2. @5301 WS1_EI23 2. @5303 WS1_EI24 2. @5305 WS1_EI25 2. @5307 WS1_EI26 2. @5309 WS1_EI27 2. @5311 WS1_EI28 2. @5313 WS1_EI29 2. @5315 WS1_EI30 2. @5317 WS1_EI31 2. @5319 WS1_EI32 2. @5321 WS2_EI01 2. @5323 WS2_EI02 2. @5325 WS2_EI03 2. @5327 WS2_EI04 2. @5329 WS2_EI05 2. @5331 WS2_EI06 2. @5333 WS2_EI07 2. @5335 WS2_EI08 2. @5337 WS2_EI09 2. @5339 WS2_EI10 2. @5341 WS2_EI11 2. @5343 WS2_EI12 2. @5345 WS2_EI13 2. @5347 WS2_EI14 2. @5349 WS2_EI15 2. @5351 WS2_EI16 2. @5353 WS2_EI17 2. @5355 WS2_EI18 2. @5357 WS2_EI19 2. @5359 WS2_EI20 2. @5361 WS2_EI21 2. @5363 WS2_EI22 2. @5365 WS2_EI23 2. @5367 WS2_EI24 2. @5369 WS2_EI25 2. @5371 WS2_EI26 2. @5373 WS2_EI27 2. @5375 WS2_EI28 2. @5377 WS2_EI29 2. @5379 WS2_EI30 2. @5381 WS2_EI31 2. @5383 WS2_EI32 2. @5385 WS1_CL01 1. @5386 WS1_CL02 1. @5387 WS1_CL03 1. @5388 WS1_CL04 1. @5389 WS1_CL05 1. @5390 WS1_CL06 1. @5391 WS1_CL07 1. @5392 WS1_CL08 1. @5393 WS1_CL09 1. @5394 WS1_CL10 1. @5395 WS1_CL11 1. @5396 WS1_CL12 1. @5397 WS1_CL13 1. @5398 WS1_CL14 1. @5399 WS1_CL15 1. @5400 WS1_CL16 1. @5401 WS1_CL17 1. @5402 WS1_CL18 1. @5403 WS1_CL19 1. @5404 WS1_CL20 1. @5405 WS1_CL21 1. @5406 WS1_CL22 1. @5407 WS1_CL23 1. @5408 WS1_CL24 1. @5409 WS1_CL25 1. @5410 WS1_CL26 1. @5411 WS1_CL27 1. @5412 WS1_CL28 1. @5413 WS1_CL29 1. @5414 WS1_CL30 1. @5415 WS1_CL31 1. @5416 WS1_CL32 1. @5417 WS2_CL01 1. @5418 WS2_CL02 1. @5419 WS2_CL03 1. @5420 WS2_CL04 1. @5421 WS2_CL05 1. @5422 WS2_CL06 1. @5423 WS2_CL07 1. @5424 WS2_CL08 1. @5425 WS2_CL09 1. @5426 WS2_CL10 1. @5427 WS2_CL11 1. @5428 WS2_CL12 1. @5429 WS2_CL13 1. @5430 WS2_CL14 1. @5431 WS2_CL15 1. @5432 WS2_CL16 1. @5433 WS2_CL17 1. @5434 WS2_CL18 1. @5435 WS2_CL19 1. @5436 WS2_CL20 1. @5437 WS2_CL21 1. @5438 WS2_CL22 1. @5439 WS2_CL23 1. @5440 WS2_CL24 1. @5441 WS2_CL25 1. @5442 WS2_CL26 1. @5443 WS2_CL27 1. @5444 WS2_CL28 1. @5445 WS2_CL29 1. @5446 WS2_CL30 1. @5447 WS2_CL31 1. @5448 WS2_CL32 1. @5449 WS1_OC01 3. @5452 WS1_OC02 3. @5455 WS1_OC03 3. @5458 WS1_OC04 3. @5461 WS1_OC05 3. @5464 WS1_OC06 3. @5467 WS1_OC07 3. @5470 WS1_OC08 3. @5473 WS1_OC09 3. @5476 WS1_OC10 3. @5479 WS1_OC11 3. @5482 WS1_OC12 3. @5485 WS1_OC13 3. @5488 WS1_OC14 3. @5491 WS1_OC15 3. @5494 WS1_OC16 3. @5497 WS1_OC17 3. @5500 WS1_OC18 3. @5503 WS1_OC19 3. @5506 WS1_OC20 3. @5509 WS1_OC21 3. @5512 WS1_OC22 3. @5515 WS1_OC23 3. @5518 WS1_OC24 3. @5521 WS1_OC25 3. @5524 WS1_OC26 3. @5527 WS1_OC27 3. @5530 WS1_OC28 3. @5533 WS1_OC29 3. @5536 WS1_OC30 3. @5539 WS1_OC31 3. @5542 WS1_OC32 3. @5545 WS2_OC01 3. @5548 WS2_OC02 3. @5551 WS2_OC03 3. @5554 WS2_OC04 3. @5557 WS2_OC05 3. @5560 WS2_OC06 3. @5563 WS2_OC07 3. @5566 WS2_OC08 3. @5569 WS2_OC09 3. @5572 WS2_OC10 3. @5575 WS2_OC11 3. @5578 WS2_OC12 3. @5581 WS2_OC13 3. @5584 WS2_OC14 3. @5587 WS2_OC15 3. @5590 WS2_OC16 3. @5593 WS2_OC17 3. @5596 WS2_OC18 3. @5599 WS2_OC19 3. @5602 WS2_OC20 3. @5605 WS2_OC21 3. @5608 WS2_OC22 3. @5611 WS2_OC23 3. @5614 WS2_OC24 3. @5617 WS2_OC25 3. @5620 WS2_OC26 3. @5623 WS2_OC27 3. @5626 WS2_OC28 3. @5629 WS2_OC29 3. @5632 WS2_OC30 3. @5635 WS2_OC31 3. @5638 WS2_OC32 3. @5641 WS1_IN01 3. @5644 WS1_IN02 3. @5647 WS1_IN03 3. @5650 WS1_IN04 3. @5653 WS1_IN05 3. @5656 WS1_IN06 3. @5659 WS1_IN07 3. @5662 WS1_IN08 3. @5665 WS1_IN09 3. @5668 WS1_IN10 3. @5671 WS1_IN11 3. @5674 WS1_IN12 3. @5677 WS1_IN13 3. @5680 WS1_IN14 3. @5683 WS1_IN15 3. @5686 WS1_IN16 3. @5689 WS1_IN17 3. @5692 WS1_IN18 3. @5695 WS1_IN19 3. @5698 WS1_IN20 3. @5701 WS1_IN21 3. @5704 WS1_IN22 3. @5707 WS1_IN23 3. @5710 WS1_IN24 3. @5713 WS1_IN25 3. @5716 WS1_IN26 3. @5719 WS1_IN27 3. @5722 WS1_IN28 3. @5725 WS1_IN29 3. @5728 WS1_IN30 3. @5731 WS1_IN31 3. @5734 WS1_IN32 3. @5737 WS2_IN01 3. @5740 WS2_IN02 3. @5743 WS2_IN03 3. @5746 WS2_IN04 3. @5749 WS2_IN05 3. @5752 WS2_IN06 3. @5755 WS2_IN07 3. @5758 WS2_IN08 3. @5761 WS2_IN09 3. @5764 WS2_IN10 3. @5767 WS2_IN11 3. @5770 WS2_IN12 3. @5773 WS2_IN13 3. @5776 WS2_IN14 3. @5779 WS2_IN15 3. @5782 WS2_IN16 3. @5785 WS2_IN17 3. @5788 WS2_IN18 3. @5791 WS2_IN19 3. @5794 WS2_IN20 3. @5797 WS2_IN21 3. @5800 WS2_IN22 3. @5803 WS2_IN23 3. @5806 WS2_IN24 3. @5809 WS2_IN25 3. @5812 WS2_IN26 3. @5815 WS2_IN27 3. @5818 WS2_IN28 3. @5821 WS2_IN29 3. @5824 WS2_IN30 3. @5827 WS2_IN31 3. @5830 WS2_IN32 3. @5833 WS1_WK01 1. @5834 WS1_WK02 1. @5835 WS1_WK03 1. @5836 WS1_WK04 1. @5837 WS1_WK05 1. @5838 WS1_WK06 1. @5839 WS1_WK07 1. @5840 WS1_WK08 1. @5841 WS1_WK09 1. @5842 WS1_WK10 1. @5843 WS1_WK11 1. @5844 WS1_WK12 1. @5845 WS1_WK13 1. @5846 WS1_WK14 1. @5847 WS1_WK15 1. @5848 WS1_WK16 1. @5849 WS1_WK17 1. @5850 WS1_WK18 1. @5851 WS1_WK19 1. @5852 WS1_WK20 1. @5853 WS1_WK21 1. @5854 WS1_WK22 1. @5855 WS1_WK23 1. @5856 WS1_WK24 1. @5857 WS1_WK25 1. @5858 WS1_WK26 1. @5859 WS1_WK27 1. @5860 WS1_WK28 1. @5861 WS1_WK29 1. @5862 WS1_WK30 1. @5863 WS1_WK31 1. @5864 WS1_WK32 1. @5865 WS2_WK01 1. @5866 WS2_WK02 1. @5867 WS2_WK03 1. @5868 WS2_WK04 1. @5869 WS2_WK05 1. @5870 WS2_WK06 1. @5871 WS2_WK07 1. @5872 WS2_WK08 1. @5873 WS2_WK09 1. @5874 WS2_WK10 1. @5875 WS2_WK11 1. @5876 WS2_WK12 1. @5877 WS2_WK13 1. @5878 WS2_WK14 1. @5879 WS2_WK15 1. @5880 WS2_WK16 1. @5881 WS2_WK17 1. @5882 WS2_WK18 1. @5883 WS2_WK19 1. @5884 WS2_WK20 1. @5885 WS2_WK21 1. @5886 WS2_WK22 1. @5887 WS2_WK23 1. @5888 WS2_WK24 1. @5889 WS2_WK25 1. @5890 WS2_WK26 1. @5891 WS2_WK27 1. @5892 WS2_WK28 1. @5893 WS2_WK29 1. @5894 WS2_WK30 1. @5895 WS2_WK31 1. @5896 WS2_WK32 1. @5897 WS1_AM01 6. @5903 WS1_AM02 6. @5909 WS1_AM03 6. @5915 WS1_AM04 6. @5921 WS1_AM05 6. @5927 WS1_AM06 6. @5933 WS1_AM07 6. @5939 WS1_AM08 6. @5945 WS1_AM09 6. @5951 WS1_AM10 6. @5957 WS1_AM11 6. @5963 WS1_AM12 6. @5969 WS1_AM13 6. @5975 WS1_AM14 6. @5981 WS1_AM15 6. @5987 WS1_AM16 6. @5993 WS1_AM17 6. @5999 WS1_AM18 6. @6005 WS1_AM19 6. @6011 WS1_AM20 6. @6017 WS1_AM21 6. @6023 WS1_AM22 6. @6029 WS1_AM23 6. @6035 WS1_AM24 6. @6041 WS1_AM25 6. @6047 WS1_AM26 6. @6053 WS1_AM27 6. @6059 WS1_AM28 6. @6065 WS1_AM29 6. @6071 WS1_AM30 6. @6077 WS1_AM31 6. @6083 WS1_AM32 6. @6089 WS2_AM01 6. @6095 WS2_AM02 6. @6101 WS2_AM03 6. @6107 WS2_AM04 6. @6113 WS2_AM05 6. @6119 WS2_AM06 6. @6125 WS2_AM07 6. @6131 WS2_AM08 6. @6137 WS2_AM09 6. @6143 WS2_AM10 6. @6149 WS2_AM11 6. @6155 WS2_AM12 6. @6161 WS2_AM13 6. @6167 WS2_AM14 6. @6173 WS2_AM15 6. @6179 WS2_AM16 6. @6185 WS2_AM17 6. @6191 WS2_AM18 6. @6197 WS2_AM19 6. @6203 WS2_AM20 6. @6209 WS2_AM21 6. @6215 WS2_AM22 6. @6221 WS2_AM23 6. @6227 WS2_AM24 6. @6233 WS2_AM25 6. @6239 WS2_AM26 6. @6245 WS2_AM27 6. @6251 WS2_AM28 6. @6257 WS2_AM29 6. @6263 WS2_AM30 6. @6269 WS2_AM31 6. @6275 WS2_AM32 6. @6281 W2024_01 2. @6283 W2024_02 2. @6285 W2024_03 2. @6287 W2024_04 2. @6289 W2024_05 2. @6291 W2024_06 2. @6293 W2024_07 2. @6295 W2024_08 2. @6297 W2024_09 2. @6299 W2024_10 2. @6301 W2024_11 2. @6303 W2024_12 2. @6305 W2024_13 2. @6307 W2024_14 2. @6309 W2024_15 2. @6311 W2024_16 2. @6313 W2024_17 2. @6315 W2024_18 2. @6317 W2024_19 2. @6319 W2024_20 2. @6321 W2024_21 2. @6323 W2024_22 2. @6325 W2024_23 2. @6327 W2024_24 2. @6329 W2024_25 2. @6331 W2024_26 2. @6333 W2024_27 2. @6335 W2024_28 2. @6337 W2024_29 2. @6339 W2024_30 2. @6341 W2024_31 2. @6343 W2024_32 2. @6345 W2124_01 2. @6347 W2124_02 2. @6349 W2124_03 2. @6351 W2124_04 2. @6353 W2124_05 2. @6355 W2124_06 2. @6357 W2124_07 2. @6359 W2124_08 2. @6361 W2124_09 2. @6363 W2124_10 2. @6365 W2124_11 2. @6367 W2124_12 2. @6369 W2124_13 2. @6371 W2124_14 2. @6373 W2124_15 2. @6375 W2124_16 2. @6377 W2124_17 2. @6379 W2124_18 2. @6381 W2124_19 2. @6383 W2124_20 2. @6385 W2124_21 2. @6387 W2124_22 2. @6389 W2124_23 2. @6391 W2124_24 2. @6393 W2124_25 2. @6395 W2124_26 2. @6397 W2124_27 2. @6399 W2124_28 2. @6401 W2124_29 2. @6403 W2124_30 2. @6405 W2124_31 2. @6407 W2124_32 2. @6409 W2028_01 4.2 @6413 W2028_02 4.2 @6417 W2028_03 4.2 @6421 W2028_04 4.2 @6425 W2028_05 4.2 @6429 W2028_06 4.2 @6433 W2028_07 4.2 @6437 W2028_08 4.2 @6441 W2028_09 4.2 @6445 W2028_10 4.2 @6449 W2028_11 4.2 @6453 W2028_12 4.2 @6457 W2028_13 4.2 @6461 W2028_14 4.2 @6465 W2028_15 4.2 @6469 W2028_16 4.2 @6473 W2028_17 4.2 @6477 W2028_18 4.2 @6481 W2028_19 4.2 @6485 W2028_20 4.2 @6489 W2028_21 4.2 @6493 W2028_22 4.2 @6497 W2028_23 4.2 @6501 W2028_24 4.2 @6505 W2028_25 4.2 @6509 W2028_26 4.2 @6513 W2028_27 4.2 @6517 W2028_28 4.2 @6521 W2028_29 4.2 @6525 W2028_30 4.2 @6529 W2028_31 4.2 @6533 W2028_32 4.2 @6537 W2128_01 4.2 @6541 W2128_02 4.2 @6545 W2128_03 4.2 @6549 W2128_04 4.2 @6553 W2128_05 4.2 @6557 W2128_06 4.2 @6561 W2128_07 4.2 @6565 W2128_08 4.2 @6569 W2128_09 4.2 @6573 W2128_10 4.2 @6577 W2128_11 4.2 @6581 W2128_12 4.2 @6585 W2128_13 4.2 @6589 W2128_14 4.2 @6593 W2128_15 4.2 @6597 W2128_16 4.2 @6601 W2128_17 4.2 @6605 W2128_18 4.2 @6609 W2128_19 4.2 @6613 W2128_20 4.2 @6617 W2128_21 4.2 @6621 W2128_22 4.2 @6625 W2128_23 4.2 @6629 W2128_24 4.2 @6633 W2128_25 4.2 @6637 W2128_26 4.2 @6641 W2128_27 4.2 @6645 W2128_28 4.2 @6649 W2128_29 4.2 @6653 W2128_30 4.2 @6657 W2128_31 4.2 @6661 W2128_32 4.2 @6665 S2202_01 2. @6667 S2202_02 2. @6669 S2202_03 2. @6671 S2202_04 2. @6673 S2202_05 2. @6675 S2202_06 2. @6677 S2202_07 2. @6679 S2202_08 2. @6681 S2202_09 2. @6683 S2202_10 2. @6685 S2202_11 2. @6687 S2202_12 2. @6689 S2202_13 2. @6691 S2202_14 2. @6693 S2202_15 2. @6695 S2202_16 2. @6697 S2202_17 2. @6699 S2202_18 2. @6701 S2202_19 2. @6703 S2202_20 2. @6705 S2202_21 2. @6707 S2202_22 2. @6709 S2202_23 2. @6711 S2202_24 2. @6713 S2202_25 2. @6715 S2202_26 2. @6717 S2202_27 2. @6719 S2202_28 2. @6721 S2202_29 2. @6723 S2202_30 2. @6725 S2202_31 2. @6727 S2202_32 2. @6729 S2302_01 2. @6731 S2302_02 2. @6733 S2302_03 2. @6735 S2302_04 2. @6737 S2302_05 2. @6739 S2302_06 2. @6741 S2302_07 2. @6743 S2302_08 2. @6745 S2302_09 2. @6747 S2302_10 2. @6749 S2302_11 2. @6751 S2302_12 2. @6753 S2302_13 2. @6755 S2302_14 2. @6757 S2302_15 2. @6759 S2302_16 2. @6761 S2302_17 2. @6763 S2302_18 2. @6765 S2302_19 2. @6767 S2302_20 2. @6769 S2302_21 2. @6771 S2302_22 2. @6773 S2302_23 2. @6775 S2302_24 2. @6777 S2302_25 2. @6779 S2302_26 2. @6781 S2302_27 2. @6783 S2302_28 2. @6785 S2302_29 2. @6787 S2302_30 2. @6789 S2302_31 2. @6791 S2302_32 2. @6793 SE1_TY01 1. @6794 SE1_TY02 1. @6795 SE1_TY03 1. @6796 SE1_TY04 1. @6797 SE1_TY05 1. @6798 SE1_TY06 1. @6799 SE1_TY07 1. @6800 SE1_TY08 1. @6801 SE1_TY09 1. @6802 SE1_TY10 1. @6803 SE1_TY11 1. @6804 SE1_TY12 1. @6805 SE1_TY13 1. @6806 SE1_TY14 1. @6807 SE1_TY15 1. @6808 SE1_TY16 1. @6809 SE1_TY17 1. @6810 SE1_TY18 1. @6811 SE1_TY19 1. @6812 SE1_TY20 1. @6813 SE1_TY21 1. @6814 SE1_TY22 1. @6815 SE1_TY23 1. @6816 SE1_TY24 1. @6817 SE1_TY25 1. @6818 SE1_TY26 1. @6819 SE1_TY27 1. @6820 SE1_TY28 1. @6821 SE1_TY29 1. @6822 SE1_TY30 1. @6823 SE1_TY31 1. @6824 SE1_TY32 1. @6825 SE2_TY01 1. @6826 SE2_TY02 1. @6827 SE2_TY03 1. @6828 SE2_TY04 1. @6829 SE2_TY05 1. @6830 SE2_TY06 1. @6831 SE2_TY07 1. @6832 SE2_TY08 1. @6833 SE2_TY09 1. @6834 SE2_TY10 1. @6835 SE2_TY11 1. @6836 SE2_TY12 1. @6837 SE2_TY13 1. @6838 SE2_TY14 1. @6839 SE2_TY15 1. @6840 SE2_TY16 1. @6841 SE2_TY17 1. @6842 SE2_TY18 1. @6843 SE2_TY19 1. @6844 SE2_TY20 1. @6845 SE2_TY21 1. @6846 SE2_TY22 1. @6847 SE2_TY23 1. @6848 SE2_TY24 1. @6849 SE2_TY25 1. @6850 SE2_TY26 1. @6851 SE2_TY27 1. @6852 SE2_TY28 1. @6853 SE2_TY29 1. @6854 SE2_TY30 1. @6855 SE2_TY31 1. @6856 SE2_TY32 1. @6857 SE1_OC01 3. @6860 SE1_OC02 3. @6863 SE1_OC03 3. @6866 SE1_OC04 3. @6869 SE1_OC05 3. @6872 SE1_OC06 3. @6875 SE1_OC07 3. @6878 SE1_OC08 3. @6881 SE1_OC09 3. @6884 SE1_OC10 3. @6887 SE1_OC11 3. @6890 SE1_OC12 3. @6893 SE1_OC13 3. @6896 SE1_OC14 3. @6899 SE1_OC15 3. @6902 SE1_OC16 3. @6905 SE1_OC17 3. @6908 SE1_OC18 3. @6911 SE1_OC19 3. @6914 SE1_OC20 3. @6917 SE1_OC21 3. @6920 SE1_OC22 3. @6923 SE1_OC23 3. @6926 SE1_OC24 3. @6929 SE1_OC25 3. @6932 SE1_OC26 3. @6935 SE1_OC27 3. @6938 SE1_OC28 3. @6941 SE1_OC29 3. @6944 SE1_OC30 3. @6947 SE1_OC31 3. @6950 SE1_OC32 3. @6953 SE2_OC01 3. @6956 SE2_OC02 3. @6959 SE2_OC03 3. @6962 SE2_OC04 3. @6965 SE2_OC05 3. @6968 SE2_OC06 3. @6971 SE2_OC07 3. @6974 SE2_OC08 3. @6977 SE2_OC09 3. @6980 SE2_OC10 3. @6983 SE2_OC11 3. @6986 SE2_OC12 3. @6989 SE2_OC13 3. @6992 SE2_OC14 3. @6995 SE2_OC15 3. @6998 SE2_OC16 3. @7001 SE2_OC17 3. @7004 SE2_OC18 3. @7007 SE2_OC19 3. @7010 SE2_OC20 3. @7013 SE2_OC21 3. @7016 SE2_OC22 3. @7019 SE2_OC23 3. @7022 SE2_OC24 3. @7025 SE2_OC25 3. @7028 SE2_OC26 3. @7031 SE2_OC27 3. @7034 SE2_OC28 3. @7037 SE2_OC29 3. @7040 SE2_OC30 3. @7043 SE2_OC31 3. @7046 SE2_OC32 3. @7049 SE1_IN01 2. @7051 SE1_IN02 2. @7053 SE1_IN03 2. @7055 SE1_IN04 2. @7057 SE1_IN05 2. @7059 SE1_IN06 2. @7061 SE1_IN07 2. @7063 SE1_IN08 2. @7065 SE1_IN09 2. @7067 SE1_IN10 2. @7069 SE1_IN11 2. @7071 SE1_IN12 2. @7073 SE1_IN13 2. @7075 SE1_IN14 2. @7077 SE1_IN15 2. @7079 SE1_IN16 2. @7081 SE1_IN17 2. @7083 SE1_IN18 2. @7085 SE1_IN19 2. @7087 SE1_IN20 2. @7089 SE1_IN21 2. @7091 SE1_IN22 2. @7093 SE1_IN23 2. @7095 SE1_IN24 2. @7097 SE1_IN25 2. @7099 SE1_IN26 2. @7101 SE1_IN27 2. @7103 SE1_IN28 2. @7105 SE1_IN29 2. @7107 SE1_IN30 2. @7109 SE1_IN31 2. @7111 SE1_IN32 2. @7113 SE2_IN01 2. @7115 SE2_IN02 2. @7117 SE2_IN03 2. @7119 SE2_IN04 2. @7121 SE2_IN05 2. @7123 SE2_IN06 2. @7125 SE2_IN07 2. @7127 SE2_IN08 2. @7129 SE2_IN09 2. @7131 SE2_IN10 2. @7133 SE2_IN11 2. @7135 SE2_IN12 2. @7137 SE2_IN13 2. @7139 SE2_IN14 2. @7141 SE2_IN15 2. @7143 SE2_IN16 2. @7145 SE2_IN17 2. @7147 SE2_IN18 2. @7149 SE2_IN19 2. @7151 SE2_IN20 2. @7153 SE2_IN21 2. @7155 SE2_IN22 2. @7157 SE2_IN23 2. @7159 SE2_IN24 2. @7161 SE2_IN25 2. @7163 SE2_IN26 2. @7165 SE2_IN27 2. @7167 SE2_IN28 2. @7169 SE2_IN29 2. @7171 SE2_IN30 2. @7173 SE2_IN31 2. @7175 SE2_IN32 2. @7177 SE1_WK01 1. @7178 SE1_WK02 1. @7179 SE1_WK03 1. @7180 SE1_WK04 1. @7181 SE1_WK05 1. @7182 SE1_WK06 1. @7183 SE1_WK07 1. @7184 SE1_WK08 1. @7185 SE1_WK09 1. @7186 SE1_WK10 1. @7187 SE1_WK11 1. @7188 SE1_WK12 1. @7189 SE1_WK13 1. @7190 SE1_WK14 1. @7191 SE1_WK15 1. @7192 SE1_WK16 1. @7193 SE1_WK17 1. @7194 SE1_WK18 1. @7195 SE1_WK19 1. @7196 SE1_WK20 1. @7197 SE1_WK21 1. @7198 SE1_WK22 1. @7199 SE1_WK23 1. @7200 SE1_WK24 1. @7201 SE1_WK25 1. @7202 SE1_WK26 1. @7203 SE1_WK27 1. @7204 SE1_WK28 1. @7205 SE1_WK29 1. @7206 SE1_WK30 1. @7207 SE1_WK31 1. @7208 SE1_WK32 1. @7209 SE2_WK01 1. @7210 SE2_WK02 1. @7211 SE2_WK03 1. @7212 SE2_WK04 1. @7213 SE2_WK05 1. @7214 SE2_WK06 1. @7215 SE2_WK07 1. @7216 SE2_WK08 1. @7217 SE2_WK09 1. @7218 SE2_WK10 1. @7219 SE2_WK11 1. @7220 SE2_WK12 1. @7221 SE2_WK13 1. @7222 SE2_WK14 1. @7223 SE2_WK15 1. @7224 SE2_WK16 1. @7225 SE2_WK17 1. @7226 SE2_WK18 1. @7227 SE2_WK19 1. @7228 SE2_WK20 1. @7229 SE2_WK21 1. @7230 SE2_WK22 1. @7231 SE2_WK23 1. @7232 SE2_WK24 1. @7233 SE2_WK25 1. @7234 SE2_WK26 1. @7235 SE2_WK27 1. @7236 SE2_WK28 1. @7237 SE2_WK29 1. @7238 SE2_WK30 1. @7239 SE2_WK31 1. @7240 SE2_WK32 1. @7241 SE1_AM01 6. @7247 SE1_AM02 6. @7253 SE1_AM03 6. @7259 SE1_AM04 6. @7265 SE1_AM05 6. @7271 SE1_AM06 6. @7277 SE1_AM07 6. @7283 SE1_AM08 6. @7289 SE1_AM09 6. @7295 SE1_AM10 6. @7301 SE1_AM11 6. @7307 SE1_AM12 6. @7313 SE1_AM13 6. @7319 SE1_AM14 6. @7325 SE1_AM15 6. @7331 SE1_AM16 6. @7337 SE1_AM17 6. @7343 SE1_AM18 6. @7349 SE1_AM19 6. @7355 SE1_AM20 6. @7361 SE1_AM21 6. @7367 SE1_AM22 6. @7373 SE1_AM23 6. @7379 SE1_AM24 6. @7385 SE1_AM25 6. @7391 SE1_AM26 6. @7397 SE1_AM27 6. @7403 SE1_AM28 6. @7409 SE1_AM29 6. @7415 SE1_AM30 6. @7421 SE1_AM31 6. @7427 SE1_AM32 6. @7433 SE2_AM01 6. @7439 SE2_AM02 6. @7445 SE2_AM03 6. @7451 SE2_AM04 6. @7457 SE2_AM05 6. @7463 SE2_AM06 6. @7469 SE2_AM07 6. @7475 SE2_AM08 6. @7481 SE2_AM09 6. @7487 SE2_AM10 6. @7493 SE2_AM11 6. @7499 SE2_AM12 6. @7505 SE2_AM13 6. @7511 SE2_AM14 6. @7517 SE2_AM15 6. @7523 SE2_AM16 6. @7529 SE2_AM17 6. @7535 SE2_AM18 6. @7541 SE2_AM19 6. @7547 SE2_AM20 6. @7553 SE2_AM21 6. @7559 SE2_AM22 6. @7565 SE2_AM23 6. @7571 SE2_AM24 6. @7577 SE2_AM25 6. @7583 SE2_AM26 6. @7589 SE2_AM27 6. @7595 SE2_AM28 6. @7601 SE2_AM29 6. @7607 SE2_AM30 6. @7613 SE2_AM31 6. @7619 SE2_AM32 6. @7625 S2212_01 2. @7627 S2212_02 2. @7629 S2212_03 2. @7631 S2212_04 2. @7633 S2212_05 2. @7635 S2212_06 2. @7637 S2212_07 2. @7639 S2212_08 2. @7641 S2212_09 2. @7643 S2212_10 2. @7645 S2212_11 2. @7647 S2212_12 2. @7649 S2212_13 2. @7651 S2212_14 2. @7653 S2212_15 2. @7655 S2212_16 2. @7657 S2212_17 2. @7659 S2212_18 2. @7661 S2212_19 2. @7663 S2212_20 2. @7665 S2212_21 2. @7667 S2212_22 2. @7669 S2212_23 2. @7671 S2212_24 2. @7673 S2212_25 2. @7675 S2212_26 2. @7677 S2212_27 2. @7679 S2212_28 2. @7681 S2212_29 2. @7683 S2212_30 2. @7685 S2212_31 2. @7687 S2212_32 2. @7689 S2312_01 2. @7691 S2312_02 2. @7693 S2312_03 2. @7695 S2312_04 2. @7697 S2312_05 2. @7699 S2312_06 2. @7701 S2312_07 2. @7703 S2312_08 2. @7705 S2312_09 2. @7707 S2312_10 2. @7709 S2312_11 2. @7711 S2312_12 2. @7713 S2312_13 2. @7715 S2312_14 2. @7717 S2312_15 2. @7719 S2312_16 2. @7721 S2312_17 2. @7723 S2312_18 2. @7725 S2312_19 2. @7727 S2312_20 2. @7729 S2312_21 2. @7731 S2312_22 2. @7733 S2312_23 2. @7735 S2312_24 2. @7737 S2312_25 2. @7739 S2312_26 2. @7741 S2312_27 2. @7743 S2312_28 2. @7745 S2312_29 2. @7747 S2312_30 2. @7749 S2312_31 2. @7751 S2312_32 2. @7753 G1SRC1 2. @7755 G1SRC2 2. @7757 G1SRC3 2. @7759 G1SRC4 2. @7761 G1SRC5 2. @7763 G1SRC6 2. @7765 G1SRC7 2. @7767 G1SRC8 2. @7769 G1SRC9 2. @7771 G1SRC10 2. @7773 G1_A1_01 5. @7778 G1_A1_02 5. @7783 G1_A1_03 5. @7788 G1_A1_04 5. @7793 G1_A1_05 5. @7798 G1_A1_06 5. @7803 G1_A1_07 5. @7808 G1_A1_08 5. @7813 G1_A1_09 5. @7818 G1_A1_10 5. @7823 G1_A1_11 5. @7828 G1_A1_12 5. @7833 G1_A1_13 5. @7838 G1_A1_14 5. @7843 G1_A1_15 5. @7848 G1_A1_16 5. @7853 G1_A1_17 5. @7858 G1_A1_18 5. @7863 G1_A1_19 5. @7868 G1_A1_20 5. @7873 G1_A1_21 5. @7878 G1_A1_22 5. @7883 G1_A1_23 5. @7888 G1_A1_24 5. @7893 G1_A1_25 5. @7898 G1_A1_26 5. @7903 G1_A1_27 5. @7908 G1_A1_28 5. @7913 G1_A1_29 5. @7918 G1_A1_30 5. @7923 G1_A1_31 5. @7928 G1_A1_32 5. @7933 G1_A2_01 5. @7938 G1_A2_02 5. @7943 G1_A2_03 5. @7948 G1_A2_04 5. @7953 G1_A2_05 5. @7958 G1_A2_06 5. @7963 G1_A2_07 5. @7968 G1_A2_08 5. @7973 G1_A2_09 5. @7978 G1_A2_10 5. @7983 G1_A2_11 5. @7988 G1_A2_12 5. @7993 G1_A2_13 5. @7998 G1_A2_14 5. @8003 G1_A2_15 5. @8008 G1_A2_16 5. @8013 G1_A2_17 5. @8018 G1_A2_18 5. @8023 G1_A2_19 5. @8028 G1_A2_20 5. @8033 G1_A2_21 5. @8038 G1_A2_22 5. @8043 G1_A2_23 5. @8048 G1_A2_24 5. @8053 G1_A2_25 5. @8058 G1_A2_26 5. @8063 G1_A2_27 5. @8068 G1_A2_28 5. @8073 G1_A2_29 5. @8078 G1_A2_30 5. @8083 G1_A2_31 5. @8088 G1_A2_32 5. @8093 G1_A3_01 5. @8098 G1_A3_02 5. @8103 G1_A3_03 5. @8108 G1_A3_04 5. @8113 G1_A3_05 5. @8118 G1_A3_06 5. @8123 G1_A3_07 5. @8128 G1_A3_08 5. @8133 G1_A3_09 5. @8138 G1_A3_10 5. @8143 G1_A3_11 5. @8148 G1_A3_12 5. @8153 G1_A3_13 5. @8158 G1_A3_14 5. @8163 G1_A3_15 5. @8168 G1_A3_16 5. @8173 G1_A3_17 5. @8178 G1_A3_18 5. @8183 G1_A3_19 5. @8188 G1_A3_20 5. @8193 G1_A3_21 5. @8198 G1_A3_22 5. @8203 G1_A3_23 5. @8208 G1_A3_24 5. @8213 G1_A3_25 5. @8218 G1_A3_26 5. @8223 G1_A3_27 5. @8228 G1_A3_28 5. @8233 G1_A3_29 5. @8238 G1_A3_30 5. @8243 G1_A3_31 5. @8248 G1_A3_32 5. @8253 G1_A4_01 5. @8258 G1_A4_02 5. @8263 G1_A4_03 5. @8268 G1_A4_04 5. @8273 G1_A4_05 5. @8278 G1_A4_06 5. @8283 G1_A4_07 5. @8288 G1_A4_08 5. @8293 G1_A4_09 5. @8298 G1_A4_10 5. @8303 G1_A4_11 5. @8308 G1_A4_12 5. @8313 G1_A4_13 5. @8318 G1_A4_14 5. @8323 G1_A4_15 5. @8328 G1_A4_16 5. @8333 G1_A4_17 5. @8338 G1_A4_18 5. @8343 G1_A4_19 5. @8348 G1_A4_20 5. @8353 G1_A4_21 5. @8358 G1_A4_22 5. @8363 G1_A4_23 5. @8368 G1_A4_24 5. @8373 G1_A4_25 5. @8378 G1_A4_26 5. @8383 G1_A4_27 5. @8388 G1_A4_28 5. @8393 G1_A4_29 5. @8398 G1_A4_30 5. @8403 G1_A4_31 5. @8408 G1_A4_32 5. @8413 G1_A5_01 5. @8418 G1_A5_02 5. @8423 G1_A5_03 5. @8428 G1_A5_04 5. @8433 G1_A5_05 5. @8438 G1_A5_06 5. @8443 G1_A5_07 5. @8448 G1_A5_08 5. @8453 G1_A5_09 5. @8458 G1_A5_10 5. @8463 G1_A5_11 5. @8468 G1_A5_12 5. @8473 G1_A5_13 5. @8478 G1_A5_14 5. @8483 G1_A5_15 5. @8488 G1_A5_16 5. @8493 G1_A5_17 5. @8498 G1_A5_18 5. @8503 G1_A5_19 5. @8508 G1_A5_20 5. @8513 G1_A5_21 5. @8518 G1_A5_22 5. @8523 G1_A5_23 5. @8528 G1_A5_24 5. @8533 G1_A5_25 5. @8538 G1_A5_26 5. @8543 G1_A5_27 5. @8548 G1_A5_28 5. @8553 G1_A5_29 5. @8558 G1_A5_30 5. @8563 G1_A5_31 5. @8568 G1_A5_32 5. @8573 G1_A6_01 5. @8578 G1_A6_02 5. @8583 G1_A6_03 5. @8588 G1_A6_04 5. @8593 G1_A6_05 5. @8598 G1_A6_06 5. @8603 G1_A6_07 5. @8608 G1_A6_08 5. @8613 G1_A6_09 5. @8618 G1_A6_10 5. @8623 G1_A6_11 5. @8628 G1_A6_12 5. @8633 G1_A6_13 5. @8638 G1_A6_14 5. @8643 G1_A6_15 5. @8648 G1_A6_16 5. @8653 G1_A6_17 5. @8658 G1_A6_18 5. @8663 G1_A6_19 5. @8668 G1_A6_20 5. @8673 G1_A6_21 5. @8678 G1_A6_22 5. @8683 G1_A6_23 5. @8688 G1_A6_24 5. @8693 G1_A6_25 5. @8698 G1_A6_26 5. @8703 G1_A6_27 5. @8708 G1_A6_28 5. @8713 G1_A6_29 5. @8718 G1_A6_30 5. @8723 G1_A6_31 5. @8728 G1_A6_32 5. @8733 G1_A7_01 5. @8738 G1_A7_02 5. @8743 G1_A7_03 5. @8748 G1_A7_04 5. @8753 G1_A7_05 5. @8758 G1_A7_06 5. @8763 G1_A7_07 5. @8768 G1_A7_08 5. @8773 G1_A7_09 5. @8778 G1_A7_10 5. @8783 G1_A7_11 5. @8788 G1_A7_12 5. @8793 G1_A7_13 5. @8798 G1_A7_14 5. @8803 G1_A7_15 5. @8808 G1_A7_16 5. @8813 G1_A7_17 5. @8818 G1_A7_18 5. @8823 G1_A7_19 5. @8828 G1_A7_20 5. @8833 G1_A7_21 5. @8838 G1_A7_22 5. @8843 G1_A7_23 5. @8848 G1_A7_24 5. @8853 G1_A7_25 5. @8858 G1_A7_26 5. @8863 G1_A7_27 5. @8868 G1_A7_28 5. @8873 G1_A7_29 5. @8878 G1_A7_30 5. @8883 G1_A7_31 5. @8888 G1_A7_32 5. @8893 G1_A8_01 5. @8898 G1_A8_02 5. @8903 G1_A8_03 5. @8908 G1_A8_04 5. @8913 G1_A8_05 5. @8918 G1_A8_06 5. @8923 G1_A8_07 5. @8928 G1_A8_08 5. @8933 G1_A8_09 5. @8938 G1_A8_10 5. @8943 G1_A8_11 5. @8948 G1_A8_12 5. @8953 G1_A8_13 5. @8958 G1_A8_14 5. @8963 G1_A8_15 5. @8968 G1_A8_16 5. @8973 G1_A8_17 5. @8978 G1_A8_18 5. @8983 G1_A8_19 5. @8988 G1_A8_20 5. @8993 G1_A8_21 5. @8998 G1_A8_22 5. @9003 G1_A8_23 5. @9008 G1_A8_24 5. @9013 G1_A8_25 5. @9018 G1_A8_26 5. @9023 G1_A8_27 5. @9028 G1_A8_28 5. @9033 G1_A8_29 5. @9038 G1_A8_30 5. @9043 G1_A8_31 5. @9048 G1_A8_32 5. @9053 G1_A9_01 5. @9058 G1_A9_02 5. @9063 G1_A9_03 5. @9068 G1_A9_04 5. @9073 G1_A9_05 5. @9078 G1_A9_06 5. @9083 G1_A9_07 5. @9088 G1_A9_08 5. @9093 G1_A9_09 5. @9098 G1_A9_10 5. @9103 G1_A9_11 5. @9108 G1_A9_12 5. @9113 G1_A9_13 5. @9118 G1_A9_14 5. @9123 G1_A9_15 5. @9128 G1_A9_16 5. @9133 G1_A9_17 5. @9138 G1_A9_18 5. @9143 G1_A9_19 5. @9148 G1_A9_20 5. @9153 G1_A9_21 5. @9158 G1_A9_22 5. @9163 G1_A9_23 5. @9168 G1_A9_24 5. @9173 G1_A9_25 5. @9178 G1_A9_26 5. @9183 G1_A9_27 5. @9188 G1_A9_28 5. @9193 G1_A9_29 5. @9198 G1_A9_30 5. @9203 G1_A9_31 5. @9208 G1_A9_32 5. @9213 G1_A1001 5. @9218 G1_A1002 5. @9223 G1_A1003 5. @9228 G1_A1004 5. @9233 G1_A1005 5. @9238 G1_A1006 5. @9243 G1_A1007 5. @9248 G1_A1008 5. @9253 G1_A1009 5. @9258 G1_A1010 5. @9263 G1_A1011 5. @9268 G1_A1012 5. @9273 G1_A1013 5. @9278 G1_A1014 5. @9283 G1_A1015 5. @9288 G1_A1016 5. @9293 G1_A1017 5. @9298 G1_A1018 5. @9303 G1_A1019 5. @9308 G1_A1020 5. @9313 G1_A1021 5. @9318 G1_A1022 5. @9323 G1_A1023 5. @9328 G1_A1024 5. @9333 G1_A1025 5. @9338 G1_A1026 5. @9343 G1_A1027 5. @9348 G1_A1028 5. @9353 G1_A1029 5. @9358 G1_A1030 5. @9363 G1_A1031 5. @9368 G1_A1032 5. @9373 SSRECIN1 1. @9374 SSRECIN2 1. @9375 SSRECIN3 1. @9376 SSRECIN4 1. @9377 SSRECIN5 1. @9378 SSRECIN6 1. @9379 SSRECIN7 1. @9380 SSRECIN8 1. @9381 RRRECIN1 1. @9382 RRRECIN2 1. @9383 RRRECIN3 1. @9384 RRRECIN4 1. @9385 RRRECIN5 1. @9386 RRRECIN6 1. @9387 RRRECIN7 1. @9388 RRRECIN8 1. @9389 VET3060 2. @9391 AST1001 1. @9392 AST1002 1. @9393 AST1003 1. @9394 AST1004 1. @9395 AST1005 1. @9396 AST1006 1. @9397 AST1007 1. @9398 AST1008 1. @9399 AST1011 1. @9400 AST1012 1. @9401 AST1013 1. @9402 AST1014 1. @9403 AST1015 1. @9404 AST1016 1. @9405 AST1017 1. @9406 AST1018 1. @9407 AST1021 1. @9408 AST1022 1. @9409 AST1023 1. @9410 AST1024 1. @9411 AST1025 1. @9412 AST1026 1. @9413 AST1027 1. @9414 AST1028 1. @9415 AST1031 1. @9416 AST1032 1. @9417 AST1033 1. @9418 AST1034 1. @9419 AST1035 1. @9420 AST1036 1. @9421 AST1037 1. @9422 AST1038 1. @9423 AST1041 1. @9424 AST1042 1. @9425 AST1043 1. @9426 AST1044 1. @9427 AST1045 1. @9428 AST1046 1. @9429 AST1047 1. @9430 AST1048 1. @9431 AST1051 1. @9432 AST1052 1. @9433 AST1053 1. @9434 AST1054 1. @9435 AST1055 1. @9436 AST1056 1. @9437 AST1057 1. @9438 AST1058 1. @9439 AST1061 1. @9440 AST1062 1. @9441 AST1063 1. @9442 AST1064 1. @9443 AST1065 1. @9444 AST1066 1. @9445 AST1067 1. @9446 AST1068 1. @9447 AST1071 1. @9448 AST1072 1. @9449 AST1073 1. @9450 AST1074 1. @9451 AST1075 1. @9452 AST1076 1. @9453 AST1077 1. @9454 AST1078 1. @9455 AST1101 1. @9456 AST1102 1. @9457 AST1103 1. @9458 AST1104 1. @9459 AST1105 1. @9460 AST1106 1. @9461 AST1107 1. @9462 AST1108 1. @9463 AST1201 1. @9464 AST1202 1. @9465 AST1203 1. @9466 AST1204 1. @9467 AST1205 1. @9468 AST1206 1. @9469 AST1207 1. @9470 AST1208 1. @9471 AST1301 1. @9472 AST1302 1. @9473 AST1303 1. @9474 AST1304 1. @9475 AST1305 1. @9476 AST1306 1. @9477 AST1307 1. @9478 AST1308 1. @9479 AST1401 1. @9480 AST1402 1. @9481 AST1403 1. @9482 AST1404 1. @9483 AST1405 1. @9484 AST1406 1. @9485 AST1407 1. @9486 AST1408 1. @9487 AST1501 1. @9488 AST1502 1. @9489 AST1503 1. @9490 AST1504 1. @9491 AST1505 1. @9492 AST1506 1. @9493 AST1507 1. @9494 AST1508 1. @9495 G2SRC100 1. @9496 G2SRC104 1. @9497 G2SRC110 1. @9498 G2SRC120 1. @9499 G2SRC130 1. @9500 G2SRC140 1. @9501 G2A10001 7. @9508 G2A10002 7. @9515 G2A10003 7. @9522 G2A10004 7. @9529 G2A10005 7. @9536 G2A10006 7. @9543 G2A10007 7. @9550 G2A10008 7. @9557 G2A10009 7. @9564 G2A10010 7. @9571 G2A10011 7. @9578 G2A10012 7. @9585 G2A10013 7. @9592 G2A10014 7. @9599 G2A10015 7. @9606 G2A10016 7. @9613 G2A10017 7. @9620 G2A10018 7. @9627 G2A10019 7. @9634 G2A10020 7. @9641 G2A10021 7. @9648 G2A10022 7. @9655 G2A10023 7. @9662 G2A10024 7. @9669 G2A10025 7. @9676 G2A10026 7. @9683 G2A10027 7. @9690 G2A10028 7. @9697 G2A10029 7. @9704 G2A10030 7. @9711 G2A10031 7. @9718 G2A10032 7. @9725 G2A10401 7. @9732 G2A10402 7. @9739 G2A10403 7. @9746 G2A10404 7. @9753 G2A10405 7. @9760 G2A10406 7. @9767 G2A10407 7. @9774 G2A10408 7. @9781 G2A10409 7. @9788 G2A10410 7. @9795 G2A10411 7. @9802 G2A10412 7. @9809 G2A10413 7. @9816 G2A10414 7. @9823 G2A10415 7. @9830 G2A10416 7. @9837 G2A10417 7. @9844 G2A10418 7. @9851 G2A10419 7. @9858 G2A10420 7. @9865 G2A10421 7. @9872 G2A10422 7. @9879 G2A10423 7. @9886 G2A10424 7. @9893 G2A10425 7. @9900 G2A10426 7. @9907 G2A10427 7. @9914 G2A10428 7. @9921 G2A10429 7. @9928 G2A10430 7. @9935 G2A10431 7. @9942 G2A10432 7. @9949 G2A11001 7. @9956 G2A11002 7. @9963 G2A11003 7. @9970 G2A11004 7. @9977 G2A11005 7. @9984 G2A11006 7. @9991 G2A11007 7. @9998 G2A11008 7. @10005 G2A11009 7. @10012 G2A11010 7. @10019 G2A11011 7. @10026 G2A11012 7. @10033 G2A11013 7. @10040 G2A11014 7. @10047 G2A11015 7. @10054 G2A11016 7. @10061 G2A11017 7. @10068 G2A11018 7. @10075 G2A11019 7. @10082 G2A11020 7. @10089 G2A11021 7. @10096 G2A11022 7. @10103 G2A11023 7. @10110 G2A11024 7. @10117 G2A11025 7. @10124 G2A11026 7. @10131 G2A11027 7. @10138 G2A11028 7. @10145 G2A11029 7. @10152 G2A11030 7. @10159 G2A11031 7. @10166 G2A11032 7. @10173 G2A12001 7. @10180 G2A12002 7. @10187 G2A12003 7. @10194 G2A12004 7. @10201 G2A12005 7. @10208 G2A12006 7. @10215 G2A12007 7. @10222 G2A12008 7. @10229 G2A12009 7. @10236 G2A12010 7. @10243 G2A12011 7. @10250 G2A12012 7. @10257 G2A12013 7. @10264 G2A12014 7. @10271 G2A12015 7. @10278 G2A12016 7. @10285 G2A12017 7. @10292 G2A12018 7. @10299 G2A12019 7. @10306 G2A12020 7. @10313 G2A12021 7. @10320 G2A12022 7. @10327 G2A12023 7. @10334 G2A12024 7. @10341 G2A12025 7. @10348 G2A12026 7. @10355 G2A12027 7. @10362 G2A12028 7. @10369 G2A12029 7. @10376 G2A12030 7. @10383 G2A12031 7. @10390 G2A12032 7. @10397 G2A13001 7. @10404 G2A13002 7. @10411 G2A13003 7. @10418 G2A13004 7. @10425 G2A13005 7. @10432 G2A13006 7. @10439 G2A13007 7. @10446 G2A13008 7. @10453 G2A13009 7. @10460 G2A13010 7. @10467 G2A13011 7. @10474 G2A13012 7. @10481 G2A13013 7. @10488 G2A13014 7. @10495 G2A13015 7. @10502 G2A13016 7. @10509 G2A13017 7. @10516 G2A13018 7. @10523 G2A13019 7. @10530 G2A13020 7. @10537 G2A13021 7. @10544 G2A13022 7. @10551 G2A13023 7. @10558 G2A13024 7. @10565 G2A13025 7. @10572 G2A13026 7. @10579 G2A13027 7. @10586 G2A13028 7. @10593 G2A13029 7. @10600 G2A13030 7. @10607 G2A13031 7. @10614 G2A13032 7. @10621 G2A14001 7. @10628 G2A14002 7. @10635 G2A14003 7. @10642 G2A14004 7. @10649 G2A14005 7. @10656 G2A14006 7. @10663 G2A14007 7. @10670 G2A14008 7. @10677 G2A14009 7. @10684 G2A14010 7. @10691 G2A14011 7. @10698 G2A14012 7. @10705 G2A14013 7. @10712 G2A14014 7. @10719 G2A14015 7. @10726 G2A14016 7. @10733 G2A14017 7. @10740 G2A14018 7. @10747 G2A14019 7. @10754 G2A14020 7. @10761 G2A14021 7. @10768 G2A14022 7. @10775 G2A14023 7. @10782 G2A14024 7. @10789 G2A14025 7. @10796 G2A14026 7. @10803 G2A14027 7. @10810 G2A14028 7. @10817 G2A14029 7. @10824 G2A14030 7. @10831 G2A14031 7. @10838 G2A14032 7. @10845 CARECO01 1. @10846 CARECO02 1. @10847 CARECO03 1. @10848 CARECO04 1. @10849 CARECO05 1. @10850 CARECO06 1. @10851 CARECO07 1. @10852 CARECO08 1. @10853 CARECO09 1. @10854 CARECO10 1. @10855 CARECO11 1. @10856 CARECO12 1. @10857 CARECO13 1. @10858 CARECO14 1. @10859 CARECO15 1. @10860 CARECO16 1. @10861 CARECO17 1. @10862 CARECO18 1. @10863 CARECO19 1. @10864 CARECO20 1. @10865 CARECO21 1. @10866 CARECO22 1. @10867 CARECO23 1. @10868 CARECO24 1. @10869 CARECO25 1. @10870 CARECO26 1. @10871 CARECO27 1. @10872 CARECO28 1. @10873 CARECO29 1. @10874 CARECO30 1. @10875 CARECO31 1. @10876 CARECO32 1. @10877 CAIDCO01 1. @10878 CAIDCO02 1. @10879 CAIDCO03 1. @10880 CAIDCO04 1. @10881 CAIDCO05 1. @10882 CAIDCO06 1. @10883 CAIDCO07 1. @10884 CAIDCO08 1. @10885 CAIDCO09 1. @10886 CAIDCO10 1. @10887 CAIDCO11 1. @10888 CAIDCO12 1. @10889 CAIDCO13 1. @10890 CAIDCO14 1. @10891 CAIDCO15 1. @10892 CAIDCO16 1. @10893 CAIDCO17 1. @10894 CAIDCO18 1. @10895 CAIDCO19 1. @10896 CAIDCO20 1. @10897 CAIDCO21 1. @10898 CAIDCO22 1. @10899 CAIDCO23 1. @10900 CAIDCO24 1. @10901 CAIDCO25 1. @10902 CAIDCO26 1. @10903 CAIDCO27 1. @10904 CAIDCO28 1. @10905 CAIDCO29 1. @10906 CAIDCO30 1. @10907 CAIDCO31 1. @10908 CAIDCO32 1. @10909 WICCOV01 1. @10910 WICCOV02 1. @10911 WICCOV03 1. @10912 WICCOV04 1. @10913 WICCOV05 1. @10914 WICCOV06 1. @10915 WICCOV07 1. @10916 WICCOV08 1. @10917 WICCOV09 1. @10918 WICCOV10 1. @10919 WICCOV11 1. @10920 WICCOV12 1. @10921 WICCOV13 1. @10922 WICCOV14 1. @10923 WICCOV15 1. @10924 WICCOV16 1. @10925 WICCOV17 1. @10926 WICCOV18 1. @10927 WICCOV19 1. @10928 WICCOV20 1. @10929 WICCOV21 1. @10930 WICCOV22 1. @10931 WICCOV23 1. @10932 WICCOV24 1. @10933 WICCOV25 1. @10934 WICCOV26 1. @10935 WICCOV27 1. @10936 WICCOV28 1. @10937 WICCOV29 1. @10938 WICCOV30 1. @10939 WICCOV31 1. @10940 WICCOV32 1. @10941 AFDC_01 1. @10942 AFDC_02 1. @10943 AFDC_03 1. @10944 AFDC_04 1. @10945 AFDC_05 1. @10946 AFDC_06 1. @10947 AFDC_07 1. @10948 AFDC_08 1. @10949 AFDC_09 1. @10950 AFDC_10 1. @10951 AFDC_11 1. @10952 AFDC_12 1. @10953 AFDC_13 1. @10954 AFDC_14 1. @10955 AFDC_15 1. @10956 AFDC_16 1. @10957 AFDC_17 1. @10958 AFDC_18 1. @10959 AFDC_19 1. @10960 AFDC_20 1. @10961 AFDC_21 1. @10962 AFDC_22 1. @10963 AFDC_23 1. @10964 AFDC_24 1. @10965 AFDC_25 1. @10966 AFDC_26 1. @10967 AFDC_27 1. @10968 AFDC_28 1. @10969 AFDC_29 1. @10970 AFDC_30 1. @10971 AFDC_31 1. @10972 AFDC_32 1. @10973 FOODST01 1. @10974 FOODST02 1. @10975 FOODST03 1. @10976 FOODST04 1. @10977 FOODST05 1. @10978 FOODST06 1. @10979 FOODST07 1. @10980 FOODST08 1. @10981 FOODST09 1. @10982 FOODST10 1. @10983 FOODST11 1. @10984 FOODST12 1. @10985 FOODST13 1. @10986 FOODST14 1. @10987 FOODST15 1. @10988 FOODST16 1. @10989 FOODST17 1. @10990 FOODST18 1. @10991 FOODST19 1. @10992 FOODST20 1. @10993 FOODST21 1. @10994 FOODST22 1. @10995 FOODST23 1. @10996 FOODST24 1. @10997 FOODST25 1. @10998 FOODST26 1. @10999 FOODST27 1. @11000 FOODST28 1. @11001 FOODST29 1. @11002 FOODST30 1. @11003 FOODST31 1. @11004 FOODST32 1. @11005 GEN_AS01 1. @11006 GEN_AS02 1. @11007 GEN_AS03 1. @11008 GEN_AS04 1. @11009 GEN_AS05 1. @11010 GEN_AS06 1. @11011 GEN_AS07 1. @11012 GEN_AS08 1. @11013 GEN_AS09 1. @11014 GEN_AS10 1. @11015 GEN_AS11 1. @11016 GEN_AS12 1. @11017 GEN_AS13 1. @11018 GEN_AS14 1. @11019 GEN_AS15 1. @11020 GEN_AS16 1. @11021 GEN_AS17 1. @11022 GEN_AS18 1. @11023 GEN_AS19 1. @11024 GEN_AS20 1. @11025 GEN_AS21 1. @11026 GEN_AS22 1. @11027 GEN_AS23 1. @11028 GEN_AS24 1. @11029 GEN_AS25 1. @11030 GEN_AS26 1. @11031 GEN_AS27 1. @11032 GEN_AS28 1. @11033 GEN_AS29 1. @11034 GEN_AS30 1. @11035 GEN_AS31 1. @11036 GEN_AS32 1. @11037 FOST_K01 1. @11038 FOST_K02 1. @11039 FOST_K03 1. @11040 FOST_K04 1. @11041 FOST_K05 1. @11042 FOST_K06 1. @11043 FOST_K07 1. @11044 FOST_K08 1. @11045 FOST_K09 1. @11046 FOST_K10 1. @11047 FOST_K11 1. @11048 FOST_K12 1. @11049 FOST_K13 1. @11050 FOST_K14 1. @11051 FOST_K15 1. @11052 FOST_K16 1. @11053 FOST_K17 1. @11054 FOST_K18 1. @11055 FOST_K19 1. @11056 FOST_K20 1. @11057 FOST_K21 1. @11058 FOST_K22 1. @11059 FOST_K23 1. @11060 FOST_K24 1. @11061 FOST_K25 1. @11062 FOST_K26 1. @11063 FOST_K27 1. @11064 FOST_K28 1. @11065 FOST_K29 1. @11066 FOST_K30 1. @11067 FOST_K31 1. @11068 FOST_K32 1. @11069 OTH_WE01 1. @11070 OTH_WE02 1. @11071 OTH_WE03 1. @11072 OTH_WE04 1. @11073 OTH_WE05 1. @11074 OTH_WE06 1. @11075 OTH_WE07 1. @11076 OTH_WE08 1. @11077 OTH_WE09 1. @11078 OTH_WE10 1. @11079 OTH_WE11 1. @11080 OTH_WE12 1. @11081 OTH_WE13 1. @11082 OTH_WE14 1. @11083 OTH_WE15 1. @11084 OTH_WE16 1. @11085 OTH_WE17 1. @11086 OTH_WE18 1. @11087 OTH_WE19 1. @11088 OTH_WE20 1. @11089 OTH_WE21 1. @11090 OTH_WE22 1. @11091 OTH_WE23 1. @11092 OTH_WE24 1. @11093 OTH_WE25 1. @11094 OTH_WE26 1. @11095 OTH_WE27 1. @11096 OTH_WE28 1. @11097 OTH_WE29 1. @11098 OTH_WE30 1. @11099 OTH_WE31 1. @11100 OTH_WE32 1. @11101 SOC_SE01 1. @11102 SOC_SE02 1. @11103 SOC_SE03 1. @11104 SOC_SE04 1. @11105 SOC_SE05 1. @11106 SOC_SE06 1. @11107 SOC_SE07 1. @11108 SOC_SE08 1. @11109 SOC_SE09 1. @11110 SOC_SE10 1. @11111 SOC_SE11 1. @11112 SOC_SE12 1. @11113 SOC_SE13 1. @11114 SOC_SE14 1. @11115 SOC_SE15 1. @11116 SOC_SE16 1. @11117 SOC_SE17 1. @11118 SOC_SE18 1. @11119 SOC_SE19 1. @11120 SOC_SE20 1. @11121 SOC_SE21 1. @11122 SOC_SE22 1. @11123 SOC_SE23 1. @11124 SOC_SE24 1. @11125 SOC_SE25 1. @11126 SOC_SE26 1. @11127 SOC_SE27 1. @11128 SOC_SE28 1. @11129 SOC_SE29 1. @11130 SOC_SE30 1. @11131 SOC_SE31 1. @11132 SOC_SE32 1. @11133 RAILRD01 1. @11134 RAILRD02 1. @11135 RAILRD03 1. @11136 RAILRD04 1. @11137 RAILRD05 1. @11138 RAILRD06 1. @11139 RAILRD07 1. @11140 RAILRD08 1. @11141 RAILRD09 1. @11142 RAILRD10 1. @11143 RAILRD11 1. @11144 RAILRD12 1. @11145 RAILRD13 1. @11146 RAILRD14 1. @11147 RAILRD15 1. @11148 RAILRD16 1. @11149 RAILRD17 1. @11150 RAILRD18 1. @11151 RAILRD19 1. @11152 RAILRD20 1. @11153 RAILRD21 1. @11154 RAILRD22 1. @11155 RAILRD23 1. @11156 RAILRD24 1. @11157 RAILRD25 1. @11158 RAILRD26 1. @11159 RAILRD27 1. @11160 RAILRD28 1. @11161 RAILRD29 1. @11162 RAILRD30 1. @11163 RAILRD31 1. @11164 RAILRD32 1. @11165 VETS_01 1. @11166 VETS_02 1. @11167 VETS_03 1. @11168 VETS_04 1. @11169 VETS_05 1. @11170 VETS_06 1. @11171 VETS_07 1. @11172 VETS_08 1. @11173 VETS_09 1. @11174 VETS_10 1. @11175 VETS_11 1. @11176 VETS_12 1. @11177 VETS_13 1. @11178 VETS_14 1. @11179 VETS_15 1. @11180 VETS_16 1. @11181 VETS_17 1. @11182 VETS_18 1. @11183 VETS_19 1. @11184 VETS_20 1. @11185 VETS_21 1. @11186 VETS_22 1. @11187 VETS_23 1. @11188 VETS_24 1. @11189 VETS_25 1. @11190 VETS_26 1. @11191 VETS_27 1. @11192 VETS_28 1. @11193 VETS_29 1. @11194 VETS_30 1. @11195 VETS_31 1. @11196 VETS_32 1. @11197 CHAMPU01 1. @11198 CHAMPU02 1. @11199 CHAMPU03 1. @11200 CHAMPU04 1. @11201 CHAMPU05 1. @11202 CHAMPU06 1. @11203 CHAMPU07 1. @11204 CHAMPU08 1. @11205 CHAMPU09 1. @11206 CHAMPU10 1. @11207 CHAMPU11 1. @11208 CHAMPU12 1. @11209 CHAMPU13 1. @11210 CHAMPU14 1. @11211 CHAMPU15 1. @11212 CHAMPU16 1. @11213 CHAMPU17 1. @11214 CHAMPU18 1. @11215 CHAMPU19 1. @11216 CHAMPU20 1. @11217 CHAMPU21 1. @11218 CHAMPU22 1. @11219 CHAMPU23 1. @11220 CHAMPU24 1. @11221 CHAMPU25 1. @11222 CHAMPU26 1. @11223 CHAMPU27 1. @11224 CHAMPU28 1. @11225 CHAMPU29 1. @11226 CHAMPU30 1. @11227 CHAMPU31 1. @11228 CHAMPU32 1. @11229 CHAMPV01 1. @11230 CHAMPV02 1. @11231 CHAMPV03 1. @11232 CHAMPV04 1. @11233 CHAMPV05 1. @11234 CHAMPV06 1. @11235 CHAMPV07 1. @11236 CHAMPV08 1. @11237 CHAMPV09 1. @11238 CHAMPV10 1. @11239 CHAMPV11 1. @11240 CHAMPV12 1. @11241 CHAMPV13 1. @11242 CHAMPV14 1. @11243 CHAMPV15 1. @11244 CHAMPV16 1. @11245 CHAMPV17 1. @11246 CHAMPV18 1. @11247 CHAMPV19 1. @11248 CHAMPV20 1. @11249 CHAMPV21 1. @11250 CHAMPV22 1. @11251 CHAMPV23 1. @11252 CHAMPV24 1. @11253 CHAMPV25 1. @11254 CHAMPV26 1. @11255 CHAMPV27 1. @11256 CHAMPV28 1. @11257 CHAMPV29 1. @11258 CHAMPV30 1. @11259 CHAMPV31 1. @11260 CHAMPV32 1. @11261 HIOWNC01 1. @11262 HIOWNC02 1. @11263 HIOWNC03 1. @11264 HIOWNC04 1. @11265 HIOWNC05 1. @11266 HIOWNC06 1. @11267 HIOWNC07 1. @11268 HIOWNC08 1. @11269 HIOWNC09 1. @11270 HIOWNC10 1. @11271 HIOWNC11 1. @11272 HIOWNC12 1. @11273 HIOWNC13 1. @11274 HIOWNC14 1. @11275 HIOWNC15 1. @11276 HIOWNC16 1. @11277 HIOWNC17 1. @11278 HIOWNC18 1. @11279 HIOWNC19 1. @11280 HIOWNC20 1. @11281 HIOWNC21 1. @11282 HIOWNC22 1. @11283 HIOWNC23 1. @11284 HIOWNC24 1. @11285 HIOWNC25 1. @11286 HIOWNC26 1. @11287 HIOWNC27 1. @11288 HIOWNC28 1. @11289 HIOWNC29 1. @11290 HIOWNC30 1. @11291 HIOWNC31 1. @11292 HIOWNC32 1. @11293 HI_OTC01 1. @11294 HI_OTC02 1. @11295 HI_OTC03 1. @11296 HI_OTC04 1. @11297 HI_OTC05 1. @11298 HI_OTC06 1. @11299 HI_OTC07 1. @11300 HI_OTC08 1. @11301 HI_OTC09 1. @11302 HI_OTC10 1. @11303 HI_OTC11 1. @11304 HI_OTC12 1. @11305 HI_OTC13 1. @11306 HI_OTC14 1. @11307 HI_OTC15 1. @11308 HI_OTC16 1. @11309 HI_OTC17 1. @11310 HI_OTC18 1. @11311 HI_OTC19 1. @11312 HI_OTC20 1. @11313 HI_OTC21 1. @11314 HI_OTC22 1. @11315 HI_OTC23 1. @11316 HI_OTC24 1. @11317 HI_OTC25 1. @11318 HI_OTC26 1. @11319 HI_OTC27 1. @11320 HI_OTC28 1. @11321 HI_OTC29 1. @11322 HI_OTC30 1. @11323 HI_OTC31 1. @11324 HI_OTC32 1. @11325 HIEMPL01 1. @11326 HIEMPL02 1. @11327 HIEMPL03 1. @11328 HIEMPL04 1. @11329 HIEMPL05 1. @11330 HIEMPL06 1. @11331 HIEMPL07 1. @11332 HIEMPL08 1. @11333 HIEMPL09 1. @11334 HIEMPL10 1. @11335 HIEMPL11 1. @11336 HIEMPL12 1. @11337 HIEMPL13 1. @11338 HIEMPL14 1. @11339 HIEMPL15 1. @11340 HIEMPL16 1. @11341 HIEMPL17 1. @11342 HIEMPL18 1. @11343 HIEMPL19 1. @11344 HIEMPL20 1. @11345 HIEMPL21 1. @11346 HIEMPL22 1. @11347 HIEMPL23 1. @11348 HIEMPL24 1. @11349 HIEMPL25 1. @11350 HIEMPL26 1. @11351 HIEMPL27 1. @11352 HIEMPL28 1. @11353 HIEMPL29 1. @11354 HIEMPL30 1. @11355 HIEMPL31 1. @11356 HIEMPL32 1. @11357 SS_PID01 2. @11359 SS_PID02 2. @11361 SS_PID03 2. @11363 SS_PID04 2. @11365 SS_PID05 2. @11367 SS_PID06 2. @11369 SS_PID07 2. @11371 SS_PID08 2. @11373 SS_PID09 2. @11375 SS_PID10 2. @11377 SS_PID11 2. @11379 SS_PID12 2. @11381 SS_PID13 2. @11383 SS_PID14 2. @11385 SS_PID15 2. @11387 SS_PID16 2. @11389 SS_PID17 2. @11391 SS_PID18 2. @11393 SS_PID19 2. @11395 SS_PID20 2. @11397 SS_PID21 2. @11399 SS_PID22 2. @11401 SS_PID23 2. @11403 SS_PID24 2. @11405 SS_PID25 2. @11407 SS_PID26 2. @11409 SS_PID27 2. @11411 SS_PID28 2. @11413 SS_PID29 2. @11415 SS_PID30 2. @11417 SS_PID31 2. @11419 SS_PID32 2. @11421 RR_PID01 2. @11423 RR_PID02 2. @11425 RR_PID03 2. @11427 RR_PID04 2. @11429 RR_PID05 2. @11431 RR_PID06 2. @11433 RR_PID07 2. @11435 RR_PID08 2. @11437 RR_PID09 2. @11439 RR_PID10 2. @11441 RR_PID11 2. @11443 RR_PID12 2. @11445 RR_PID13 2. @11447 RR_PID14 2. @11449 RR_PID15 2. @11451 RR_PID16 2. @11453 RR_PID17 2. @11455 RR_PID18 2. @11457 RR_PID19 2. @11459 RR_PID20 2. @11461 RR_PID21 2. @11463 RR_PID22 2. @11465 RR_PID23 2. @11467 RR_PID24 2. @11469 RR_PID25 2. @11471 RR_PID26 2. @11473 RR_PID27 2. @11475 RR_PID28 2. @11477 RR_PID29 2. @11479 RR_PID30 2. @11481 RR_PID31 2. @11483 RR_PID32 2. @11485 VA_PID01 2. @11487 VA_PID02 2. @11489 VA_PID03 2. @11491 VA_PID04 2. @11493 VA_PID05 2. @11495 VA_PID06 2. @11497 VA_PID07 2. @11499 VA_PID08 2. @11501 VA_PID09 2. @11503 VA_PID10 2. @11505 VA_PID11 2. @11507 VA_PID12 2. @11509 VA_PID13 2. @11511 VA_PID14 2. @11513 VA_PID15 2. @11515 VA_PID16 2. @11517 VA_PID17 2. @11519 VA_PID18 2. @11521 VA_PID19 2. @11523 VA_PID20 2. @11525 VA_PID21 2. @11527 VA_PID22 2. @11529 VA_PID23 2. @11531 VA_PID24 2. @11533 VA_PID25 2. @11535 VA_PID26 2. @11537 VA_PID27 2. @11539 VA_PID28 2. @11541 VA_PID29 2. @11543 VA_PID30 2. @11545 VA_PID31 2. @11547 VA_PID32 2. @11549 AFDCPI01 2. @11551 AFDCPI02 2. @11553 AFDCPI03 2. @11555 AFDCPI04 2. @11557 AFDCPI05 2. @11559 AFDCPI06 2. @11561 AFDCPI07 2. @11563 AFDCPI08 2. @11565 AFDCPI09 2. @11567 AFDCPI10 2. @11569 AFDCPI11 2. @11571 AFDCPI12 2. @11573 AFDCPI13 2. @11575 AFDCPI14 2. @11577 AFDCPI15 2. @11579 AFDCPI16 2. @11581 AFDCPI17 2. @11583 AFDCPI18 2. @11585 AFDCPI19 2. @11587 AFDCPI20 2. @11589 AFDCPI21 2. @11591 AFDCPI22 2. @11593 AFDCPI23 2. @11595 AFDCPI24 2. @11597 AFDCPI25 2. @11599 AFDCPI26 2. @11601 AFDCPI27 2. @11603 AFDCPI28 2. @11605 AFDCPI29 2. @11607 AFDCPI30 2. @11609 AFDCPI31 2. @11611 AFDCPI32 2. @11613 GA_PID01 2. @11615 GA_PID02 2. @11617 GA_PID03 2. @11619 GA_PID04 2. @11621 GA_PID05 2. @11623 GA_PID06 2. @11625 GA_PID07 2. @11627 GA_PID08 2. @11629 GA_PID09 2. @11631 GA_PID10 2. @11633 GA_PID11 2. @11635 GA_PID12 2. @11637 GA_PID13 2. @11639 GA_PID14 2. @11641 GA_PID15 2. @11643 GA_PID16 2. @11645 GA_PID17 2. @11647 GA_PID18 2. @11649 GA_PID19 2. @11651 GA_PID20 2. @11653 GA_PID21 2. @11655 GA_PID22 2. @11657 GA_PID23 2. @11659 GA_PID24 2. @11661 GA_PID25 2. @11663 GA_PID26 2. @11665 GA_PID27 2. @11667 GA_PID28 2. @11669 GA_PID29 2. @11671 GA_PID30 2. @11673 GA_PID31 2. @11675 GA_PID32 2. @11677 FOSTPI01 2. @11679 FOSTPI02 2. @11681 FOSTPI03 2. @11683 FOSTPI04 2. @11685 FOSTPI05 2. @11687 FOSTPI06 2. @11689 FOSTPI07 2. @11691 FOSTPI08 2. @11693 FOSTPI09 2. @11695 FOSTPI10 2. @11697 FOSTPI11 2. @11699 FOSTPI12 2. @11701 FOSTPI13 2. @11703 FOSTPI14 2. @11705 FOSTPI15 2. @11707 FOSTPI16 2. @11709 FOSTPI17 2. @11711 FOSTPI18 2. @11713 FOSTPI19 2. @11715 FOSTPI20 2. @11717 FOSTPI21 2. @11719 FOSTPI22 2. @11721 FOSTPI23 2. @11723 FOSTPI24 2. @11725 FOSTPI25 2. @11727 FOSTPI26 2. @11729 FOSTPI27 2. @11731 FOSTPI28 2. @11733 FOSTPI29 2. @11735 FOSTPI30 2. @11737 FOSTPI31 2. @11739 FOSTPI32 2. @11741 OTH_PI01 2. @11743 OTH_PI02 2. @11745 OTH_PI03 2. @11747 OTH_PI04 2. @11749 OTH_PI05 2. @11751 OTH_PI06 2. @11753 OTH_PI07 2. @11755 OTH_PI08 2. @11757 OTH_PI09 2. @11759 OTH_PI10 2. @11761 OTH_PI11 2. @11763 OTH_PI12 2. @11765 OTH_PI13 2. @11767 OTH_PI14 2. @11769 OTH_PI15 2. @11771 OTH_PI16 2. @11773 OTH_PI17 2. @11775 OTH_PI18 2. @11777 OTH_PI19 2. @11779 OTH_PI20 2. @11781 OTH_PI21 2. @11783 OTH_PI22 2. @11785 OTH_PI23 2. @11787 OTH_PI24 2. @11789 OTH_PI25 2. @11791 OTH_PI26 2. @11793 OTH_PI27 2. @11795 OTH_PI28 2. @11797 OTH_PI29 2. @11799 OTH_PI30 2. @11801 OTH_PI31 2. @11803 OTH_PI32 2. @11805 WIC_PI01 2. @11807 WIC_PI02 2. @11809 WIC_PI03 2. @11811 WIC_PI04 2. @11813 WIC_PI05 2. @11815 WIC_PI06 2. @11817 WIC_PI07 2. @11819 WIC_PI08 2. @11821 WIC_PI09 2. @11823 WIC_PI10 2. @11825 WIC_PI11 2. @11827 WIC_PI12 2. @11829 WIC_PI13 2. @11831 WIC_PI14 2. @11833 WIC_PI15 2. @11835 WIC_PI16 2. @11837 WIC_PI17 2. @11839 WIC_PI18 2. @11841 WIC_PI19 2. @11843 WIC_PI20 2. @11845 WIC_PI21 2. @11847 WIC_PI22 2. @11849 WIC_PI23 2. @11851 WIC_PI24 2. @11853 WIC_PI25 2. @11855 WIC_PI26 2. @11857 WIC_PI27 2. @11859 WIC_PI28 2. @11861 WIC_PI29 2. @11863 WIC_PI30 2. @11865 WIC_PI31 2. @11867 WIC_PI32 2. @11869 FS_PID01 2. @11871 FS_PID02 2. @11873 FS_PID03 2. @11875 FS_PID04 2. @11877 FS_PID05 2. @11879 FS_PID06 2. @11881 FS_PID07 2. @11883 FS_PID08 2. @11885 FS_PID09 2. @11887 FS_PID10 2. @11889 FS_PID11 2. @11891 FS_PID12 2. @11893 FS_PID13 2. @11895 FS_PID14 2. @11897 FS_PID15 2. @11899 FS_PID16 2. @11901 FS_PID17 2. @11903 FS_PID18 2. @11905 FS_PID19 2. @11907 FS_PID20 2. @11909 FS_PID21 2. @11911 FS_PID22 2. @11913 FS_PID23 2. @11915 FS_PID24 2. @11917 FS_PID25 2. @11919 FS_PID26 2. @11921 FS_PID27 2. @11923 FS_PID28 2. @11925 FS_PID29 2. @11927 FS_PID30 2. @11929 FS_PID31 2. @11931 FS_PID32 2. @11933 WS1_IM01 1. @11934 WS1_IM02 1. @11935 WS1_IM03 1. @11936 WS1_IM04 1. @11937 WS1_IM05 1. @11938 WS1_IM06 1. @11939 WS1_IM07 1. @11940 WS1_IM08 1. @11941 WS1_IM09 1. @11942 WS1_IM10 1. @11943 WS1_IM11 1. @11944 WS1_IM12 1. @11945 WS1_IM13 1. @11946 WS1_IM14 1. @11947 WS1_IM15 1. @11948 WS1_IM16 1. @11949 WS1_IM17 1. @11950 WS1_IM18 1. @11951 WS1_IM19 1. @11952 WS1_IM20 1. @11953 WS1_IM21 1. @11954 WS1_IM22 1. @11955 WS1_IM23 1. @11956 WS1_IM24 1. @11957 WS1_IM25 1. @11958 WS1_IM26 1. @11959 WS1_IM27 1. @11960 WS1_IM28 1. @11961 WS1_IM29 1. @11962 WS1_IM30 1. @11963 WS1_IM31 1. @11964 WS1_IM32 1. @11965 WS2_IM01 1. @11966 WS2_IM02 1. @11967 WS2_IM03 1. @11968 WS2_IM04 1. @11969 WS2_IM05 1. @11970 WS2_IM06 1. @11971 WS2_IM07 1. @11972 WS2_IM08 1. @11973 WS2_IM09 1. @11974 WS2_IM10 1. @11975 WS2_IM11 1. @11976 WS2_IM12 1. @11977 WS2_IM13 1. @11978 WS2_IM14 1. @11979 WS2_IM15 1. @11980 WS2_IM16 1. @11981 WS2_IM17 1. @11982 WS2_IM18 1. @11983 WS2_IM19 1. @11984 WS2_IM20 1. @11985 WS2_IM21 1. @11986 WS2_IM22 1. @11987 WS2_IM23 1. @11988 WS2_IM24 1. @11989 WS2_IM25 1. @11990 WS2_IM26 1. @11991 WS2_IM27 1. @11992 WS2_IM28 1. @11993 WS2_IM29 1. @11994 WS2_IM30 1. @11995 WS2_IM31 1. @11996 WS2_IM32 1. @11997 SE1_IM01 1. @11998 SE1_IM02 1. @11999 SE1_IM03 1. @12000 SE1_IM04 1. @12001 SE1_IM05 1. @12002 SE1_IM06 1. @12003 SE1_IM07 1. @12004 SE1_IM08 1. @12005 SE1_IM09 1. @12006 SE1_IM10 1. @12007 SE1_IM11 1. @12008 SE1_IM12 1. @12009 SE1_IM13 1. @12010 SE1_IM14 1. @12011 SE1_IM15 1. @12012 SE1_IM16 1. @12013 SE1_IM17 1. @12014 SE1_IM18 1. @12015 SE1_IM19 1. @12016 SE1_IM20 1. @12017 SE1_IM21 1. @12018 SE1_IM22 1. @12019 SE1_IM23 1. @12020 SE1_IM24 1. @12021 SE1_IM25 1. @12022 SE1_IM26 1. @12023 SE1_IM27 1. @12024 SE1_IM28 1. @12025 SE1_IM29 1. @12026 SE1_IM30 1. @12027 SE1_IM31 1. @12028 SE1_IM32 1. @12029 SE2_IM01 1. @12030 SE2_IM02 1. @12031 SE2_IM03 1. @12032 SE2_IM04 1. @12033 SE2_IM05 1. @12034 SE2_IM06 1. @12035 SE2_IM07 1. @12036 SE2_IM08 1. @12037 SE2_IM09 1. @12038 SE2_IM10 1. @12039 SE2_IM11 1. @12040 SE2_IM12 1. @12041 SE2_IM13 1. @12042 SE2_IM14 1. @12043 SE2_IM15 1. @12044 SE2_IM16 1. @12045 SE2_IM17 1. @12046 SE2_IM18 1. @12047 SE2_IM19 1. @12048 SE2_IM20 1. @12049 SE2_IM21 1. @12050 SE2_IM22 1. @12051 SE2_IM23 1. @12052 SE2_IM24 1. @12053 SE2_IM25 1. @12054 SE2_IM26 1. @12055 SE2_IM27 1. @12056 SE2_IM28 1. @12057 SE2_IM29 1. @12058 SE2_IM30 1. @12059 SE2_IM31 1. @12060 SE2_IM32 1. @12061 G1_I1_01 1. @12062 G1_I1_02 1. @12063 G1_I1_03 1. @12064 G1_I1_04 1. @12065 G1_I1_05 1. @12066 G1_I1_06 1. @12067 G1_I1_07 1. @12068 G1_I1_08 1. @12069 G1_I1_09 1. @12070 G1_I1_10 1. @12071 G1_I1_11 1. @12072 G1_I1_12 1. @12073 G1_I1_13 1. @12074 G1_I1_14 1. @12075 G1_I1_15 1. @12076 G1_I1_16 1. @12077 G1_I1_17 1. @12078 G1_I1_18 1. @12079 G1_I1_19 1. @12080 G1_I1_20 1. @12081 G1_I1_21 1. @12082 G1_I1_22 1. @12083 G1_I1_23 1. @12084 G1_I1_24 1. @12085 G1_I1_25 1. @12086 G1_I1_26 1. @12087 G1_I1_27 1. @12088 G1_I1_28 1. @12089 G1_I1_29 1. @12090 G1_I1_30 1. @12091 G1_I1_31 1. @12092 G1_I1_32 1. @12093 G1_I2_01 1. @12094 G1_I2_02 1. @12095 G1_I2_03 1. @12096 G1_I2_04 1. @12097 G1_I2_05 1. @12098 G1_I2_06 1. @12099 G1_I2_07 1. @12100 G1_I2_08 1. @12101 G1_I2_09 1. @12102 G1_I2_10 1. @12103 G1_I2_11 1. @12104 G1_I2_12 1. @12105 G1_I2_13 1. @12106 G1_I2_14 1. @12107 G1_I2_15 1. @12108 G1_I2_16 1. @12109 G1_I2_17 1. @12110 G1_I2_18 1. @12111 G1_I2_19 1. @12112 G1_I2_20 1. @12113 G1_I2_21 1. @12114 G1_I2_22 1. @12115 G1_I2_23 1. @12116 G1_I2_24 1. @12117 G1_I2_25 1. @12118 G1_I2_26 1. @12119 G1_I2_27 1. @12120 G1_I2_28 1. @12121 G1_I2_29 1. @12122 G1_I2_30 1. @12123 G1_I2_31 1. @12124 G1_I2_32 1. @12125 G1_I3_01 1. @12126 G1_I3_02 1. @12127 G1_I3_03 1. @12128 G1_I3_04 1. @12129 G1_I3_05 1. @12130 G1_I3_06 1. @12131 G1_I3_07 1. @12132 G1_I3_08 1. @12133 G1_I3_09 1. @12134 G1_I3_10 1. @12135 G1_I3_11 1. @12136 G1_I3_12 1. @12137 G1_I3_13 1. @12138 G1_I3_14 1. @12139 G1_I3_15 1. @12140 G1_I3_16 1. @12141 G1_I3_17 1. @12142 G1_I3_18 1. @12143 G1_I3_19 1. @12144 G1_I3_20 1. @12145 G1_I3_21 1. @12146 G1_I3_22 1. @12147 G1_I3_23 1. @12148 G1_I3_24 1. @12149 G1_I3_25 1. @12150 G1_I3_26 1. @12151 G1_I3_27 1. @12152 G1_I3_28 1. @12153 G1_I3_29 1. @12154 G1_I3_30 1. @12155 G1_I3_31 1. @12156 G1_I3_32 1. @12157 G1_I4_01 1. @12158 G1_I4_02 1. @12159 G1_I4_03 1. @12160 G1_I4_04 1. @12161 G1_I4_05 1. @12162 G1_I4_06 1. @12163 G1_I4_07 1. @12164 G1_I4_08 1. @12165 G1_I4_09 1. @12166 G1_I4_10 1. @12167 G1_I4_11 1. @12168 G1_I4_12 1. @12169 G1_I4_13 1. @12170 G1_I4_14 1. @12171 G1_I4_15 1. @12172 G1_I4_16 1. @12173 G1_I4_17 1. @12174 G1_I4_18 1. @12175 G1_I4_19 1. @12176 G1_I4_20 1. @12177 G1_I4_21 1. @12178 G1_I4_22 1. @12179 G1_I4_23 1. @12180 G1_I4_24 1. @12181 G1_I4_25 1. @12182 G1_I4_26 1. @12183 G1_I4_27 1. @12184 G1_I4_28 1. @12185 G1_I4_29 1. @12186 G1_I4_30 1. @12187 G1_I4_31 1. @12188 G1_I4_32 1. @12189 G11_IM01 1. @12190 G11_IM02 1. @12191 G11_IM03 1. @12192 G11_IM04 1. @12193 G11_IM05 1. @12194 G11_IM06 1. @12195 G11_IM07 1. @12196 G11_IM08 1. @12197 G11_IM09 1. @12198 G11_IM10 1. @12199 G11_IM11 1. @12200 G11_IM12 1. @12201 G11_IM13 1. @12202 G11_IM14 1. @12203 G11_IM15 1. @12204 G11_IM16 1. @12205 G11_IM17 1. @12206 G11_IM18 1. @12207 G11_IM19 1. @12208 G11_IM20 1. @12209 G11_IM21 1. @12210 G11_IM22 1. @12211 G11_IM23 1. @12212 G11_IM24 1. @12213 G11_IM25 1. @12214 G11_IM26 1. @12215 G11_IM27 1. @12216 G11_IM28 1. @12217 G11_IM29 1. @12218 G11_IM30 1. @12219 G11_IM31 1. @12220 G11_IM32 1. @12221 G1_I6_01 1. @12222 G1_I6_02 1. @12223 G1_I6_03 1. @12224 G1_I6_04 1. @12225 G1_I6_05 1. @12226 G1_I6_06 1. @12227 G1_I6_07 1. @12228 G1_I6_08 1. @12229 G1_I6_09 1. @12230 G1_I6_10 1. @12231 G1_I6_11 1. @12232 G1_I6_12 1. @12233 G1_I6_13 1. @12234 G1_I6_14 1. @12235 G1_I6_15 1. @12236 G1_I6_16 1. @12237 G1_I6_17 1. @12238 G1_I6_18 1. @12239 G1_I6_19 1. @12240 G1_I6_20 1. @12241 G1_I6_21 1. @12242 G1_I6_22 1. @12243 G1_I6_23 1. @12244 G1_I6_24 1. @12245 G1_I6_25 1. @12246 G1_I6_26 1. @12247 G1_I6_27 1. @12248 G1_I6_28 1. @12249 G1_I6_29 1. @12250 G1_I6_30 1. @12251 G1_I6_31 1. @12252 G1_I6_32 1. @12253 G1_I7_01 1. @12254 G1_I7_02 1. @12255 G1_I7_03 1. @12256 G1_I7_04 1. @12257 G1_I7_05 1. @12258 G1_I7_06 1. @12259 G1_I7_07 1. @12260 G1_I7_08 1. @12261 G1_I7_09 1. @12262 G1_I7_10 1. @12263 G1_I7_11 1. @12264 G1_I7_12 1. @12265 G1_I7_13 1. @12266 G1_I7_14 1. @12267 G1_I7_15 1. @12268 G1_I7_16 1. @12269 G1_I7_17 1. @12270 G1_I7_18 1. @12271 G1_I7_19 1. @12272 G1_I7_20 1. @12273 G1_I7_21 1. @12274 G1_I7_22 1. @12275 G1_I7_23 1. @12276 G1_I7_24 1. @12277 G1_I7_25 1. @12278 G1_I7_26 1. @12279 G1_I7_27 1. @12280 G1_I7_28 1. @12281 G1_I7_29 1. @12282 G1_I7_30 1. @12283 G1_I7_31 1. @12284 G1_I7_32 1. @12285 G1_I8_01 1. @12286 G1_I8_02 1. @12287 G1_I8_03 1. @12288 G1_I8_04 1. @12289 G1_I8_05 1. @12290 G1_I8_06 1. @12291 G1_I8_07 1. @12292 G1_I8_08 1. @12293 G1_I8_09 1. @12294 G1_I8_10 1. @12295 G1_I8_11 1. @12296 G1_I8_12 1. @12297 G1_I8_13 1. @12298 G1_I8_14 1. @12299 G1_I8_15 1. @12300 G1_I8_16 1. @12301 G1_I8_17 1. @12302 G1_I8_18 1. @12303 G1_I8_19 1. @12304 G1_I8_20 1. @12305 G1_I8_21 1. @12306 G1_I8_22 1. @12307 G1_I8_23 1. @12308 G1_I8_24 1. @12309 G1_I8_25 1. @12310 G1_I8_26 1. @12311 G1_I8_27 1. @12312 G1_I8_28 1. @12313 G1_I8_29 1. @12314 G1_I8_30 1. @12315 G1_I8_31 1. @12316 G1_I8_32 1. @12317 G1_I9_01 1. @12318 G1_I9_02 1. @12319 G1_I9_03 1. @12320 G1_I9_04 1. @12321 G1_I9_05 1. @12322 G1_I9_06 1. @12323 G1_I9_07 1. @12324 G1_I9_08 1. @12325 G1_I9_09 1. @12326 G1_I9_10 1. @12327 G1_I9_11 1. @12328 G1_I9_12 1. @12329 G1_I9_13 1. @12330 G1_I9_14 1. @12331 G1_I9_15 1. @12332 G1_I9_16 1. @12333 G1_I9_17 1. @12334 G1_I9_18 1. @12335 G1_I9_19 1. @12336 G1_I9_20 1. @12337 G1_I9_21 1. @12338 G1_I9_22 1. @12339 G1_I9_23 1. @12340 G1_I9_24 1. @12341 G1_I9_25 1. @12342 G1_I9_26 1. @12343 G1_I9_27 1. @12344 G1_I9_28 1. @12345 G1_I9_29 1. @12346 G1_I9_30 1. @12347 G1_I9_31 1. @12348 G1_I9_32 1. @12349 G1_I1001 1. @12350 G1_I1002 1. @12351 G1_I1003 1. @12352 G1_I1004 1. @12353 G1_I1005 1. @12354 G1_I1006 1. @12355 G1_I1007 1. @12356 G1_I1008 1. @12357 G1_I1009 1. @12358 G1_I1010 1. @12359 G1_I1011 1. @12360 G1_I1012 1. @12361 G1_I1013 1. @12362 G1_I1014 1. @12363 G1_I1015 1. @12364 G1_I1016 1. @12365 G1_I1017 1. @12366 G1_I1018 1. @12367 G1_I1019 1. @12368 G1_I1020 1. @12369 G1_I1021 1. @12370 G1_I1022 1. @12371 G1_I1023 1. @12372 G1_I1024 1. @12373 G1_I1025 1. @12374 G1_I1026 1. @12375 G1_I1027 1. @12376 G1_I1028 1. @12377 G1_I1029 1. @12378 G1_I1030 1. @12379 G1_I1031 1. @12380 G1_I1032 1. @12381 G2I10001 1. @12382 G2I10002 1. @12383 G2I10003 1. @12384 G2I10004 1. @12385 G2I10005 1. @12386 G2I10006 1. @12387 G2I10007 1. @12388 G2I10008 1. @12389 G2I10009 1. @12390 G2I10010 1. @12391 G2I10011 1. @12392 G2I10012 1. @12393 G2I10013 1. @12394 G2I10014 1. @12395 G2I10015 1. @12396 G2I10016 1. @12397 G2I10017 1. @12398 G2I10018 1. @12399 G2I10019 1. @12400 G2I10020 1. @12401 G2I10021 1. @12402 G2I10022 1. @12403 G2I10023 1. @12404 G2I10024 1. @12405 G2I10025 1. @12406 G2I10026 1. @12407 G2I10027 1. @12408 G2I10028 1. @12409 G2I10029 1. @12410 G2I10030 1. @12411 G2I10031 1. @12412 G2I10032 1. @12413 G2I10401 1. @12414 G2I10402 1. @12415 G2I10403 1. @12416 G2I10404 1. @12417 G2I10405 1. @12418 G2I10406 1. @12419 G2I10407 1. @12420 G2I10408 1. @12421 G2I10409 1. @12422 G2I10410 1. @12423 G2I10411 1. @12424 G2I10412 1. @12425 G2I10413 1. @12426 G2I10414 1. @12427 G2I10415 1. @12428 G2I10416 1. @12429 G2I10417 1. @12430 G2I10418 1. @12431 G2I10419 1. @12432 G2I10420 1. @12433 G2I10421 1. @12434 G2I10422 1. @12435 G2I10423 1. @12436 G2I10424 1. @12437 G2I10425 1. @12438 G2I10426 1. @12439 G2I10427 1. @12440 G2I10428 1. @12441 G2I10429 1. @12442 G2I10430 1. @12443 G2I10431 1. @12444 G2I10432 1. @12445 G2I11001 1. @12446 G2I11002 1. @12447 G2I11003 1. @12448 G2I11004 1. @12449 G2I11005 1. @12450 G2I11006 1. @12451 G2I11007 1. @12452 G2I11008 1. @12453 G2I11009 1. @12454 G2I11010 1. @12455 G2I11011 1. @12456 G2I11012 1. @12457 G2I11013 1. @12458 G2I11014 1. @12459 G2I11015 1. @12460 G2I11016 1. @12461 G2I11017 1. @12462 G2I11018 1. @12463 G2I11019 1. @12464 G2I11020 1. @12465 G2I11021 1. @12466 G2I11022 1. @12467 G2I11023 1. @12468 G2I11024 1. @12469 G2I11025 1. @12470 G2I11026 1. @12471 G2I11027 1. @12472 G2I11028 1. @12473 G2I11029 1. @12474 G2I11030 1. @12475 G2I11031 1. @12476 G2I11032 1. @12477 G2I12001 1. @12478 G2I12002 1. @12479 G2I12003 1. @12480 G2I12004 1. @12481 G2I12005 1. @12482 G2I12006 1. @12483 G2I12007 1. @12484 G2I12008 1. @12485 G2I12009 1. @12486 G2I12010 1. @12487 G2I12011 1. @12488 G2I12012 1. @12489 G2I12013 1. @12490 G2I12014 1. @12491 G2I12015 1. @12492 G2I12016 1. @12493 G2I12017 1. @12494 G2I12018 1. @12495 G2I12019 1. @12496 G2I12020 1. @12497 G2I12021 1. @12498 G2I12022 1. @12499 G2I12023 1. @12500 G2I12024 1. @12501 G2I12025 1. @12502 G2I12026 1. @12503 G2I12027 1. @12504 G2I12028 1. @12505 G2I12029 1. @12506 G2I12030 1. @12507 G2I12031 1. @12508 G2I12032 1. @12509 G2I13001 1. @12510 G2I13002 1. @12511 G2I13003 1. @12512 G2I13004 1. @12513 G2I13005 1. @12514 G2I13006 1. @12515 G2I13007 1. @12516 G2I13008 1. @12517 G2I13009 1. @12518 G2I13010 1. @12519 G2I13011 1. @12520 G2I13012 1. @12521 G2I13013 1. @12522 G2I13014 1. @12523 G2I13015 1. @12524 G2I13016 1. @12525 G2I13017 1. @12526 G2I13018 1. @12527 G2I13019 1. @12528 G2I13020 1. @12529 G2I13021 1. @12530 G2I13022 1. @12531 G2I13023 1. @12532 G2I13024 1. @12533 G2I13025 1. @12534 G2I13026 1. @12535 G2I13027 1. @12536 G2I13028 1. @12537 G2I13029 1. @12538 G2I13030 1. @12539 G2I13031 1. @12540 G2I13032 1. @12541 G2I14001 1. @12542 G2I14002 1. @12543 G2I14003 1. @12544 G2I14004 1. @12545 G2I14005 1. @12546 G2I14006 1. @12547 G2I14007 1. @12548 G2I14008 1. @12549 G2I14009 1. @12550 G2I14010 1. @12551 G2I14011 1. @12552 G2I14012 1. @12553 G2I14013 1. @12554 G2I14014 1. @12555 G2I14015 1. @12556 G2I14016 1. @12557 G2I14017 1. @12558 G2I14018 1. @12559 G2I14019 1. @12560 G2I14020 1. @12561 G2I14021 1. @12562 G2I14022 1. @12563 G2I14023 1. @12564 G2I14024 1. @12565 G2I14025 1. @12566 G2I14026 1. @12567 G2I14027 1. @12568 G2I14028 1. @12569 G2I14029 1. @12570 G2I14030 1. @12571 G2I14031 1. @12572 G2I14032 1. ; LABEL SUSEQNUM = "Sequence number of person," ROT = "Rotation group number" SU_ID = "Scrambled identifier-PSU, segment, ser" PP_ENTRY = "Edited person's entry address ID" PP_PNUM = "Edited person number" SU_TOTPP = "Total number of person records in the" PP_RCSEQ = "Sequence number of person record withi" HH_ADD01 = "Address id. of household person" HH_ADD02 = "Address id. of household person" HH_ADD03 = "Address id. of household person" HH_ADD04 = "Address id. of household person" HH_ADD05 = "Address id. of household person" HH_ADD06 = "Address id. of household person" HH_ADD07 = "Address id. of household person" HH_ADD08 = "Address id. of household person" HH_ADD09 = "Address id. of household person" HH_ADD10 = "Address id. of household person" HH_ADD11 = "Address id. of household person" HH_ADD12 = "Address id. of household person" HH_ADD13 = "Address id. of household person" HH_ADD14 = "Address id. of household person" HH_ADD15 = "Address id. of household person" HH_ADD16 = "Address id. of household person" HH_ADD17 = "Address id. of household person" HH_ADD18 = "Address id. of household person" HH_ADD19 = "Address id. of household person" HH_ADD20 = "Address id. of household person" HH_ADD21 = "Address id. of household person" HH_ADD22 = "Address id. of household person" HH_ADD23 = "Address id. of household person" HH_ADD24 = "Address id. of household person" HH_ADD25 = "Address id. of household person" HH_ADD26 = "Address id. of household person" HH_ADD27 = "Address id. of household person" HH_ADD28 = "Address id. of household person" HH_ADD29 = "Address id. of household person" HH_ADD30 = "Address id. of household person" HH_ADD31 = "Address id. of household person" HH_ADD32 = "Address id. of household person" PP_INTV1 = "Person's interview status for the" PP_INTV2 = "Person's interview status for the" PP_INTV3 = "Person's interview status for the" PP_INTV4 = "Person's interview status for the" PP_INTV5 = "Person's interview status for the" PP_INTV6 = "Person's interview status for the" PP_INTV7 = "Person's interview status for the" PP_INTV8 = "Person's interview status for the" PP_MIS01 = "Person's interview status (monthly)" PP_MIS02 = "Person's interview status (monthly)" PP_MIS03 = "Person's interview status (monthly)" PP_MIS04 = "Person's interview status (monthly)" PP_MIS05 = "Person's interview status (monthly)" PP_MIS06 = "Person's interview status (monthly)" PP_MIS07 = "Person's interview status (monthly)" PP_MIS08 = "Person's interview status (monthly)" PP_MIS09 = "Person's interview status (monthly)" PP_MIS10 = "Person's interview status (monthly)" PP_MIS11 = "Person's interview status (monthly)" PP_MIS12 = "Person's interview status (monthly)" PP_MIS13 = "Person's interview status (monthly)" PP_MIS14 = "Person's interview status (monthly)" PP_MIS15 = "Person's interview status (monthly)" PP_MIS16 = "Person's interview status (monthly)" PP_MIS17 = "Person's interview status (monthly)" PP_MIS18 = "Person's interview status (monthly)" PP_MIS19 = "Person's interview status (monthly)" PP_MIS20 = "Person's interview status (monthly)" PP_MIS21 = "Person's interview status (monthly)" PP_MIS22 = "Person's interview status (monthly)" PP_MIS23 = "Person's interview status (monthly)" PP_MIS24 = "Person's interview status (monthly)" PP_MIS25 = "Person's interview status (monthly)" PP_MIS26 = "Person's interview status (monthly)" PP_MIS27 = "Person's interview status (monthly)" PP_MIS28 = "Person's interview status (monthly)" PP_MIS29 = "Person's interview status (monthly)" PP_MIS30 = "Person's interview status (monthly)" PP_MIS31 = "Person's interview status (monthly)" PP_MIS32 = "Person's interview status (monthly)" REASLEF1 = "Preedited reason for leaving the" REASLEF2 = "Preedited reason for leaving the" REASLEF3 = "Preedited reason for leaving the" REASLEF4 = "Preedited reason for leaving the" REASLEF5 = "Preedited reason for leaving the" REASLEF6 = "Preedited reason for leaving the" REASLEF7 = "Preedited reason for leaving the" REASLEF8 = "Preedited reason for leaving the" HHINST01 = "Control card item 36b - interview" HHINST02 = "Control card item 36b - interview" HHINST03 = "Control card item 36b - interview" HHINST04 = "Control card item 36b - interview" HHINST05 = "Control card item 36b - interview" HHINST06 = "Control card item 36b - interview" HHINST07 = "Control card item 36b - interview" HHINST08 = "Control card item 36b - interview" HHINST09 = "Control card item 36b - interview" HHINST10 = "Control card item 36b - interview" HHINST11 = "Control card item 36b - interview" HHINST12 = "Control card item 36b - interview" HHINST13 = "Control card item 36b - interview" HHINST14 = "Control card item 36b - interview" HHINST15 = "Control card item 36b - interview" HHINST16 = "Control card item 36b - interview" HHINST17 = "Control card item 36b - interview" HHINST18 = "Control card item 36b - interview" HHINST19 = "Control card item 36b - interview" HHINST20 = "Control card item 36b - interview" HHINST21 = "Control card item 36b - interview" HHINST22 = "Control card item 36b - interview" HHINST23 = "Control card item 36b - interview" HHINST24 = "Control card item 36b - interview" HHINST25 = "Control card item 36b - interview" HHINST26 = "Control card item 36b - interview" HHINST27 = "Control card item 36b - interview" HHINST28 = "Control card item 36b - interview" HHINST29 = "Control card item 36b - interview" HHINST30 = "Control card item 36b - interview" HHINST31 = "Control card item 36b - interview" HHINST32 = "Control card item 36b - interview" PNLWGT = "Panel person's weight assigned to" FNLWGT86 = "Person's weight assigned for calendar" FNLWGT87 = "Person's weight assigned for calendar" SU_RGC = "Reduction group code established to ma" HSC = "Half sample code for variance estimati" STRAT = "Stratum code for variance estimation" LGTHHT01 = "Longitudinal household type (monthly)" LGTHHT02 = "Longitudinal household type (monthly)" LGTHHT03 = "Longitudinal household type (monthly)" LGTHHT04 = "Longitudinal household type (monthly)" LGTHHT05 = "Longitudinal household type (monthly)" LGTHHT06 = "Longitudinal household type (monthly)" LGTHHT07 = "Longitudinal household type (monthly)" LGTHHT08 = "Longitudinal household type (monthly)" LGTHHT09 = "Longitudinal household type (monthly)" LGTHHT10 = "Longitudinal household type (monthly)" LGTHHT11 = "Longitudinal household type (monthly)" LGTHHT12 = "Longitudinal household type (monthly)" LGTHHT13 = "Longitudinal household type (monthly)" LGTHHT14 = "Longitudinal household type (monthly)" LGTHHT15 = "Longitudinal household type (monthly)" LGTHHT16 = "Longitudinal household type (monthly)" LGTHHT17 = "Longitudinal household type (monthly)" LGTHHT18 = "Longitudinal household type (monthly)" LGTHHT19 = "Longitudinal household type (monthly)" LGTHHT20 = "Longitudinal household type (monthly)" LGTHHT21 = "Longitudinal household type (monthly)" LGTHHT22 = "Longitudinal household type (monthly)" LGTHHT23 = "Longitudinal household type (monthly)" LGTHHT24 = "Longitudinal household type (monthly)" LGTHHT25 = "Longitudinal household type (monthly)" LGTHHT26 = "Longitudinal household type (monthly)" LGTHHT27 = "Longitudinal household type (monthly)" LGTHHT28 = "Longitudinal household type (monthly)" LGTHHT29 = "Longitudinal household type (monthly)" LGTHHT30 = "Longitudinal household type (monthly)" LGTHHT31 = "Longitudinal household type (monthly)" LGTHHT32 = "Longitudinal household type (monthly)" LGTKEY01 = "Longitudinal key person indicator" LGTKEY02 = "Longitudinal key person indicator" LGTKEY03 = "Longitudinal key person indicator" LGTKEY04 = "Longitudinal key person indicator" LGTKEY05 = "Longitudinal key person indicator" LGTKEY06 = "Longitudinal key person indicator" LGTKEY07 = "Longitudinal key person indicator" LGTKEY08 = "Longitudinal key person indicator" LGTKEY09 = "Longitudinal key person indicator" LGTKEY10 = "Longitudinal key person indicator" LGTKEY11 = "Longitudinal key person indicator" LGTKEY12 = "Longitudinal key person indicator" LGTKEY13 = "Longitudinal key person indicator" LGTKEY14 = "Longitudinal key person indicator" LGTKEY15 = "Longitudinal key person indicator" LGTKEY16 = "Longitudinal key person indicator" LGTKEY17 = "Longitudinal key person indicator" LGTKEY18 = "Longitudinal key person indicator" LGTKEY19 = "Longitudinal key person indicator" LGTKEY20 = "Longitudinal key person indicator" LGTKEY21 = "Longitudinal key person indicator" LGTKEY22 = "Longitudinal key person indicator" LGTKEY23 = "Longitudinal key person indicator" LGTKEY24 = "Longitudinal key person indicator" LGTKEY25 = "Longitudinal key person indicator" LGTKEY26 = "Longitudinal key person indicator" LGTKEY27 = "Longitudinal key person indicator" LGTKEY28 = "Longitudinal key person indicator" LGTKEY29 = "Longitudinal key person indicator" LGTKEY30 = "Longitudinal key person indicator" LGTKEY31 = "Longitudinal key person indicator" LGTKEY32 = "Longitudinal key person indicator" LGTOTH01 = "Longitudinal 'other' person (not a key" LGTOTH02 = "Longitudinal 'other' person (not a key" LGTOTH03 = "Longitudinal 'other' person (not a key" LGTOTH04 = "Longitudinal 'other' person (not a key" LGTOTH05 = "Longitudinal 'other' person (not a key" LGTOTH06 = "Longitudinal 'other' person (not a key" LGTOTH07 = "Longitudinal 'other' person (not a key" LGTOTH08 = "Longitudinal 'other' person (not a key" LGTOTH09 = "Longitudinal 'other' person (not a key" LGTOTH10 = "Longitudinal 'other' person (not a key" LGTOTH11 = "Longitudinal 'other' person (not a key" LGTOTH12 = "Longitudinal 'other' person (not a key" LGTOTH13 = "Longitudinal 'other' person (not a key" LGTOTH14 = "Longitudinal 'other' person (not a key" LGTOTH15 = "Longitudinal 'other' person (not a key" LGTOTH16 = "Longitudinal 'other' person (not a key" LGTOTH17 = "Longitudinal 'other' person (not a key" LGTOTH18 = "Longitudinal 'other' person (not a key" LGTOTH19 = "Longitudinal 'other' person (not a key" LGTOTH20 = "Longitudinal 'other' person (not a key" LGTOTH21 = "Longitudinal 'other' person (not a key" LGTOTH22 = "Longitudinal 'other' person (not a key" LGTOTH23 = "Longitudinal 'other' person (not a key" LGTOTH24 = "Longitudinal 'other' person (not a key" LGTOTH25 = "Longitudinal 'other' person (not a key" LGTOTH26 = "Longitudinal 'other' person (not a key" LGTOTH27 = "Longitudinal 'other' person (not a key" LGTOTH28 = "Longitudinal 'other' person (not a key" LGTOTH29 = "Longitudinal 'other' person (not a key" LGTOTH30 = "Longitudinal 'other' person (not a key" LGTOTH31 = "Longitudinal 'other' person (not a key" LGTOTH32 = "Longitudinal 'other' person (not a key" LGTFA101 = "Long. adjustment factor number 1" LGTFA102 = "Long. adjustment factor number 1" LGTFA103 = "Long. adjustment factor number 1" LGTFA104 = "Long. adjustment factor number 1" LGTFA105 = "Long. adjustment factor number 1" LGTFA106 = "Long. adjustment factor number 1" LGTFA107 = "Long. adjustment factor number 1" LGTFA108 = "Long. adjustment factor number 1" LGTFA109 = "Long. adjustment factor number 1" LGTFA110 = "Long. adjustment factor number 1" LGTFA111 = "Long. adjustment factor number 1" LGTFA112 = "Long. adjustment factor number 1" LGTFA113 = "Long. adjustment factor number 1" LGTFA114 = "Long. adjustment factor number 1" LGTFA115 = "Long. adjustment factor number 1" LGTFA116 = "Long. adjustment factor number 1" LGTFA117 = "Long. adjustment factor number 1" LGTFA118 = "Long. adjustment factor number 1" LGTFA119 = "Long. adjustment factor number 1" LGTFA120 = "Long. adjustment factor number 1" LGTFA121 = "Long. adjustment factor number 1" LGTFA122 = "Long. adjustment factor number 1" LGTFA123 = "Long. adjustment factor number 1" LGTFA124 = "Long. adjustment factor number 1" LGTFA125 = "Long. adjustment factor number 1" LGTFA126 = "Long. adjustment factor number 1" LGTFA127 = "Long. adjustment factor number 1" LGTFA128 = "Long. adjustment factor number 1" LGTFA129 = "Long. adjustment factor number 1" LGTFA130 = "Long. adjustment factor number 1" LGTFA131 = "Long. adjustment factor number 1" LGTFA132 = "Long. adjustment factor number 1" LGTFA201 = "Long. adjustment factor number 2" LGTFA202 = "Long. adjustment factor number 2" LGTFA203 = "Long. adjustment factor number 2" LGTFA204 = "Long. adjustment factor number 2" LGTFA205 = "Long. adjustment factor number 2" LGTFA206 = "Long. adjustment factor number 2" LGTFA207 = "Long. adjustment factor number 2" LGTFA208 = "Long. adjustment factor number 2" LGTFA209 = "Long. adjustment factor number 2" LGTFA210 = "Long. adjustment factor number 2" LGTFA211 = "Long. adjustment factor number 2" LGTFA212 = "Long. adjustment factor number 2" LGTFA213 = "Long. adjustment factor number 2" LGTFA214 = "Long. adjustment factor number 2" LGTFA215 = "Long. adjustment factor number 2" LGTFA216 = "Long. adjustment factor number 2" LGTFA217 = "Long. adjustment factor number 2" LGTFA218 = "Long. adjustment factor number 2" LGTFA219 = "Long. adjustment factor number 2" LGTFA220 = "Long. adjustment factor number 2" LGTFA221 = "Long. adjustment factor number 2" LGTFA222 = "Long. adjustment factor number 2" LGTFA223 = "Long. adjustment factor number 2" LGTFA224 = "Long. adjustment factor number 2" LGTFA225 = "Long. adjustment factor number 2" LGTFA226 = "Long. adjustment factor number 2" LGTFA227 = "Long. adjustment factor number 2" LGTFA228 = "Long. adjustment factor number 2" LGTFA229 = "Long. adjustment factor number 2" LGTFA230 = "Long. adjustment factor number 2" LGTFA231 = "Long. adjustment factor number 2" LGTFA232 = "Long. adjustment factor number 2" SEX = "Sex, edited and imputed" RACE = "Race, edited and imputed" ETHNICTY = "Ethnic origin" RRP_01 = "Edited relationship to reference perso" RRP_02 = "Edited relationship to reference perso" RRP_03 = "Edited relationship to reference perso" RRP_04 = "Edited relationship to reference perso" RRP_05 = "Edited relationship to reference perso" RRP_06 = "Edited relationship to reference perso" RRP_07 = "Edited relationship to reference perso" RRP_08 = "Edited relationship to reference perso" RRP_09 = "Edited relationship to reference perso" RRP_10 = "Edited relationship to reference perso" RRP_11 = "Edited relationship to reference perso" RRP_12 = "Edited relationship to reference perso" RRP_13 = "Edited relationship to reference perso" RRP_14 = "Edited relationship to reference perso" RRP_15 = "Edited relationship to reference perso" RRP_16 = "Edited relationship to reference perso" RRP_17 = "Edited relationship to reference perso" RRP_18 = "Edited relationship to reference perso" RRP_19 = "Edited relationship to reference perso" RRP_20 = "Edited relationship to reference perso" RRP_21 = "Edited relationship to reference perso" RRP_22 = "Edited relationship to reference perso" RRP_23 = "Edited relationship to reference perso" RRP_24 = "Edited relationship to reference perso" RRP_25 = "Edited relationship to reference perso" RRP_26 = "Edited relationship to reference perso" RRP_27 = "Edited relationship to reference perso" RRP_28 = "Edited relationship to reference perso" RRP_29 = "Edited relationship to reference perso" RRP_30 = "Edited relationship to reference perso" RRP_31 = "Edited relationship to reference perso" RRP_32 = "Edited relationship to reference perso" AGE_01 = "Edited and imputed age as of last" AGE_02 = "Edited and imputed age as of last" AGE_03 = "Edited and imputed age as of last" AGE_04 = "Edited and imputed age as of last" AGE_05 = "Edited and imputed age as of last" AGE_06 = "Edited and imputed age as of last" AGE_07 = "Edited and imputed age as of last" AGE_08 = "Edited and imputed age as of last" AGE_09 = "Edited and imputed age as of last" AGE_10 = "Edited and imputed age as of last" AGE_11 = "Edited and imputed age as of last" AGE_12 = "Edited and imputed age as of last" AGE_13 = "Edited and imputed age as of last" AGE_14 = "Edited and imputed age as of last" AGE_15 = "Edited and imputed age as of last" AGE_16 = "Edited and imputed age as of last" AGE_17 = "Edited and imputed age as of last" AGE_18 = "Edited and imputed age as of last" AGE_19 = "Edited and imputed age as of last" AGE_20 = "Edited and imputed age as of last" AGE_21 = "Edited and imputed age as of last" AGE_22 = "Edited and imputed age as of last" AGE_23 = "Edited and imputed age as of last" AGE_24 = "Edited and imputed age as of last" AGE_25 = "Edited and imputed age as of last" AGE_26 = "Edited and imputed age as of last" AGE_27 = "Edited and imputed age as of last" AGE_28 = "Edited and imputed age as of last" AGE_29 = "Edited and imputed age as of last" AGE_30 = "Edited and imputed age as of last" AGE_31 = "Edited and imputed age as of last" AGE_32 = "Edited and imputed age as of last" MS_01 = "Marital status (monthly)" MS_02 = "Marital status (monthly)" MS_03 = "Marital status (monthly)" MS_04 = "Marital status (monthly)" MS_05 = "Marital status (monthly)" MS_06 = "Marital status (monthly)" MS_07 = "Marital status (monthly)" MS_08 = "Marital status (monthly)" MS_09 = "Marital status (monthly)" MS_10 = "Marital status (monthly)" MS_11 = "Marital status (monthly)" MS_12 = "Marital status (monthly)" MS_13 = "Marital status (monthly)" MS_14 = "Marital status (monthly)" MS_15 = "Marital status (monthly)" MS_16 = "Marital status (monthly)" MS_17 = "Marital status (monthly)" MS_18 = "Marital status (monthly)" MS_19 = "Marital status (monthly)" MS_20 = "Marital status (monthly)" MS_21 = "Marital status (monthly)" MS_22 = "Marital status (monthly)" MS_23 = "Marital status (monthly)" MS_24 = "Marital status (monthly)" MS_25 = "Marital status (monthly)" MS_26 = "Marital status (monthly)" MS_27 = "Marital status (monthly)" MS_28 = "Marital status (monthly)" MS_29 = "Marital status (monthly)" MS_30 = "Marital status (monthly)" MS_31 = "Marital status (monthly)" MS_32 = "Marital status (monthly)" FAMTYP01 = "Family type (monthly)" FAMTYP02 = "Family type (monthly)" FAMTYP03 = "Family type (monthly)" FAMTYP04 = "Family type (monthly)" FAMTYP05 = "Family type (monthly)" FAMTYP06 = "Family type (monthly)" FAMTYP07 = "Family type (monthly)" FAMTYP08 = "Family type (monthly)" FAMTYP09 = "Family type (monthly)" FAMTYP10 = "Family type (monthly)" FAMTYP11 = "Family type (monthly)" FAMTYP12 = "Family type (monthly)" FAMTYP13 = "Family type (monthly)" FAMTYP14 = "Family type (monthly)" FAMTYP15 = "Family type (monthly)" FAMTYP16 = "Family type (monthly)" FAMTYP17 = "Family type (monthly)" FAMTYP18 = "Family type (monthly)" FAMTYP19 = "Family type (monthly)" FAMTYP20 = "Family type (monthly)" FAMTYP21 = "Family type (monthly)" FAMTYP22 = "Family type (monthly)" FAMTYP23 = "Family type (monthly)" FAMTYP24 = "Family type (monthly)" FAMTYP25 = "Family type (monthly)" FAMTYP26 = "Family type (monthly)" FAMTYP27 = "Family type (monthly)" FAMTYP28 = "Family type (monthly)" FAMTYP29 = "Family type (monthly)" FAMTYP30 = "Family type (monthly)" FAMTYP31 = "Family type (monthly)" FAMTYP32 = "Family type (monthly)" FAMREL01 = "Family relationship code if in" FAMREL02 = "Family relationship code if in" FAMREL03 = "Family relationship code if in" FAMREL04 = "Family relationship code if in" FAMREL05 = "Family relationship code if in" FAMREL06 = "Family relationship code if in" FAMREL07 = "Family relationship code if in" FAMREL08 = "Family relationship code if in" FAMREL09 = "Family relationship code if in" FAMREL10 = "Family relationship code if in" FAMREL11 = "Family relationship code if in" FAMREL12 = "Family relationship code if in" FAMREL13 = "Family relationship code if in" FAMREL14 = "Family relationship code if in" FAMREL15 = "Family relationship code if in" FAMREL16 = "Family relationship code if in" FAMREL17 = "Family relationship code if in" FAMREL18 = "Family relationship code if in" FAMREL19 = "Family relationship code if in" FAMREL20 = "Family relationship code if in" FAMREL21 = "Family relationship code if in" FAMREL22 = "Family relationship code if in" FAMREL23 = "Family relationship code if in" FAMREL24 = "Family relationship code if in" FAMREL25 = "Family relationship code if in" FAMREL26 = "Family relationship code if in" FAMREL27 = "Family relationship code if in" FAMREL28 = "Family relationship code if in" FAMREL29 = "Family relationship code if in" FAMREL30 = "Family relationship code if in" FAMREL31 = "Family relationship code if in" FAMREL32 = "Family relationship code if in" FAMNUM01 = "Family number if in a subfamily" FAMNUM02 = "Family number if in a subfamily" FAMNUM03 = "Family number if in a subfamily" FAMNUM04 = "Family number if in a subfamily" FAMNUM05 = "Family number if in a subfamily" FAMNUM06 = "Family number if in a subfamily" FAMNUM07 = "Family number if in a subfamily" FAMNUM08 = "Family number if in a subfamily" FAMNUM09 = "Family number if in a subfamily" FAMNUM10 = "Family number if in a subfamily" FAMNUM11 = "Family number if in a subfamily" FAMNUM12 = "Family number if in a subfamily" FAMNUM13 = "Family number if in a subfamily" FAMNUM14 = "Family number if in a subfamily" FAMNUM15 = "Family number if in a subfamily" FAMNUM16 = "Family number if in a subfamily" FAMNUM17 = "Family number if in a subfamily" FAMNUM18 = "Family number if in a subfamily" FAMNUM19 = "Family number if in a subfamily" FAMNUM20 = "Family number if in a subfamily" FAMNUM21 = "Family number if in a subfamily" FAMNUM22 = "Family number if in a subfamily" FAMNUM23 = "Family number if in a subfamily" FAMNUM24 = "Family number if in a subfamily" FAMNUM25 = "Family number if in a subfamily" FAMNUM26 = "Family number if in a subfamily" FAMNUM27 = "Family number if in a subfamily" FAMNUM28 = "Family number if in a subfamily" FAMNUM29 = "Family number if in a subfamily" FAMNUM30 = "Family number if in a subfamily" FAMNUM31 = "Family number if in a subfamily" FAMNUM32 = "Family number if in a subfamily" PNSP_01 = "Person number of spouse (monthly)" PNSP_02 = "Person number of spouse (monthly)" PNSP_03 = "Person number of spouse (monthly)" PNSP_04 = "Person number of spouse (monthly)" PNSP_05 = "Person number of spouse (monthly)" PNSP_06 = "Person number of spouse (monthly)" PNSP_07 = "Person number of spouse (monthly)" PNSP_08 = "Person number of spouse (monthly)" PNSP_09 = "Person number of spouse (monthly)" PNSP_10 = "Person number of spouse (monthly)" PNSP_11 = "Person number of spouse (monthly)" PNSP_12 = "Person number of spouse (monthly)" PNSP_13 = "Person number of spouse (monthly)" PNSP_14 = "Person number of spouse (monthly)" PNSP_15 = "Person number of spouse (monthly)" PNSP_16 = "Person number of spouse (monthly)" PNSP_17 = "Person number of spouse (monthly)" PNSP_18 = "Person number of spouse (monthly)" PNSP_19 = "Person number of spouse (monthly)" PNSP_20 = "Person number of spouse (monthly)" PNSP_21 = "Person number of spouse (monthly)" PNSP_22 = "Person number of spouse (monthly)" PNSP_23 = "Person number of spouse (monthly)" PNSP_24 = "Person number of spouse (monthly)" PNSP_25 = "Person number of spouse (monthly)" PNSP_26 = "Person number of spouse (monthly)" PNSP_27 = "Person number of spouse (monthly)" PNSP_28 = "Person number of spouse (monthly)" PNSP_29 = "Person number of spouse (monthly)" PNSP_30 = "Person number of spouse (monthly)" PNSP_31 = "Person number of spouse (monthly)" PNSP_32 = "Person number of spouse (monthly)" ENT_SP01 = "Entry address ID of spouse (monthly)" ENT_SP02 = "Entry address ID of spouse (monthly)" ENT_SP03 = "Entry address ID of spouse (monthly)" ENT_SP04 = "Entry address ID of spouse (monthly)" ENT_SP05 = "Entry address ID of spouse (monthly)" ENT_SP06 = "Entry address ID of spouse (monthly)" ENT_SP07 = "Entry address ID of spouse (monthly)" ENT_SP08 = "Entry address ID of spouse (monthly)" ENT_SP09 = "Entry address ID of spouse (monthly)" ENT_SP10 = "Entry address ID of spouse (monthly)" ENT_SP11 = "Entry address ID of spouse (monthly)" ENT_SP12 = "Entry address ID of spouse (monthly)" ENT_SP13 = "Entry address ID of spouse (monthly)" ENT_SP14 = "Entry address ID of spouse (monthly)" ENT_SP15 = "Entry address ID of spouse (monthly)" ENT_SP16 = "Entry address ID of spouse (monthly)" ENT_SP17 = "Entry address ID of spouse (monthly)" ENT_SP18 = "Entry address ID of spouse (monthly)" ENT_SP19 = "Entry address ID of spouse (monthly)" ENT_SP20 = "Entry address ID of spouse (monthly)" ENT_SP21 = "Entry address ID of spouse (monthly)" ENT_SP22 = "Entry address ID of spouse (monthly)" ENT_SP23 = "Entry address ID of spouse (monthly)" ENT_SP24 = "Entry address ID of spouse (monthly)" ENT_SP25 = "Entry address ID of spouse (monthly)" ENT_SP26 = "Entry address ID of spouse (monthly)" ENT_SP27 = "Entry address ID of spouse (monthly)" ENT_SP28 = "Entry address ID of spouse (monthly)" ENT_SP29 = "Entry address ID of spouse (monthly)" ENT_SP30 = "Entry address ID of spouse (monthly)" ENT_SP31 = "Entry address ID of spouse (monthly)" ENT_SP32 = "Entry address ID of spouse (monthly)" PNPT_01 = "Person number of parent (monthly)" PNPT_02 = "Person number of parent (monthly)" PNPT_03 = "Person number of parent (monthly)" PNPT_04 = "Person number of parent (monthly)" PNPT_05 = "Person number of parent (monthly)" PNPT_06 = "Person number of parent (monthly)" PNPT_07 = "Person number of parent (monthly)" PNPT_08 = "Person number of parent (monthly)" PNPT_09 = "Person number of parent (monthly)" PNPT_10 = "Person number of parent (monthly)" PNPT_11 = "Person number of parent (monthly)" PNPT_12 = "Person number of parent (monthly)" PNPT_13 = "Person number of parent (monthly)" PNPT_14 = "Person number of parent (monthly)" PNPT_15 = "Person number of parent (monthly)" PNPT_16 = "Person number of parent (monthly)" PNPT_17 = "Person number of parent (monthly)" PNPT_18 = "Person number of parent (monthly)" PNPT_19 = "Person number of parent (monthly)" PNPT_20 = "Person number of parent (monthly)" PNPT_21 = "Person number of parent (monthly)" PNPT_22 = "Person number of parent (monthly)" PNPT_23 = "Person number of parent (monthly)" PNPT_24 = "Person number of parent (monthly)" PNPT_25 = "Person number of parent (monthly)" PNPT_26 = "Person number of parent (monthly)" PNPT_27 = "Person number of parent (monthly)" PNPT_28 = "Person number of parent (monthly)" PNPT_29 = "Person number of parent (monthly)" PNPT_30 = "Person number of parent (monthly)" PNPT_31 = "Person number of parent (monthly)" PNPT_32 = "Person number of parent (monthly)" ENT_PT01 = "Entry address ID of parent (monthly)" ENT_PT02 = "Entry address ID of parent (monthly)" ENT_PT03 = "Entry address ID of parent (monthly)" ENT_PT04 = "Entry address ID of parent (monthly)" ENT_PT05 = "Entry address ID of parent (monthly)" ENT_PT06 = "Entry address ID of parent (monthly)" ENT_PT07 = "Entry address ID of parent (monthly)" ENT_PT08 = "Entry address ID of parent (monthly)" ENT_PT09 = "Entry address ID of parent (monthly)" ENT_PT10 = "Entry address ID of parent (monthly)" ENT_PT11 = "Entry address ID of parent (monthly)" ENT_PT12 = "Entry address ID of parent (monthly)" ENT_PT13 = "Entry address ID of parent (monthly)" ENT_PT14 = "Entry address ID of parent (monthly)" ENT_PT15 = "Entry address ID of parent (monthly)" ENT_PT16 = "Entry address ID of parent (monthly)" ENT_PT17 = "Entry address ID of parent (monthly)" ENT_PT18 = "Entry address ID of parent (monthly)" ENT_PT19 = "Entry address ID of parent (monthly)" ENT_PT20 = "Entry address ID of parent (monthly)" ENT_PT21 = "Entry address ID of parent (monthly)" ENT_PT22 = "Entry address ID of parent (monthly)" ENT_PT23 = "Entry address ID of parent (monthly)" ENT_PT24 = "Entry address ID of parent (monthly)" ENT_PT25 = "Entry address ID of parent (monthly)" ENT_PT26 = "Entry address ID of parent (monthly)" ENT_PT27 = "Entry address ID of parent (monthly)" ENT_PT28 = "Entry address ID of parent (monthly)" ENT_PT29 = "Entry address ID of parent (monthly)" ENT_PT30 = "Entry address ID of parent (monthly)" ENT_PT31 = "Entry address ID of parent (monthly)" ENT_PT32 = "Entry address ID of parent (monthly)" HIGRADE1 = "Highest grade or year of regular schoo" HIGRADE2 = "Highest grade or year of regular schoo" HIGRADE3 = "Highest grade or year of regular schoo" HIGRADE4 = "Highest grade or year of regular schoo" HIGRADE5 = "Highest grade or year of regular schoo" HIGRADE6 = "Highest grade or year of regular schoo" HIGRADE7 = "Highest grade or year of regular schoo" HIGRADE8 = "Highest grade or year of regular schoo" GRD_CMP1 = "Did he/she complete that grade" GRD_CMP2 = "Did he/she complete that grade" GRD_CMP3 = "Did he/she complete that grade" GRD_CMP4 = "Did he/she complete that grade" GRD_CMP5 = "Did he/she complete that grade" GRD_CMP6 = "Did he/she complete that grade" GRD_CMP7 = "Did he/she complete that grade" GRD_CMP8 = "Did he/she complete that grade" U_VET_1 = "Ever served on active duty in the U.S." U_VET_2 = "Ever served on active duty in the U.S." U_VET_3 = "Ever served on active duty in the U.S." U_VET_4 = "Ever served on active duty in the U.S." U_VET_5 = "Ever served on active duty in the U.S." U_VET_6 = "Ever served on active duty in the U.S." U_VET_7 = "Ever served on active duty in the U.S." U_VET_8 = "Ever served on active duty in the U.S." IN_AF_1 = "Is currently in the armed forces" IN_AF_2 = "Is currently in the armed forces" IN_AF_3 = "Is currently in the armed forces" IN_AF_4 = "Is currently in the armed forces" IN_AF_5 = "Is currently in the armed forces" IN_AF_6 = "Is currently in the armed forces" IN_AF_7 = "Is currently in the armed forces" IN_AF_8 = "Is currently in the armed forces" USRV1_1 = "Unedited period of service, control ca" USRV1_2 = "Unedited period of service, control ca" USRV1_3 = "Unedited period of service, control ca" USRV1_4 = "Unedited period of service, control ca" USRV1_5 = "Unedited period of service, control ca" USRV1_6 = "Unedited period of service, control ca" USRV1_7 = "Unedited period of service, control ca" USRV1_8 = "Unedited period of service, control ca" USRV2_1 = "Unedited period of service" USRV2_2 = "Unedited period of service" USRV2_3 = "Unedited period of service" USRV2_4 = "Unedited period of service" USRV2_5 = "Unedited period of service" USRV2_6 = "Unedited period of service" USRV2_7 = "Unedited period of service" USRV2_8 = "Unedited period of service" USRV3_1 = "Unedited period of service" USRV3_2 = "Unedited period of service" USRV3_3 = "Unedited period of service" USRV3_4 = "Unedited period of service" USRV3_5 = "Unedited period of service" USRV3_6 = "Unedited period of service" USRV3_7 = "Unedited period of service" USRV3_8 = "Unedited period of service" BRTHMN = "Preedited month of birth" BRTHYR = "Preedited year of birth" U_PNGD1 = "Preedited person number of designated" U_PNGD2 = "Preedited person number of designated" U_PNGD3 = "Preedited person number of designated" U_PNGD4 = "Preedited person number of designated" U_PNGD5 = "Preedited person number of designated" U_PNGD6 = "Preedited person number of designated" U_PNGD7 = "Preedited person number of designated" U_PNGD8 = "Preedited person number of designated" ENTID_G1 = "Entry address ID of designated parent " ENTID_G2 = "Entry address ID of designated parent " ENTID_G3 = "Entry address ID of designated parent " ENTID_G4 = "Entry address ID of designated parent " ENTID_G5 = "Entry address ID of designated parent " ENTID_G6 = "Entry address ID of designated parent " ENTID_G7 = "Entry address ID of designated parent " ENTID_G8 = "Entry address ID of designated parent " U_LVQT01 = "Housing/other unit control card items " U_LVQT02 = "Housing/other unit control card items " U_LVQT03 = "Housing/other unit control card items " U_LVQT04 = "Housing/other unit control card items " U_LVQT05 = "Housing/other unit control card items " U_LVQT06 = "Housing/other unit control card items " U_LVQT07 = "Housing/other unit control card items " U_LVQT08 = "Housing/other unit control card items " U_LVQT09 = "Housing/other unit control card items " U_LVQT10 = "Housing/other unit control card items " U_LVQT11 = "Housing/other unit control card items " U_LVQT12 = "Housing/other unit control card items " U_LVQT13 = "Housing/other unit control card items " U_LVQT14 = "Housing/other unit control card items " U_LVQT15 = "Housing/other unit control card items " U_LVQT16 = "Housing/other unit control card items " U_LVQT17 = "Housing/other unit control card items " U_LVQT18 = "Housing/other unit control card items " U_LVQT19 = "Housing/other unit control card items " U_LVQT20 = "Housing/other unit control card items " U_LVQT21 = "Housing/other unit control card items " U_LVQT22 = "Housing/other unit control card items " U_LVQT23 = "Housing/other unit control card items " U_LVQT24 = "Housing/other unit control card items " U_LVQT25 = "Housing/other unit control card items " U_LVQT26 = "Housing/other unit control card items " U_LVQT27 = "Housing/other unit control card items " U_LVQT28 = "Housing/other unit control card items " U_LVQT29 = "Housing/other unit control card items " U_LVQT30 = "Housing/other unit control card items " U_LVQT31 = "Housing/other unit control card items " U_LVQT32 = "Housing/other unit control card items " TENURE01 = "Living quarters owned/rent/other occ," TENURE02 = "Living quarters owned/rent/other occ," TENURE03 = "Living quarters owned/rent/other occ," TENURE04 = "Living quarters owned/rent/other occ," TENURE05 = "Living quarters owned/rent/other occ," TENURE06 = "Living quarters owned/rent/other occ," TENURE07 = "Living quarters owned/rent/other occ," TENURE08 = "Living quarters owned/rent/other occ," TENURE09 = "Living quarters owned/rent/other occ," TENURE10 = "Living quarters owned/rent/other occ," TENURE11 = "Living quarters owned/rent/other occ," TENURE12 = "Living quarters owned/rent/other occ," TENURE13 = "Living quarters owned/rent/other occ," TENURE14 = "Living quarters owned/rent/other occ," TENURE15 = "Living quarters owned/rent/other occ," TENURE16 = "Living quarters owned/rent/other occ," TENURE17 = "Living quarters owned/rent/other occ," TENURE18 = "Living quarters owned/rent/other occ," TENURE19 = "Living quarters owned/rent/other occ," TENURE20 = "Living quarters owned/rent/other occ," TENURE21 = "Living quarters owned/rent/other occ," TENURE22 = "Living quarters owned/rent/other occ," TENURE23 = "Living quarters owned/rent/other occ," TENURE24 = "Living quarters owned/rent/other occ," TENURE25 = "Living quarters owned/rent/other occ," TENURE26 = "Living quarters owned/rent/other occ," TENURE27 = "Living quarters owned/rent/other occ," TENURE28 = "Living quarters owned/rent/other occ," TENURE29 = "Living quarters owned/rent/other occ," TENURE30 = "Living quarters owned/rent/other occ," TENURE31 = "Living quarters owned/rent/other occ," TENURE32 = "Living quarters owned/rent/other occ," PUBHS_01 = "CC item 16a is the residence in a publ" PUBHS_02 = "CC item 16a is the residence in a publ" PUBHS_03 = "CC item 16a is the residence in a publ" PUBHS_04 = "CC item 16a is the residence in a publ" PUBHS_05 = "CC item 16a is the residence in a publ" PUBHS_06 = "CC item 16a is the residence in a publ" PUBHS_07 = "CC item 16a is the residence in a publ" PUBHS_08 = "CC item 16a is the residence in a publ" PUBHS_09 = "CC item 16a is the residence in a publ" PUBHS_10 = "CC item 16a is the residence in a publ" PUBHS_11 = "CC item 16a is the residence in a publ" PUBHS_12 = "CC item 16a is the residence in a publ" PUBHS_13 = "CC item 16a is the residence in a publ" PUBHS_14 = "CC item 16a is the residence in a publ" PUBHS_15 = "CC item 16a is the residence in a publ" PUBHS_16 = "CC item 16a is the residence in a publ" PUBHS_17 = "CC item 16a is the residence in a publ" PUBHS_18 = "CC item 16a is the residence in a publ" PUBHS_19 = "CC item 16a is the residence in a publ" PUBHS_20 = "CC item 16a is the residence in a publ" PUBHS_21 = "CC item 16a is the residence in a publ" PUBHS_22 = "CC item 16a is the residence in a publ" PUBHS_23 = "CC item 16a is the residence in a publ" PUBHS_24 = "CC item 16a is the residence in a publ" PUBHS_25 = "CC item 16a is the residence in a publ" PUBHS_26 = "CC item 16a is the residence in a publ" PUBHS_27 = "CC item 16a is the residence in a publ" PUBHS_28 = "CC item 16a is the residence in a publ" PUBHS_29 = "CC item 16a is the residence in a publ" PUBHS_30 = "CC item 16a is the residence in a publ" PUBHS_31 = "CC item 16a is the residence in a publ" PUBHS_32 = "CC item 16a is the residence in a publ" LOW_RE01 = "CC item 16b paying lower rent because " LOW_RE02 = "CC item 16b paying lower rent because " LOW_RE03 = "CC item 16b paying lower rent because " LOW_RE04 = "CC item 16b paying lower rent because " LOW_RE05 = "CC item 16b paying lower rent because " LOW_RE06 = "CC item 16b paying lower rent because " LOW_RE07 = "CC item 16b paying lower rent because " LOW_RE08 = "CC item 16b paying lower rent because " LOW_RE09 = "CC item 16b paying lower rent because " LOW_RE10 = "CC item 16b paying lower rent because " LOW_RE11 = "CC item 16b paying lower rent because " LOW_RE12 = "CC item 16b paying lower rent because " LOW_RE13 = "CC item 16b paying lower rent because " LOW_RE14 = "CC item 16b paying lower rent because " LOW_RE15 = "CC item 16b paying lower rent because " LOW_RE16 = "CC item 16b paying lower rent because " LOW_RE17 = "CC item 16b paying lower rent because " LOW_RE18 = "CC item 16b paying lower rent because " LOW_RE19 = "CC item 16b paying lower rent because " LOW_RE20 = "CC item 16b paying lower rent because " LOW_RE21 = "CC item 16b paying lower rent because " LOW_RE22 = "CC item 16b paying lower rent because " LOW_RE23 = "CC item 16b paying lower rent because " LOW_RE24 = "CC item 16b paying lower rent because " LOW_RE25 = "CC item 16b paying lower rent because " LOW_RE26 = "CC item 16b paying lower rent because " LOW_RE27 = "CC item 16b paying lower rent because " LOW_RE28 = "CC item 16b paying lower rent because " LOW_RE29 = "CC item 16b paying lower rent because " LOW_RE30 = "CC item 16b paying lower rent because " LOW_RE31 = "CC item 16b paying lower rent because " LOW_RE32 = "CC item 16b paying lower rent because " ADDID51 = "Household address i.d. person lived at" ADDID52 = "Household address i.d. person lived at" ADDID53 = "Household address i.d. person lived at" ADDID54 = "Household address i.d. person lived at" ADDID55 = "Household address i.d. person lived at" ADDID56 = "Household address i.d. person lived at" ADDID57 = "Household address i.d. person lived at" ADDID58 = "Household address i.d. person lived at" ENRGY_Y1 = "Household received govt.energy" ENRGY_Y2 = "Household received govt.energy" ENRGY_Y3 = "Household received govt.energy" ENRGY_Y4 = "Household received govt.energy" ENRGY_Y5 = "Household received govt.energy" ENRGY_Y6 = "Household received govt.energy" ENRGY_Y7 = "Household received govt.energy" ENRGY_Y8 = "Household received govt.energy" H_ENRGY1 = "What type of household energy" H_ENRGY2 = "What type of household energy" H_ENRGY3 = "What type of household energy" H_ENRGY4 = "What type of household energy" H_ENRGY5 = "What type of household energy" H_ENRGY6 = "What type of household energy" H_ENRGY7 = "What type of household energy" H_ENRGY8 = "What type of household energy" H_48241 = "Total amount of household energy" H_48242 = "Total amount of household energy" H_48243 = "Total amount of household energy" H_48244 = "Total amount of household energy" H_48245 = "Total amount of household energy" H_48246 = "Total amount of household energy" H_48247 = "Total amount of household energy" H_48248 = "Total amount of household energy" H_LUNCH1 = "Are the lunches free or reduced-price" H_LUNCH2 = "Are the lunches free or reduced-price" H_LUNCH3 = "Are the lunches free or reduced-price" H_LUNCH4 = "Are the lunches free or reduced-price" H_LUNCH5 = "Are the lunches free or reduced-price" H_LUNCH6 = "Are the lunches free or reduced-price" H_LUNCH7 = "Are the lunches free or reduced-price" H_LUNCH8 = "Are the lunches free or reduced-price" H_48341 = "Number of children eating lunch free" H_48342 = "Number of children eating lunch free" H_48343 = "Number of children eating lunch free" H_48344 = "Number of children eating lunch free" H_48345 = "Number of children eating lunch free" H_48346 = "Number of children eating lunch free" H_48347 = "Number of children eating lunch free" H_48348 = "Number of children eating lunch free" H_BREAK1 = "Breakfasts free or reduced-price" H_BREAK2 = "Breakfasts free or reduced-price" H_BREAK3 = "Breakfasts free or reduced-price" H_BREAK4 = "Breakfasts free or reduced-price" H_BREAK5 = "Breakfasts free or reduced-price" H_BREAK6 = "Breakfasts free or reduced-price" H_BREAK7 = "Breakfasts free or reduced-price" H_BREAK8 = "Breakfasts free or reduced-price" H_48301 = "Number of children with free or reduce" H_48302 = "Number of children with free or reduce" H_48303 = "Number of children with free or reduce" H_48304 = "Number of children with free or reduce" H_48305 = "Number of children with free or reduce" H_48306 = "Number of children with free or reduce" H_48307 = "Number of children with free or reduce" H_48308 = "Number of children with free or reduce" PUBRNTYN = "Public housing unit for which rent is" PUBRNAMT = "Monthly rent - public housing unit" UTLPAYYN = "Utility payment on public housing unit" FULLRENT = "Monthly rent on public housing unit" STATE_1 = "Fips state code from the GRIN file" STATE_2 = "Fips state code from the GRIN file" STATE_3 = "Fips state code from the GRIN file" STATE_4 = "Fips state code from the GRIN file" STATE_5 = "Fips state code from the GRIN file" STATE_6 = "Fips state code from the GRIN file" STATE_7 = "Fips state code from the GRIN file" STATE_8 = "Fips state code from the GRIN file" SC1332 = "How long did ... serve on active duty " SC1334 = "Does ... have a service connected" SC1336 = "VA percent disability" SC1346 = "Reason getting social security (ret.," SC1348 = "Another reason ...receives social" SC1360 = "Ever retired from a job or business" SC1418 = "Ever widowed or divorced" SC1456 = "Husband died in service from a" MEDCODE = "Recode of fields (SC1464 and SC1466) a" SC1468 = "Type Medicare coverage" SC1472 = "Medicare helps pay for doctor bills" DISAB = "Physical, mental,or other health" ATT_SCH1 = "Attended school in past 4 mos" ATT_SCH2 = "Attended school in past 4 mos" ATT_SCH3 = "Attended school in past 4 mos" ATT_SCH4 = "Attended school in past 4 mos" ATT_SCH5 = "Attended school in past 4 mos" ATT_SCH6 = "Attended school in past 4 mos" ATT_SCH7 = "Attended school in past 4 mos" ATT_SCH8 = "Attended school in past 4 mos" ENRL_M01 = "During which months enrolled (monthly)" ENRL_M02 = "During which months enrolled (monthly)" ENRL_M03 = "During which months enrolled (monthly)" ENRL_M04 = "During which months enrolled (monthly)" ENRL_M05 = "During which months enrolled (monthly)" ENRL_M06 = "During which months enrolled (monthly)" ENRL_M07 = "During which months enrolled (monthly)" ENRL_M08 = "During which months enrolled (monthly)" ENRL_M09 = "During which months enrolled (monthly)" ENRL_M10 = "During which months enrolled (monthly)" ENRL_M11 = "During which months enrolled (monthly)" ENRL_M12 = "During which months enrolled (monthly)" ENRL_M13 = "During which months enrolled (monthly)" ENRL_M14 = "During which months enrolled (monthly)" ENRL_M15 = "During which months enrolled (monthly)" ENRL_M16 = "During which months enrolled (monthly)" ENRL_M17 = "During which months enrolled (monthly)" ENRL_M18 = "During which months enrolled (monthly)" ENRL_M19 = "During which months enrolled (monthly)" ENRL_M20 = "During which months enrolled (monthly)" ENRL_M21 = "During which months enrolled (monthly)" ENRL_M22 = "During which months enrolled (monthly)" ENRL_M23 = "During which months enrolled (monthly)" ENRL_M24 = "During which months enrolled (monthly)" ENRL_M25 = "During which months enrolled (monthly)" ENRL_M26 = "During which months enrolled (monthly)" ENRL_M27 = "During which months enrolled (monthly)" ENRL_M28 = "During which months enrolled (monthly)" ENRL_M29 = "During which months enrolled (monthly)" ENRL_M30 = "During which months enrolled (monthly)" ENRL_M31 = "During which months enrolled (monthly)" ENRL_M32 = "During which months enrolled (monthly)" ED_LEVE1 = "Educational level or grade enrolled" ED_LEVE2 = "Educational level or grade enrolled" ED_LEVE3 = "Educational level or grade enrolled" ED_LEVE4 = "Educational level or grade enrolled" ED_LEVE5 = "Educational level or grade enrolled" ED_LEVE6 = "Educational level or grade enrolled" ED_LEVE7 = "Educational level or grade enrolled" ED_LEVE8 = "Educational level or grade enrolled" ED_FINA1 = "Educational expenses paid for by GI bi" ED_FINA2 = "Educational expenses paid for by GI bi" ED_FINA3 = "Educational expenses paid for by GI bi" ED_FINA4 = "Educational expenses paid for by GI bi" ED_FINA5 = "Educational expenses paid for by GI bi" ED_FINA6 = "Educational expenses paid for by GI bi" ED_FINA7 = "Educational expenses paid for by GI bi" ED_FINA8 = "Educational expenses paid for by GI bi" SC16721 = "Educational assistance-GI bill" SC16722 = "Educational assistance-GI bill" SC16723 = "Educational assistance-GI bill" SC16724 = "Educational assistance-GI bill" SC16725 = "Educational assistance-GI bill" SC16726 = "Educational assistance-GI bill" SC16727 = "Educational assistance-GI bill" SC16728 = "Educational assistance-GI bill" SC16741 = "Educational assistance-other veteran's" SC16742 = "Educational assistance-other veteran's" SC16743 = "Educational assistance-other veteran's" SC16744 = "Educational assistance-other veteran's" SC16745 = "Educational assistance-other veteran's" SC16746 = "Educational assistance-other veteran's" SC16747 = "Educational assistance-other veteran's" SC16748 = "Educational assistance-other veteran's" SC16761 = "Educational assistance-college work" SC16762 = "Educational assistance-college work" SC16763 = "Educational assistance-college work" SC16764 = "Educational assistance-college work" SC16765 = "Educational assistance-college work" SC16766 = "Educational assistance-college work" SC16767 = "Educational assistance-college work" SC16768 = "Educational assistance-college work" SC16781 = "Educational assistance-Pell grant" SC16782 = "Educational assistance-Pell grant" SC16783 = "Educational assistance-Pell grant" SC16784 = "Educational assistance-Pell grant" SC16785 = "Educational assistance-Pell grant" SC16786 = "Educational assistance-Pell grant" SC16787 = "Educational assistance-Pell grant" SC16788 = "Educational assistance-Pell grant" SC16801 = "Educ. assist-suppl educ. opportunity" SC16802 = "Educ. assist-suppl educ. opportunity" SC16803 = "Educ. assist-suppl educ. opportunity" SC16804 = "Educ. assist-suppl educ. opportunity" SC16805 = "Educ. assist-suppl educ. opportunity" SC16806 = "Educ. assist-suppl educ. opportunity" SC16807 = "Educ. assist-suppl educ. opportunity" SC16808 = "Educ. assist-suppl educ. opportunity" SC16821 = "Educ. assistance-National Direct" SC16822 = "Educ. assistance-National Direct" SC16823 = "Educ. assistance-National Direct" SC16824 = "Educ. assistance-National Direct" SC16825 = "Educ. assistance-National Direct" SC16826 = "Educ. assistance-National Direct" SC16827 = "Educ. assistance-National Direct" SC16828 = "Educ. assistance-National Direct" SC16841 = "Educational assistance-guaranteed" SC16842 = "Educational assistance-guaranteed" SC16843 = "Educational assistance-guaranteed" SC16844 = "Educational assistance-guaranteed" SC16845 = "Educational assistance-guaranteed" SC16846 = "Educational assistance-guaranteed" SC16847 = "Educational assistance-guaranteed" SC16848 = "Educational assistance-guaranteed" SC16861 = "Educational assistance-JTPA training" SC16862 = "Educational assistance-JTPA training" SC16863 = "Educational assistance-JTPA training" SC16864 = "Educational assistance-JTPA training" SC16865 = "Educational assistance-JTPA training" SC16866 = "Educational assistance-JTPA training" SC16867 = "Educational assistance-JTPA training" SC16868 = "Educational assistance-JTPA training" SC16881 = "Educational assistance-employer" SC16882 = "Educational assistance-employer" SC16883 = "Educational assistance-employer" SC16884 = "Educational assistance-employer" SC16885 = "Educational assistance-employer" SC16886 = "Educational assistance-employer" SC16887 = "Educational assistance-employer" SC16888 = "Educational assistance-employer" SC16901 = "Educational assistance, fellowship or" SC16902 = "Educational assistance, fellowship or" SC16903 = "Educational assistance, fellowship or" SC16904 = "Educational assistance, fellowship or" SC16905 = "Educational assistance, fellowship or" SC16906 = "Educational assistance, fellowship or" SC16907 = "Educational assistance, fellowship or" SC16908 = "Educational assistance, fellowship or" SC16921 = "Educational assistance-other financial" SC16922 = "Educational assistance-other financial" SC16923 = "Educational assistance-other financial" SC16924 = "Educational assistance-other financial" SC16925 = "Educational assistance-other financial" SC16926 = "Educational assistance-other financial" SC16927 = "Educational assistance-other financial" SC16928 = "Educational assistance-other financial" SC16961 = "Spouse in the armed forces" SC16962 = "Spouse in the armed forces" SC16963 = "Spouse in the armed forces" SC16964 = "Spouse in the armed forces" SC16965 = "Spouse in the armed forces" SC16966 = "Spouse in the armed forces" SC16967 = "Spouse in the armed forces" SC16968 = "Spouse in the armed forces" PP_INC01 = "Total persons income (monthly)" PP_INC02 = "Total persons income (monthly)" PP_INC03 = "Total persons income (monthly)" PP_INC04 = "Total persons income (monthly)" PP_INC05 = "Total persons income (monthly)" PP_INC06 = "Total persons income (monthly)" PP_INC07 = "Total persons income (monthly)" PP_INC08 = "Total persons income (monthly)" PP_INC09 = "Total persons income (monthly)" PP_INC10 = "Total persons income (monthly)" PP_INC11 = "Total persons income (monthly)" PP_INC12 = "Total persons income (monthly)" PP_INC13 = "Total persons income (monthly)" PP_INC14 = "Total persons income (monthly)" PP_INC15 = "Total persons income (monthly)" PP_INC16 = "Total persons income (monthly)" PP_INC17 = "Total persons income (monthly)" PP_INC18 = "Total persons income (monthly)" PP_INC19 = "Total persons income (monthly)" PP_INC20 = "Total persons income (monthly)" PP_INC21 = "Total persons income (monthly)" PP_INC22 = "Total persons income (monthly)" PP_INC23 = "Total persons income (monthly)" PP_INC24 = "Total persons income (monthly)" PP_INC25 = "Total persons income (monthly)" PP_INC26 = "Total persons income (monthly)" PP_INC27 = "Total persons income (monthly)" PP_INC28 = "Total persons income (monthly)" PP_INC29 = "Total persons income (monthly)" PP_INC30 = "Total persons income (monthly)" PP_INC31 = "Total persons income (monthly)" PP_INC32 = "Total persons income (monthly)" PP_EAR01 = "Total persons earnings (monthly)" PP_EAR02 = "Total persons earnings (monthly)" PP_EAR03 = "Total persons earnings (monthly)" PP_EAR04 = "Total persons earnings (monthly)" PP_EAR05 = "Total persons earnings (monthly)" PP_EAR06 = "Total persons earnings (monthly)" PP_EAR07 = "Total persons earnings (monthly)" PP_EAR08 = "Total persons earnings (monthly)" PP_EAR09 = "Total persons earnings (monthly)" PP_EAR10 = "Total persons earnings (monthly)" PP_EAR11 = "Total persons earnings (monthly)" PP_EAR12 = "Total persons earnings (monthly)" PP_EAR13 = "Total persons earnings (monthly)" PP_EAR14 = "Total persons earnings (monthly)" PP_EAR15 = "Total persons earnings (monthly)" PP_EAR16 = "Total persons earnings (monthly)" PP_EAR17 = "Total persons earnings (monthly)" PP_EAR18 = "Total persons earnings (monthly)" PP_EAR19 = "Total persons earnings (monthly)" PP_EAR20 = "Total persons earnings (monthly)" PP_EAR21 = "Total persons earnings (monthly)" PP_EAR22 = "Total persons earnings (monthly)" PP_EAR23 = "Total persons earnings (monthly)" PP_EAR24 = "Total persons earnings (monthly)" PP_EAR25 = "Total persons earnings (monthly)" PP_EAR26 = "Total persons earnings (monthly)" PP_EAR27 = "Total persons earnings (monthly)" PP_EAR28 = "Total persons earnings (monthly)" PP_EAR29 = "Total persons earnings (monthly)" PP_EAR30 = "Total persons earnings (monthly)" PP_EAR31 = "Total persons earnings (monthly)" PP_EAR32 = "Total persons earnings (monthly)" FF_INC01 = "Total family income (monthly)" FF_INC02 = "Total family income (monthly)" FF_INC03 = "Total family income (monthly)" FF_INC04 = "Total family income (monthly)" FF_INC05 = "Total family income (monthly)" FF_INC06 = "Total family income (monthly)" FF_INC07 = "Total family income (monthly)" FF_INC08 = "Total family income (monthly)" FF_INC09 = "Total family income (monthly)" FF_INC10 = "Total family income (monthly)" FF_INC11 = "Total family income (monthly)" FF_INC12 = "Total family income (monthly)" FF_INC13 = "Total family income (monthly)" FF_INC14 = "Total family income (monthly)" FF_INC15 = "Total family income (monthly)" FF_INC16 = "Total family income (monthly)" FF_INC17 = "Total family income (monthly)" FF_INC18 = "Total family income (monthly)" FF_INC19 = "Total family income (monthly)" FF_INC20 = "Total family income (monthly)" FF_INC21 = "Total family income (monthly)" FF_INC22 = "Total family income (monthly)" FF_INC23 = "Total family income (monthly)" FF_INC24 = "Total family income (monthly)" FF_INC25 = "Total family income (monthly)" FF_INC26 = "Total family income (monthly)" FF_INC27 = "Total family income (monthly)" FF_INC28 = "Total family income (monthly)" FF_INC29 = "Total family income (monthly)" FF_INC30 = "Total family income (monthly)" FF_INC31 = "Total family income (monthly)" FF_INC32 = "Total family income (monthly)" FF_EAR01 = "Total family earned income" FF_EAR02 = "Total family earned income" FF_EAR03 = "Total family earned income" FF_EAR04 = "Total family earned income" FF_EAR05 = "Total family earned income" FF_EAR06 = "Total family earned income" FF_EAR07 = "Total family earned income" FF_EAR08 = "Total family earned income" FF_EAR09 = "Total family earned income" FF_EAR10 = "Total family earned income" FF_EAR11 = "Total family earned income" FF_EAR12 = "Total family earned income" FF_EAR13 = "Total family earned income" FF_EAR14 = "Total family earned income" FF_EAR15 = "Total family earned income" FF_EAR16 = "Total family earned income" FF_EAR17 = "Total family earned income" FF_EAR18 = "Total family earned income" FF_EAR19 = "Total family earned income" FF_EAR20 = "Total family earned income" FF_EAR21 = "Total family earned income" FF_EAR22 = "Total family earned income" FF_EAR23 = "Total family earned income" FF_EAR24 = "Total family earned income" FF_EAR25 = "Total family earned income" FF_EAR26 = "Total family earned income" FF_EAR27 = "Total family earned income" FF_EAR28 = "Total family earned income" FF_EAR29 = "Total family earned income" FF_EAR30 = "Total family earned income" FF_EAR31 = "Total family earned income" FF_EAR32 = "Total family earned income" FF_PRO01 = "Total family property income" FF_PRO02 = "Total family property income" FF_PRO03 = "Total family property income" FF_PRO04 = "Total family property income" FF_PRO05 = "Total family property income" FF_PRO06 = "Total family property income" FF_PRO07 = "Total family property income" FF_PRO08 = "Total family property income" FF_PRO09 = "Total family property income" FF_PRO10 = "Total family property income" FF_PRO11 = "Total family property income" FF_PRO12 = "Total family property income" FF_PRO13 = "Total family property income" FF_PRO14 = "Total family property income" FF_PRO15 = "Total family property income" FF_PRO16 = "Total family property income" FF_PRO17 = "Total family property income" FF_PRO18 = "Total family property income" FF_PRO19 = "Total family property income" FF_PRO20 = "Total family property income" FF_PRO21 = "Total family property income" FF_PRO22 = "Total family property income" FF_PRO23 = "Total family property income" FF_PRO24 = "Total family property income" FF_PRO25 = "Total family property income" FF_PRO26 = "Total family property income" FF_PRO27 = "Total family property income" FF_PRO28 = "Total family property income" FF_PRO29 = "Total family property income" FF_PRO30 = "Total family property income" FF_PRO31 = "Total family property income" FF_PRO32 = "Total family property income" FF_TRA01 = "Total family means-tested transfers" FF_TRA02 = "Total family means-tested transfers" FF_TRA03 = "Total family means-tested transfers" FF_TRA04 = "Total family means-tested transfers" FF_TRA05 = "Total family means-tested transfers" FF_TRA06 = "Total family means-tested transfers" FF_TRA07 = "Total family means-tested transfers" FF_TRA08 = "Total family means-tested transfers" FF_TRA09 = "Total family means-tested transfers" FF_TRA10 = "Total family means-tested transfers" FF_TRA11 = "Total family means-tested transfers" FF_TRA12 = "Total family means-tested transfers" FF_TRA13 = "Total family means-tested transfers" FF_TRA14 = "Total family means-tested transfers" FF_TRA15 = "Total family means-tested transfers" FF_TRA16 = "Total family means-tested transfers" FF_TRA17 = "Total family means-tested transfers" FF_TRA18 = "Total family means-tested transfers" FF_TRA19 = "Total family means-tested transfers" FF_TRA20 = "Total family means-tested transfers" FF_TRA21 = "Total family means-tested transfers" FF_TRA22 = "Total family means-tested transfers" FF_TRA23 = "Total family means-tested transfers" FF_TRA24 = "Total family means-tested transfers" FF_TRA25 = "Total family means-tested transfers" FF_TRA26 = "Total family means-tested transfers" FF_TRA27 = "Total family means-tested transfers" FF_TRA28 = "Total family means-tested transfers" FF_TRA29 = "Total family means-tested transfers" FF_TRA30 = "Total family means-tested transfers" FF_TRA31 = "Total family means-tested transfers" FF_TRA32 = "Total family means-tested transfers" FF_OTH01 = "Total family 'other'income" FF_OTH02 = "Total family 'other'income" FF_OTH03 = "Total family 'other'income" FF_OTH04 = "Total family 'other'income" FF_OTH05 = "Total family 'other'income" FF_OTH06 = "Total family 'other'income" FF_OTH07 = "Total family 'other'income" FF_OTH08 = "Total family 'other'income" FF_OTH09 = "Total family 'other'income" FF_OTH10 = "Total family 'other'income" FF_OTH11 = "Total family 'other'income" FF_OTH12 = "Total family 'other'income" FF_OTH13 = "Total family 'other'income" FF_OTH14 = "Total family 'other'income" FF_OTH15 = "Total family 'other'income" FF_OTH16 = "Total family 'other'income" FF_OTH17 = "Total family 'other'income" FF_OTH18 = "Total family 'other'income" FF_OTH19 = "Total family 'other'income" FF_OTH20 = "Total family 'other'income" FF_OTH21 = "Total family 'other'income" FF_OTH22 = "Total family 'other'income" FF_OTH23 = "Total family 'other'income" FF_OTH24 = "Total family 'other'income" FF_OTH25 = "Total family 'other'income" FF_OTH26 = "Total family 'other'income" FF_OTH27 = "Total family 'other'income" FF_OTH28 = "Total family 'other'income" FF_OTH29 = "Total family 'other'income" FF_OTH30 = "Total family 'other'income" FF_OTH31 = "Total family 'other'income" FF_OTH32 = "Total family 'other'income" HH_INC01 = "Total household income (monthly)" HH_INC02 = "Total household income (monthly)" HH_INC03 = "Total household income (monthly)" HH_INC04 = "Total household income (monthly)" HH_INC05 = "Total household income (monthly)" HH_INC06 = "Total household income (monthly)" HH_INC07 = "Total household income (monthly)" HH_INC08 = "Total household income (monthly)" HH_INC09 = "Total household income (monthly)" HH_INC10 = "Total household income (monthly)" HH_INC11 = "Total household income (monthly)" HH_INC12 = "Total household income (monthly)" HH_INC13 = "Total household income (monthly)" HH_INC14 = "Total household income (monthly)" HH_INC15 = "Total household income (monthly)" HH_INC16 = "Total household income (monthly)" HH_INC17 = "Total household income (monthly)" HH_INC18 = "Total household income (monthly)" HH_INC19 = "Total household income (monthly)" HH_INC20 = "Total household income (monthly)" HH_INC21 = "Total household income (monthly)" HH_INC22 = "Total household income (monthly)" HH_INC23 = "Total household income (monthly)" HH_INC24 = "Total household income (monthly)" HH_INC25 = "Total household income (monthly)" HH_INC26 = "Total household income (monthly)" HH_INC27 = "Total household income (monthly)" HH_INC28 = "Total household income (monthly)" HH_INC29 = "Total household income (monthly)" HH_INC30 = "Total household income (monthly)" HH_INC31 = "Total household income (monthly)" HH_INC32 = "Total household income (monthly)" HH_EAR01 = "Total household earned income" HH_EAR02 = "Total household earned income" HH_EAR03 = "Total household earned income" HH_EAR04 = "Total household earned income" HH_EAR05 = "Total household earned income" HH_EAR06 = "Total household earned income" HH_EAR07 = "Total household earned income" HH_EAR08 = "Total household earned income" HH_EAR09 = "Total household earned income" HH_EAR10 = "Total household earned income" HH_EAR11 = "Total household earned income" HH_EAR12 = "Total household earned income" HH_EAR13 = "Total household earned income" HH_EAR14 = "Total household earned income" HH_EAR15 = "Total household earned income" HH_EAR16 = "Total household earned income" HH_EAR17 = "Total household earned income" HH_EAR18 = "Total household earned income" HH_EAR19 = "Total household earned income" HH_EAR20 = "Total household earned income" HH_EAR21 = "Total household earned income" HH_EAR22 = "Total household earned income" HH_EAR23 = "Total household earned income" HH_EAR24 = "Total household earned income" HH_EAR25 = "Total household earned income" HH_EAR26 = "Total household earned income" HH_EAR27 = "Total household earned income" HH_EAR28 = "Total household earned income" HH_EAR29 = "Total household earned income" HH_EAR30 = "Total household earned income" HH_EAR31 = "Total household earned income" HH_EAR32 = "Total household earned income" HH_PRO01 = "Total household property income" HH_PRO02 = "Total household property income" HH_PRO03 = "Total household property income" HH_PRO04 = "Total household property income" HH_PRO05 = "Total household property income" HH_PRO06 = "Total household property income" HH_PRO07 = "Total household property income" HH_PRO08 = "Total household property income" HH_PRO09 = "Total household property income" HH_PRO10 = "Total household property income" HH_PRO11 = "Total household property income" HH_PRO12 = "Total household property income" HH_PRO13 = "Total household property income" HH_PRO14 = "Total household property income" HH_PRO15 = "Total household property income" HH_PRO16 = "Total household property income" HH_PRO17 = "Total household property income" HH_PRO18 = "Total household property income" HH_PRO19 = "Total household property income" HH_PRO20 = "Total household property income" HH_PRO21 = "Total household property income" HH_PRO22 = "Total household property income" HH_PRO23 = "Total household property income" HH_PRO24 = "Total household property income" HH_PRO25 = "Total household property income" HH_PRO26 = "Total household property income" HH_PRO27 = "Total household property income" HH_PRO28 = "Total household property income" HH_PRO29 = "Total household property income" HH_PRO30 = "Total household property income" HH_PRO31 = "Total household property income" HH_PRO32 = "Total household property income" HH_TRA01 = "Total household means-tested cash" HH_TRA02 = "Total household means-tested cash" HH_TRA03 = "Total household means-tested cash" HH_TRA04 = "Total household means-tested cash" HH_TRA05 = "Total household means-tested cash" HH_TRA06 = "Total household means-tested cash" HH_TRA07 = "Total household means-tested cash" HH_TRA08 = "Total household means-tested cash" HH_TRA09 = "Total household means-tested cash" HH_TRA10 = "Total household means-tested cash" HH_TRA11 = "Total household means-tested cash" HH_TRA12 = "Total household means-tested cash" HH_TRA13 = "Total household means-tested cash" HH_TRA14 = "Total household means-tested cash" HH_TRA15 = "Total household means-tested cash" HH_TRA16 = "Total household means-tested cash" HH_TRA17 = "Total household means-tested cash" HH_TRA18 = "Total household means-tested cash" HH_TRA19 = "Total household means-tested cash" HH_TRA20 = "Total household means-tested cash" HH_TRA21 = "Total household means-tested cash" HH_TRA22 = "Total household means-tested cash" HH_TRA23 = "Total household means-tested cash" HH_TRA24 = "Total household means-tested cash" HH_TRA25 = "Total household means-tested cash" HH_TRA26 = "Total household means-tested cash" HH_TRA27 = "Total household means-tested cash" HH_TRA28 = "Total household means-tested cash" HH_TRA29 = "Total household means-tested cash" HH_TRA30 = "Total household means-tested cash" HH_TRA31 = "Total household means-tested cash" HH_TRA32 = "Total household means-tested cash" HH_OTH01 = "Total household 'other' income" HH_OTH02 = "Total household 'other' income" HH_OTH03 = "Total household 'other' income" HH_OTH04 = "Total household 'other' income" HH_OTH05 = "Total household 'other' income" HH_OTH06 = "Total household 'other' income" HH_OTH07 = "Total household 'other' income" HH_OTH08 = "Total household 'other' income" HH_OTH09 = "Total household 'other' income" HH_OTH10 = "Total household 'other' income" HH_OTH11 = "Total household 'other' income" HH_OTH12 = "Total household 'other' income" HH_OTH13 = "Total household 'other' income" HH_OTH14 = "Total household 'other' income" HH_OTH15 = "Total household 'other' income" HH_OTH16 = "Total household 'other' income" HH_OTH17 = "Total household 'other' income" HH_OTH18 = "Total household 'other' income" HH_OTH19 = "Total household 'other' income" HH_OTH20 = "Total household 'other' income" HH_OTH21 = "Total household 'other' income" HH_OTH22 = "Total household 'other' income" HH_OTH23 = "Total household 'other' income" HH_OTH24 = "Total household 'other' income" HH_OTH25 = "Total household 'other' income" HH_OTH26 = "Total household 'other' income" HH_OTH27 = "Total household 'other' income" HH_OTH28 = "Total household 'other' income" HH_OTH29 = "Total household 'other' income" HH_OTH30 = "Total household 'other' income" HH_OTH31 = "Total household 'other' income" HH_OTH32 = "Total household 'other' income" FF_POV01 = "Low income cutoff for person's family" FF_POV02 = "Low income cutoff for person's family" FF_POV03 = "Low income cutoff for person's family" FF_POV04 = "Low income cutoff for person's family" FF_POV05 = "Low income cutoff for person's family" FF_POV06 = "Low income cutoff for person's family" FF_POV07 = "Low income cutoff for person's family" FF_POV08 = "Low income cutoff for person's family" FF_POV09 = "Low income cutoff for person's family" FF_POV10 = "Low income cutoff for person's family" FF_POV11 = "Low income cutoff for person's family" FF_POV12 = "Low income cutoff for person's family" FF_POV13 = "Low income cutoff for person's family" FF_POV14 = "Low income cutoff for person's family" FF_POV15 = "Low income cutoff for person's family" FF_POV16 = "Low income cutoff for person's family" FF_POV17 = "Low income cutoff for person's family" FF_POV18 = "Low income cutoff for person's family" FF_POV19 = "Low income cutoff for person's family" FF_POV20 = "Low income cutoff for person's family" FF_POV21 = "Low income cutoff for person's family" FF_POV22 = "Low income cutoff for person's family" FF_POV23 = "Low income cutoff for person's family" FF_POV24 = "Low income cutoff for person's family" FF_POV25 = "Low income cutoff for person's family" FF_POV26 = "Low income cutoff for person's family" FF_POV27 = "Low income cutoff for person's family" FF_POV28 = "Low income cutoff for person's family" FF_POV29 = "Low income cutoff for person's family" FF_POV30 = "Low income cutoff for person's family" FF_POV31 = "Low income cutoff for person's family" FF_POV32 = "Low income cutoff for person's family" TELEPHON = "Sample indicator" ESR_01 = "Employment status recode (monthly)" ESR_02 = "Employment status recode (monthly)" ESR_03 = "Employment status recode (monthly)" ESR_04 = "Employment status recode (monthly)" ESR_05 = "Employment status recode (monthly)" ESR_06 = "Employment status recode (monthly)" ESR_07 = "Employment status recode (monthly)" ESR_08 = "Employment status recode (monthly)" ESR_09 = "Employment status recode (monthly)" ESR_10 = "Employment status recode (monthly)" ESR_11 = "Employment status recode (monthly)" ESR_12 = "Employment status recode (monthly)" ESR_13 = "Employment status recode (monthly)" ESR_14 = "Employment status recode (monthly)" ESR_15 = "Employment status recode (monthly)" ESR_16 = "Employment status recode (monthly)" ESR_17 = "Employment status recode (monthly)" ESR_18 = "Employment status recode (monthly)" ESR_19 = "Employment status recode (monthly)" ESR_20 = "Employment status recode (monthly)" ESR_21 = "Employment status recode (monthly)" ESR_22 = "Employment status recode (monthly)" ESR_23 = "Employment status recode (monthly)" ESR_24 = "Employment status recode (monthly)" ESR_25 = "Employment status recode (monthly)" ESR_26 = "Employment status recode (monthly)" ESR_27 = "Employment status recode (monthly)" ESR_28 = "Employment status recode (monthly)" ESR_29 = "Employment status recode (monthly)" ESR_30 = "Employment status recode (monthly)" ESR_31 = "Employment status recode (monthly)" ESR_32 = "Employment status recode (monthly)" WKSPER01 = "Number of weeks in the month" WKSPER02 = "Number of weeks in the month" WKSPER03 = "Number of weeks in the month" WKSPER04 = "Number of weeks in the month" WKSPER05 = "Number of weeks in the month" WKSPER06 = "Number of weeks in the month" WKSPER07 = "Number of weeks in the month" WKSPER08 = "Number of weeks in the month" WKSPER09 = "Number of weeks in the month" WKSPER10 = "Number of weeks in the month" WKSPER11 = "Number of weeks in the month" WKSPER12 = "Number of weeks in the month" WKSPER13 = "Number of weeks in the month" WKSPER14 = "Number of weeks in the month" WKSPER15 = "Number of weeks in the month" WKSPER16 = "Number of weeks in the month" WKSPER17 = "Number of weeks in the month" WKSPER18 = "Number of weeks in the month" WKSPER19 = "Number of weeks in the month" WKSPER20 = "Number of weeks in the month" WKSPER21 = "Number of weeks in the month" WKSPER22 = "Number of weeks in the month" WKSPER23 = "Number of weeks in the month" WKSPER24 = "Number of weeks in the month" WKSPER25 = "Number of weeks in the month" WKSPER26 = "Number of weeks in the month" WKSPER27 = "Number of weeks in the month" WKSPER28 = "Number of weeks in the month" WKSPER29 = "Number of weeks in the month" WKSPER30 = "Number of weeks in the month" WKSPER31 = "Number of weeks in the month" WKSPER32 = "Number of weeks in the month" WKSJB_01 = "Number of weeks with a job or business" WKSJB_02 = "Number of weeks with a job or business" WKSJB_03 = "Number of weeks with a job or business" WKSJB_04 = "Number of weeks with a job or business" WKSJB_05 = "Number of weeks with a job or business" WKSJB_06 = "Number of weeks with a job or business" WKSJB_07 = "Number of weeks with a job or business" WKSJB_08 = "Number of weeks with a job or business" WKSJB_09 = "Number of weeks with a job or business" WKSJB_10 = "Number of weeks with a job or business" WKSJB_11 = "Number of weeks with a job or business" WKSJB_12 = "Number of weeks with a job or business" WKSJB_13 = "Number of weeks with a job or business" WKSJB_14 = "Number of weeks with a job or business" WKSJB_15 = "Number of weeks with a job or business" WKSJB_16 = "Number of weeks with a job or business" WKSJB_17 = "Number of weeks with a job or business" WKSJB_18 = "Number of weeks with a job or business" WKSJB_19 = "Number of weeks with a job or business" WKSJB_20 = "Number of weeks with a job or business" WKSJB_21 = "Number of weeks with a job or business" WKSJB_22 = "Number of weeks with a job or business" WKSJB_23 = "Number of weeks with a job or business" WKSJB_24 = "Number of weeks with a job or business" WKSJB_25 = "Number of weeks with a job or business" WKSJB_26 = "Number of weeks with a job or business" WKSJB_27 = "Number of weeks with a job or business" WKSJB_28 = "Number of weeks with a job or business" WKSJB_29 = "Number of weeks with a job or business" WKSJB_30 = "Number of weeks with a job or business" WKSJB_31 = "Number of weeks with a job or business" WKSJB_32 = "Number of weeks with a job or business" MTHWOP01 = "Weeks without pay, at a job or busines" MTHWOP02 = "Weeks without pay, at a job or busines" MTHWOP03 = "Weeks without pay, at a job or busines" MTHWOP04 = "Weeks without pay, at a job or busines" MTHWOP05 = "Weeks without pay, at a job or busines" MTHWOP06 = "Weeks without pay, at a job or busines" MTHWOP07 = "Weeks without pay, at a job or busines" MTHWOP08 = "Weeks without pay, at a job or busines" MTHWOP09 = "Weeks without pay, at a job or busines" MTHWOP10 = "Weeks without pay, at a job or busines" MTHWOP11 = "Weeks without pay, at a job or busines" MTHWOP12 = "Weeks without pay, at a job or busines" MTHWOP13 = "Weeks without pay, at a job or busines" MTHWOP14 = "Weeks without pay, at a job or busines" MTHWOP15 = "Weeks without pay, at a job or busines" MTHWOP16 = "Weeks without pay, at a job or busines" MTHWOP17 = "Weeks without pay, at a job or busines" MTHWOP18 = "Weeks without pay, at a job or busines" MTHWOP19 = "Weeks without pay, at a job or busines" MTHWOP20 = "Weeks without pay, at a job or busines" MTHWOP21 = "Weeks without pay, at a job or busines" MTHWOP22 = "Weeks without pay, at a job or busines" MTHWOP23 = "Weeks without pay, at a job or busines" MTHWOP24 = "Weeks without pay, at a job or busines" MTHWOP25 = "Weeks without pay, at a job or busines" MTHWOP26 = "Weeks without pay, at a job or busines" MTHWOP27 = "Weeks without pay, at a job or busines" MTHWOP28 = "Weeks without pay, at a job or busines" MTHWOP29 = "Weeks without pay, at a job or busines" MTHWOP30 = "Weeks without pay, at a job or busines" MTHWOP31 = "Weeks without pay, at a job or busines" MTHWOP32 = "Weeks without pay, at a job or busines" WEEKSL01 = "Weeks looking for work or on layoff" WEEKSL02 = "Weeks looking for work or on layoff" WEEKSL03 = "Weeks looking for work or on layoff" WEEKSL04 = "Weeks looking for work or on layoff" WEEKSL05 = "Weeks looking for work or on layoff" WEEKSL06 = "Weeks looking for work or on layoff" WEEKSL07 = "Weeks looking for work or on layoff" WEEKSL08 = "Weeks looking for work or on layoff" WEEKSL09 = "Weeks looking for work or on layoff" WEEKSL10 = "Weeks looking for work or on layoff" WEEKSL11 = "Weeks looking for work or on layoff" WEEKSL12 = "Weeks looking for work or on layoff" WEEKSL13 = "Weeks looking for work or on layoff" WEEKSL14 = "Weeks looking for work or on layoff" WEEKSL15 = "Weeks looking for work or on layoff" WEEKSL16 = "Weeks looking for work or on layoff" WEEKSL17 = "Weeks looking for work or on layoff" WEEKSL18 = "Weeks looking for work or on layoff" WEEKSL19 = "Weeks looking for work or on layoff" WEEKSL20 = "Weeks looking for work or on layoff" WEEKSL21 = "Weeks looking for work or on layoff" WEEKSL22 = "Weeks looking for work or on layoff" WEEKSL23 = "Weeks looking for work or on layoff" WEEKSL24 = "Weeks looking for work or on layoff" WEEKSL25 = "Weeks looking for work or on layoff" WEEKSL26 = "Weeks looking for work or on layoff" WEEKSL27 = "Weeks looking for work or on layoff" WEEKSL28 = "Weeks looking for work or on layoff" WEEKSL29 = "Weeks looking for work or on layoff" WEEKSL30 = "Weeks looking for work or on layoff" WEEKSL31 = "Weeks looking for work or on layoff" WEEKSL32 = "Weeks looking for work or on layoff" SC12301 = "Usual hours worked per week" SC12302 = "Usual hours worked per week" SC12303 = "Usual hours worked per week" SC12304 = "Usual hours worked per week" SC12305 = "Usual hours worked per week" SC12306 = "Usual hours worked per week" SC12307 = "Usual hours worked per week" SC12308 = "Usual hours worked per week" WS1_EI01 = "Check item E3, employer ID control car" WS1_EI02 = "Check item E3, employer ID control car" WS1_EI03 = "Check item E3, employer ID control car" WS1_EI04 = "Check item E3, employer ID control car" WS1_EI05 = "Check item E3, employer ID control car" WS1_EI06 = "Check item E3, employer ID control car" WS1_EI07 = "Check item E3, employer ID control car" WS1_EI08 = "Check item E3, employer ID control car" WS1_EI09 = "Check item E3, employer ID control car" WS1_EI10 = "Check item E3, employer ID control car" WS1_EI11 = "Check item E3, employer ID control car" WS1_EI12 = "Check item E3, employer ID control car" WS1_EI13 = "Check item E3, employer ID control car" WS1_EI14 = "Check item E3, employer ID control car" WS1_EI15 = "Check item E3, employer ID control car" WS1_EI16 = "Check item E3, employer ID control car" WS1_EI17 = "Check item E3, employer ID control car" WS1_EI18 = "Check item E3, employer ID control car" WS1_EI19 = "Check item E3, employer ID control car" WS1_EI20 = "Check item E3, employer ID control car" WS1_EI21 = "Check item E3, employer ID control car" WS1_EI22 = "Check item E3, employer ID control car" WS1_EI23 = "Check item E3, employer ID control car" WS1_EI24 = "Check item E3, employer ID control car" WS1_EI25 = "Check item E3, employer ID control car" WS1_EI26 = "Check item E3, employer ID control car" WS1_EI27 = "Check item E3, employer ID control car" WS1_EI28 = "Check item E3, employer ID control car" WS1_EI29 = "Check item E3, employer ID control car" WS1_EI30 = "Check item E3, employer ID control car" WS1_EI31 = "Check item E3, employer ID control car" WS1_EI32 = "Check item E3, employer ID control car" WS2_EI01 = "Check item E3,employer ID, control car" WS2_EI02 = "Check item E3,employer ID, control car" WS2_EI03 = "Check item E3,employer ID, control car" WS2_EI04 = "Check item E3,employer ID, control car" WS2_EI05 = "Check item E3,employer ID, control car" WS2_EI06 = "Check item E3,employer ID, control car" WS2_EI07 = "Check item E3,employer ID, control car" WS2_EI08 = "Check item E3,employer ID, control car" WS2_EI09 = "Check item E3,employer ID, control car" WS2_EI10 = "Check item E3,employer ID, control car" WS2_EI11 = "Check item E3,employer ID, control car" WS2_EI12 = "Check item E3,employer ID, control car" WS2_EI13 = "Check item E3,employer ID, control car" WS2_EI14 = "Check item E3,employer ID, control car" WS2_EI15 = "Check item E3,employer ID, control car" WS2_EI16 = "Check item E3,employer ID, control car" WS2_EI17 = "Check item E3,employer ID, control car" WS2_EI18 = "Check item E3,employer ID, control car" WS2_EI19 = "Check item E3,employer ID, control car" WS2_EI20 = "Check item E3,employer ID, control car" WS2_EI21 = "Check item E3,employer ID, control car" WS2_EI22 = "Check item E3,employer ID, control car" WS2_EI23 = "Check item E3,employer ID, control car" WS2_EI24 = "Check item E3,employer ID, control car" WS2_EI25 = "Check item E3,employer ID, control car" WS2_EI26 = "Check item E3,employer ID, control car" WS2_EI27 = "Check item E3,employer ID, control car" WS2_EI28 = "Check item E3,employer ID, control car" WS2_EI29 = "Check item E3,employer ID, control car" WS2_EI30 = "Check item E3,employer ID, control car" WS2_EI31 = "Check item E3,employer ID, control car" WS2_EI32 = "Check item E3,employer ID, control car" WS1_CL01 = "Class of worker job 1(prbus, fed. civ." WS1_CL02 = "Class of worker job 1(prbus, fed. civ." WS1_CL03 = "Class of worker job 1(prbus, fed. civ." WS1_CL04 = "Class of worker job 1(prbus, fed. civ." WS1_CL05 = "Class of worker job 1(prbus, fed. civ." WS1_CL06 = "Class of worker job 1(prbus, fed. civ." WS1_CL07 = "Class of worker job 1(prbus, fed. civ." WS1_CL08 = "Class of worker job 1(prbus, fed. civ." WS1_CL09 = "Class of worker job 1(prbus, fed. civ." WS1_CL10 = "Class of worker job 1(prbus, fed. civ." WS1_CL11 = "Class of worker job 1(prbus, fed. civ." WS1_CL12 = "Class of worker job 1(prbus, fed. civ." WS1_CL13 = "Class of worker job 1(prbus, fed. civ." WS1_CL14 = "Class of worker job 1(prbus, fed. civ." WS1_CL15 = "Class of worker job 1(prbus, fed. civ." WS1_CL16 = "Class of worker job 1(prbus, fed. civ." WS1_CL17 = "Class of worker job 1(prbus, fed. civ." WS1_CL18 = "Class of worker job 1(prbus, fed. civ." WS1_CL19 = "Class of worker job 1(prbus, fed. civ." WS1_CL20 = "Class of worker job 1(prbus, fed. civ." WS1_CL21 = "Class of worker job 1(prbus, fed. civ." WS1_CL22 = "Class of worker job 1(prbus, fed. civ." WS1_CL23 = "Class of worker job 1(prbus, fed. civ." WS1_CL24 = "Class of worker job 1(prbus, fed. civ." WS1_CL25 = "Class of worker job 1(prbus, fed. civ." WS1_CL26 = "Class of worker job 1(prbus, fed. civ." WS1_CL27 = "Class of worker job 1(prbus, fed. civ." WS1_CL28 = "Class of worker job 1(prbus, fed. civ." WS1_CL29 = "Class of worker job 1(prbus, fed. civ." WS1_CL30 = "Class of worker job 1(prbus, fed. civ." WS1_CL31 = "Class of worker job 1(prbus, fed. civ." WS1_CL32 = "Class of worker job 1(prbus, fed. civ." WS2_CL01 = "Class of worker job 2 (prbus, fed civ," WS2_CL02 = "Class of worker job 2 (prbus, fed civ," WS2_CL03 = "Class of worker job 2 (prbus, fed civ," WS2_CL04 = "Class of worker job 2 (prbus, fed civ," WS2_CL05 = "Class of worker job 2 (prbus, fed civ," WS2_CL06 = "Class of worker job 2 (prbus, fed civ," WS2_CL07 = "Class of worker job 2 (prbus, fed civ," WS2_CL08 = "Class of worker job 2 (prbus, fed civ," WS2_CL09 = "Class of worker job 2 (prbus, fed civ," WS2_CL10 = "Class of worker job 2 (prbus, fed civ," WS2_CL11 = "Class of worker job 2 (prbus, fed civ," WS2_CL12 = "Class of worker job 2 (prbus, fed civ," WS2_CL13 = "Class of worker job 2 (prbus, fed civ," WS2_CL14 = "Class of worker job 2 (prbus, fed civ," WS2_CL15 = "Class of worker job 2 (prbus, fed civ," WS2_CL16 = "Class of worker job 2 (prbus, fed civ," WS2_CL17 = "Class of worker job 2 (prbus, fed civ," WS2_CL18 = "Class of worker job 2 (prbus, fed civ," WS2_CL19 = "Class of worker job 2 (prbus, fed civ," WS2_CL20 = "Class of worker job 2 (prbus, fed civ," WS2_CL21 = "Class of worker job 2 (prbus, fed civ," WS2_CL22 = "Class of worker job 2 (prbus, fed civ," WS2_CL23 = "Class of worker job 2 (prbus, fed civ," WS2_CL24 = "Class of worker job 2 (prbus, fed civ," WS2_CL25 = "Class of worker job 2 (prbus, fed civ," WS2_CL26 = "Class of worker job 2 (prbus, fed civ," WS2_CL27 = "Class of worker job 2 (prbus, fed civ," WS2_CL28 = "Class of worker job 2 (prbus, fed civ," WS2_CL29 = "Class of worker job 2 (prbus, fed civ," WS2_CL30 = "Class of worker job 2 (prbus, fed civ," WS2_CL31 = "Class of worker job 2 (prbus, fed civ," WS2_CL32 = "Class of worker job 2 (prbus, fed civ," WS1_OC01 = "Edited and imputed 3 digit occupation" WS1_OC02 = "Edited and imputed 3 digit occupation" WS1_OC03 = "Edited and imputed 3 digit occupation" WS1_OC04 = "Edited and imputed 3 digit occupation" WS1_OC05 = "Edited and imputed 3 digit occupation" WS1_OC06 = "Edited and imputed 3 digit occupation" WS1_OC07 = "Edited and imputed 3 digit occupation" WS1_OC08 = "Edited and imputed 3 digit occupation" WS1_OC09 = "Edited and imputed 3 digit occupation" WS1_OC10 = "Edited and imputed 3 digit occupation" WS1_OC11 = "Edited and imputed 3 digit occupation" WS1_OC12 = "Edited and imputed 3 digit occupation" WS1_OC13 = "Edited and imputed 3 digit occupation" WS1_OC14 = "Edited and imputed 3 digit occupation" WS1_OC15 = "Edited and imputed 3 digit occupation" WS1_OC16 = "Edited and imputed 3 digit occupation" WS1_OC17 = "Edited and imputed 3 digit occupation" WS1_OC18 = "Edited and imputed 3 digit occupation" WS1_OC19 = "Edited and imputed 3 digit occupation" WS1_OC20 = "Edited and imputed 3 digit occupation" WS1_OC21 = "Edited and imputed 3 digit occupation" WS1_OC22 = "Edited and imputed 3 digit occupation" WS1_OC23 = "Edited and imputed 3 digit occupation" WS1_OC24 = "Edited and imputed 3 digit occupation" WS1_OC25 = "Edited and imputed 3 digit occupation" WS1_OC26 = "Edited and imputed 3 digit occupation" WS1_OC27 = "Edited and imputed 3 digit occupation" WS1_OC28 = "Edited and imputed 3 digit occupation" WS1_OC29 = "Edited and imputed 3 digit occupation" WS1_OC30 = "Edited and imputed 3 digit occupation" WS1_OC31 = "Edited and imputed 3 digit occupation" WS1_OC32 = "Edited and imputed 3 digit occupation" WS2_OC01 = "Edited and imputed 3 digit occupation" WS2_OC02 = "Edited and imputed 3 digit occupation" WS2_OC03 = "Edited and imputed 3 digit occupation" WS2_OC04 = "Edited and imputed 3 digit occupation" WS2_OC05 = "Edited and imputed 3 digit occupation" WS2_OC06 = "Edited and imputed 3 digit occupation" WS2_OC07 = "Edited and imputed 3 digit occupation" WS2_OC08 = "Edited and imputed 3 digit occupation" WS2_OC09 = "Edited and imputed 3 digit occupation" WS2_OC10 = "Edited and imputed 3 digit occupation" WS2_OC11 = "Edited and imputed 3 digit occupation" WS2_OC12 = "Edited and imputed 3 digit occupation" WS2_OC13 = "Edited and imputed 3 digit occupation" WS2_OC14 = "Edited and imputed 3 digit occupation" WS2_OC15 = "Edited and imputed 3 digit occupation" WS2_OC16 = "Edited and imputed 3 digit occupation" WS2_OC17 = "Edited and imputed 3 digit occupation" WS2_OC18 = "Edited and imputed 3 digit occupation" WS2_OC19 = "Edited and imputed 3 digit occupation" WS2_OC20 = "Edited and imputed 3 digit occupation" WS2_OC21 = "Edited and imputed 3 digit occupation" WS2_OC22 = "Edited and imputed 3 digit occupation" WS2_OC23 = "Edited and imputed 3 digit occupation" WS2_OC24 = "Edited and imputed 3 digit occupation" WS2_OC25 = "Edited and imputed 3 digit occupation" WS2_OC26 = "Edited and imputed 3 digit occupation" WS2_OC27 = "Edited and imputed 3 digit occupation" WS2_OC28 = "Edited and imputed 3 digit occupation" WS2_OC29 = "Edited and imputed 3 digit occupation" WS2_OC30 = "Edited and imputed 3 digit occupation" WS2_OC31 = "Edited and imputed 3 digit occupation" WS2_OC32 = "Edited and imputed 3 digit occupation" WS1_IN01 = "Edited and imputed 3 digit industry co" WS1_IN02 = "Edited and imputed 3 digit industry co" WS1_IN03 = "Edited and imputed 3 digit industry co" WS1_IN04 = "Edited and imputed 3 digit industry co" WS1_IN05 = "Edited and imputed 3 digit industry co" WS1_IN06 = "Edited and imputed 3 digit industry co" WS1_IN07 = "Edited and imputed 3 digit industry co" WS1_IN08 = "Edited and imputed 3 digit industry co" WS1_IN09 = "Edited and imputed 3 digit industry co" WS1_IN10 = "Edited and imputed 3 digit industry co" WS1_IN11 = "Edited and imputed 3 digit industry co" WS1_IN12 = "Edited and imputed 3 digit industry co" WS1_IN13 = "Edited and imputed 3 digit industry co" WS1_IN14 = "Edited and imputed 3 digit industry co" WS1_IN15 = "Edited and imputed 3 digit industry co" WS1_IN16 = "Edited and imputed 3 digit industry co" WS1_IN17 = "Edited and imputed 3 digit industry co" WS1_IN18 = "Edited and imputed 3 digit industry co" WS1_IN19 = "Edited and imputed 3 digit industry co" WS1_IN20 = "Edited and imputed 3 digit industry co" WS1_IN21 = "Edited and imputed 3 digit industry co" WS1_IN22 = "Edited and imputed 3 digit industry co" WS1_IN23 = "Edited and imputed 3 digit industry co" WS1_IN24 = "Edited and imputed 3 digit industry co" WS1_IN25 = "Edited and imputed 3 digit industry co" WS1_IN26 = "Edited and imputed 3 digit industry co" WS1_IN27 = "Edited and imputed 3 digit industry co" WS1_IN28 = "Edited and imputed 3 digit industry co" WS1_IN29 = "Edited and imputed 3 digit industry co" WS1_IN30 = "Edited and imputed 3 digit industry co" WS1_IN31 = "Edited and imputed 3 digit industry co" WS1_IN32 = "Edited and imputed 3 digit industry co" WS2_IN01 = "Edited and imputed 3 digit industry co" WS2_IN02 = "Edited and imputed 3 digit industry co" WS2_IN03 = "Edited and imputed 3 digit industry co" WS2_IN04 = "Edited and imputed 3 digit industry co" WS2_IN05 = "Edited and imputed 3 digit industry co" WS2_IN06 = "Edited and imputed 3 digit industry co" WS2_IN07 = "Edited and imputed 3 digit industry co" WS2_IN08 = "Edited and imputed 3 digit industry co" WS2_IN09 = "Edited and imputed 3 digit industry co" WS2_IN10 = "Edited and imputed 3 digit industry co" WS2_IN11 = "Edited and imputed 3 digit industry co" WS2_IN12 = "Edited and imputed 3 digit industry co" WS2_IN13 = "Edited and imputed 3 digit industry co" WS2_IN14 = "Edited and imputed 3 digit industry co" WS2_IN15 = "Edited and imputed 3 digit industry co" WS2_IN16 = "Edited and imputed 3 digit industry co" WS2_IN17 = "Edited and imputed 3 digit industry co" WS2_IN18 = "Edited and imputed 3 digit industry co" WS2_IN19 = "Edited and imputed 3 digit industry co" WS2_IN20 = "Edited and imputed 3 digit industry co" WS2_IN21 = "Edited and imputed 3 digit industry co" WS2_IN22 = "Edited and imputed 3 digit industry co" WS2_IN23 = "Edited and imputed 3 digit industry co" WS2_IN24 = "Edited and imputed 3 digit industry co" WS2_IN25 = "Edited and imputed 3 digit industry co" WS2_IN26 = "Edited and imputed 3 digit industry co" WS2_IN27 = "Edited and imputed 3 digit industry co" WS2_IN28 = "Edited and imputed 3 digit industry co" WS2_IN29 = "Edited and imputed 3 digit industry co" WS2_IN30 = "Edited and imputed 3 digit industry co" WS2_IN31 = "Edited and imputed 3 digit industry co" WS2_IN32 = "Edited and imputed 3 digit industry co" WS1_WK01 = "Number of weeks employed job 1 (monthl" WS1_WK02 = "Number of weeks employed job 1 (monthl" WS1_WK03 = "Number of weeks employed job 1 (monthl" WS1_WK04 = "Number of weeks employed job 1 (monthl" WS1_WK05 = "Number of weeks employed job 1 (monthl" WS1_WK06 = "Number of weeks employed job 1 (monthl" WS1_WK07 = "Number of weeks employed job 1 (monthl" WS1_WK08 = "Number of weeks employed job 1 (monthl" WS1_WK09 = "Number of weeks employed job 1 (monthl" WS1_WK10 = "Number of weeks employed job 1 (monthl" WS1_WK11 = "Number of weeks employed job 1 (monthl" WS1_WK12 = "Number of weeks employed job 1 (monthl" WS1_WK13 = "Number of weeks employed job 1 (monthl" WS1_WK14 = "Number of weeks employed job 1 (monthl" WS1_WK15 = "Number of weeks employed job 1 (monthl" WS1_WK16 = "Number of weeks employed job 1 (monthl" WS1_WK17 = "Number of weeks employed job 1 (monthl" WS1_WK18 = "Number of weeks employed job 1 (monthl" WS1_WK19 = "Number of weeks employed job 1 (monthl" WS1_WK20 = "Number of weeks employed job 1 (monthl" WS1_WK21 = "Number of weeks employed job 1 (monthl" WS1_WK22 = "Number of weeks employed job 1 (monthl" WS1_WK23 = "Number of weeks employed job 1 (monthl" WS1_WK24 = "Number of weeks employed job 1 (monthl" WS1_WK25 = "Number of weeks employed job 1 (monthl" WS1_WK26 = "Number of weeks employed job 1 (monthl" WS1_WK27 = "Number of weeks employed job 1 (monthl" WS1_WK28 = "Number of weeks employed job 1 (monthl" WS1_WK29 = "Number of weeks employed job 1 (monthl" WS1_WK30 = "Number of weeks employed job 1 (monthl" WS1_WK31 = "Number of weeks employed job 1 (monthl" WS1_WK32 = "Number of weeks employed job 1 (monthl" WS2_WK01 = "Number of weeks employed job 2 (monthl" WS2_WK02 = "Number of weeks employed job 2 (monthl" WS2_WK03 = "Number of weeks employed job 2 (monthl" WS2_WK04 = "Number of weeks employed job 2 (monthl" WS2_WK05 = "Number of weeks employed job 2 (monthl" WS2_WK06 = "Number of weeks employed job 2 (monthl" WS2_WK07 = "Number of weeks employed job 2 (monthl" WS2_WK08 = "Number of weeks employed job 2 (monthl" WS2_WK09 = "Number of weeks employed job 2 (monthl" WS2_WK10 = "Number of weeks employed job 2 (monthl" WS2_WK11 = "Number of weeks employed job 2 (monthl" WS2_WK12 = "Number of weeks employed job 2 (monthl" WS2_WK13 = "Number of weeks employed job 2 (monthl" WS2_WK14 = "Number of weeks employed job 2 (monthl" WS2_WK15 = "Number of weeks employed job 2 (monthl" WS2_WK16 = "Number of weeks employed job 2 (monthl" WS2_WK17 = "Number of weeks employed job 2 (monthl" WS2_WK18 = "Number of weeks employed job 2 (monthl" WS2_WK19 = "Number of weeks employed job 2 (monthl" WS2_WK20 = "Number of weeks employed job 2 (monthl" WS2_WK21 = "Number of weeks employed job 2 (monthl" WS2_WK22 = "Number of weeks employed job 2 (monthl" WS2_WK23 = "Number of weeks employed job 2 (monthl" WS2_WK24 = "Number of weeks employed job 2 (monthl" WS2_WK25 = "Number of weeks employed job 2 (monthl" WS2_WK26 = "Number of weeks employed job 2 (monthl" WS2_WK27 = "Number of weeks employed job 2 (monthl" WS2_WK28 = "Number of weeks employed job 2 (monthl" WS2_WK29 = "Number of weeks employed job 2 (monthl" WS2_WK30 = "Number of weeks employed job 2 (monthl" WS2_WK31 = "Number of weeks employed job 2 (monthl" WS2_WK32 = "Number of weeks employed job 2 (monthl" WS1_AM01 = "Dollar amount of the earnings job 1" WS1_AM02 = "Dollar amount of the earnings job 1" WS1_AM03 = "Dollar amount of the earnings job 1" WS1_AM04 = "Dollar amount of the earnings job 1" WS1_AM05 = "Dollar amount of the earnings job 1" WS1_AM06 = "Dollar amount of the earnings job 1" WS1_AM07 = "Dollar amount of the earnings job 1" WS1_AM08 = "Dollar amount of the earnings job 1" WS1_AM09 = "Dollar amount of the earnings job 1" WS1_AM10 = "Dollar amount of the earnings job 1" WS1_AM11 = "Dollar amount of the earnings job 1" WS1_AM12 = "Dollar amount of the earnings job 1" WS1_AM13 = "Dollar amount of the earnings job 1" WS1_AM14 = "Dollar amount of the earnings job 1" WS1_AM15 = "Dollar amount of the earnings job 1" WS1_AM16 = "Dollar amount of the earnings job 1" WS1_AM17 = "Dollar amount of the earnings job 1" WS1_AM18 = "Dollar amount of the earnings job 1" WS1_AM19 = "Dollar amount of the earnings job 1" WS1_AM20 = "Dollar amount of the earnings job 1" WS1_AM21 = "Dollar amount of the earnings job 1" WS1_AM22 = "Dollar amount of the earnings job 1" WS1_AM23 = "Dollar amount of the earnings job 1" WS1_AM24 = "Dollar amount of the earnings job 1" WS1_AM25 = "Dollar amount of the earnings job 1" WS1_AM26 = "Dollar amount of the earnings job 1" WS1_AM27 = "Dollar amount of the earnings job 1" WS1_AM28 = "Dollar amount of the earnings job 1" WS1_AM29 = "Dollar amount of the earnings job 1" WS1_AM30 = "Dollar amount of the earnings job 1" WS1_AM31 = "Dollar amount of the earnings job 1" WS1_AM32 = "Dollar amount of the earnings job 1" WS2_AM01 = "Dollar amount of the earnings - job 2" WS2_AM02 = "Dollar amount of the earnings - job 2" WS2_AM03 = "Dollar amount of the earnings - job 2" WS2_AM04 = "Dollar amount of the earnings - job 2" WS2_AM05 = "Dollar amount of the earnings - job 2" WS2_AM06 = "Dollar amount of the earnings - job 2" WS2_AM07 = "Dollar amount of the earnings - job 2" WS2_AM08 = "Dollar amount of the earnings - job 2" WS2_AM09 = "Dollar amount of the earnings - job 2" WS2_AM10 = "Dollar amount of the earnings - job 2" WS2_AM11 = "Dollar amount of the earnings - job 2" WS2_AM12 = "Dollar amount of the earnings - job 2" WS2_AM13 = "Dollar amount of the earnings - job 2" WS2_AM14 = "Dollar amount of the earnings - job 2" WS2_AM15 = "Dollar amount of the earnings - job 2" WS2_AM16 = "Dollar amount of the earnings - job 2" WS2_AM17 = "Dollar amount of the earnings - job 2" WS2_AM18 = "Dollar amount of the earnings - job 2" WS2_AM19 = "Dollar amount of the earnings - job 2" WS2_AM20 = "Dollar amount of the earnings - job 2" WS2_AM21 = "Dollar amount of the earnings - job 2" WS2_AM22 = "Dollar amount of the earnings - job 2" WS2_AM23 = "Dollar amount of the earnings - job 2" WS2_AM24 = "Dollar amount of the earnings - job 2" WS2_AM25 = "Dollar amount of the earnings - job 2" WS2_AM26 = "Dollar amount of the earnings - job 2" WS2_AM27 = "Dollar amount of the earnings - job 2" WS2_AM28 = "Dollar amount of the earnings - job 2" WS2_AM29 = "Dollar amount of the earnings - job 2" WS2_AM30 = "Dollar amount of the earnings - job 2" WS2_AM31 = "Dollar amount of the earnings - job 2" WS2_AM32 = "Dollar amount of the earnings - job 2" W2024_01 = "Usual hours per week job 1 (monthly)" W2024_02 = "Usual hours per week job 1 (monthly)" W2024_03 = "Usual hours per week job 1 (monthly)" W2024_04 = "Usual hours per week job 1 (monthly)" W2024_05 = "Usual hours per week job 1 (monthly)" W2024_06 = "Usual hours per week job 1 (monthly)" W2024_07 = "Usual hours per week job 1 (monthly)" W2024_08 = "Usual hours per week job 1 (monthly)" W2024_09 = "Usual hours per week job 1 (monthly)" W2024_10 = "Usual hours per week job 1 (monthly)" W2024_11 = "Usual hours per week job 1 (monthly)" W2024_12 = "Usual hours per week job 1 (monthly)" W2024_13 = "Usual hours per week job 1 (monthly)" W2024_14 = "Usual hours per week job 1 (monthly)" W2024_15 = "Usual hours per week job 1 (monthly)" W2024_16 = "Usual hours per week job 1 (monthly)" W2024_17 = "Usual hours per week job 1 (monthly)" W2024_18 = "Usual hours per week job 1 (monthly)" W2024_19 = "Usual hours per week job 1 (monthly)" W2024_20 = "Usual hours per week job 1 (monthly)" W2024_21 = "Usual hours per week job 1 (monthly)" W2024_22 = "Usual hours per week job 1 (monthly)" W2024_23 = "Usual hours per week job 1 (monthly)" W2024_24 = "Usual hours per week job 1 (monthly)" W2024_25 = "Usual hours per week job 1 (monthly)" W2024_26 = "Usual hours per week job 1 (monthly)" W2024_27 = "Usual hours per week job 1 (monthly)" W2024_28 = "Usual hours per week job 1 (monthly)" W2024_29 = "Usual hours per week job 1 (monthly)" W2024_30 = "Usual hours per week job 1 (monthly)" W2024_31 = "Usual hours per week job 1 (monthly)" W2024_32 = "Usual hours per week job 1 (monthly)" W2124_01 = "Usual hours per week job 2" W2124_02 = "Usual hours per week job 2" W2124_03 = "Usual hours per week job 2" W2124_04 = "Usual hours per week job 2" W2124_05 = "Usual hours per week job 2" W2124_06 = "Usual hours per week job 2" W2124_07 = "Usual hours per week job 2" W2124_08 = "Usual hours per week job 2" W2124_09 = "Usual hours per week job 2" W2124_10 = "Usual hours per week job 2" W2124_11 = "Usual hours per week job 2" W2124_12 = "Usual hours per week job 2" W2124_13 = "Usual hours per week job 2" W2124_14 = "Usual hours per week job 2" W2124_15 = "Usual hours per week job 2" W2124_16 = "Usual hours per week job 2" W2124_17 = "Usual hours per week job 2" W2124_18 = "Usual hours per week job 2" W2124_19 = "Usual hours per week job 2" W2124_20 = "Usual hours per week job 2" W2124_21 = "Usual hours per week job 2" W2124_22 = "Usual hours per week job 2" W2124_23 = "Usual hours per week job 2" W2124_24 = "Usual hours per week job 2" W2124_25 = "Usual hours per week job 2" W2124_26 = "Usual hours per week job 2" W2124_27 = "Usual hours per week job 2" W2124_28 = "Usual hours per week job 2" W2124_29 = "Usual hours per week job 2" W2124_30 = "Usual hours per week job 2" W2124_31 = "Usual hours per week job 2" W2124_32 = "Usual hours per week job 2" W2028_01 = "Regular hourly pay rate job 1" W2028_02 = "Regular hourly pay rate job 1" W2028_03 = "Regular hourly pay rate job 1" W2028_04 = "Regular hourly pay rate job 1" W2028_05 = "Regular hourly pay rate job 1" W2028_06 = "Regular hourly pay rate job 1" W2028_07 = "Regular hourly pay rate job 1" W2028_08 = "Regular hourly pay rate job 1" W2028_09 = "Regular hourly pay rate job 1" W2028_10 = "Regular hourly pay rate job 1" W2028_11 = "Regular hourly pay rate job 1" W2028_12 = "Regular hourly pay rate job 1" W2028_13 = "Regular hourly pay rate job 1" W2028_14 = "Regular hourly pay rate job 1" W2028_15 = "Regular hourly pay rate job 1" W2028_16 = "Regular hourly pay rate job 1" W2028_17 = "Regular hourly pay rate job 1" W2028_18 = "Regular hourly pay rate job 1" W2028_19 = "Regular hourly pay rate job 1" W2028_20 = "Regular hourly pay rate job 1" W2028_21 = "Regular hourly pay rate job 1" W2028_22 = "Regular hourly pay rate job 1" W2028_23 = "Regular hourly pay rate job 1" W2028_24 = "Regular hourly pay rate job 1" W2028_25 = "Regular hourly pay rate job 1" W2028_26 = "Regular hourly pay rate job 1" W2028_27 = "Regular hourly pay rate job 1" W2028_28 = "Regular hourly pay rate job 1" W2028_29 = "Regular hourly pay rate job 1" W2028_30 = "Regular hourly pay rate job 1" W2028_31 = "Regular hourly pay rate job 1" W2028_32 = "Regular hourly pay rate job 1" W2128_01 = "Regular hourly pay rate job 2" W2128_02 = "Regular hourly pay rate job 2" W2128_03 = "Regular hourly pay rate job 2" W2128_04 = "Regular hourly pay rate job 2" W2128_05 = "Regular hourly pay rate job 2" W2128_06 = "Regular hourly pay rate job 2" W2128_07 = "Regular hourly pay rate job 2" W2128_08 = "Regular hourly pay rate job 2" W2128_09 = "Regular hourly pay rate job 2" W2128_10 = "Regular hourly pay rate job 2" W2128_11 = "Regular hourly pay rate job 2" W2128_12 = "Regular hourly pay rate job 2" W2128_13 = "Regular hourly pay rate job 2" W2128_14 = "Regular hourly pay rate job 2" W2128_15 = "Regular hourly pay rate job 2" W2128_16 = "Regular hourly pay rate job 2" W2128_17 = "Regular hourly pay rate job 2" W2128_18 = "Regular hourly pay rate job 2" W2128_19 = "Regular hourly pay rate job 2" W2128_20 = "Regular hourly pay rate job 2" W2128_21 = "Regular hourly pay rate job 2" W2128_22 = "Regular hourly pay rate job 2" W2128_23 = "Regular hourly pay rate job 2" W2128_24 = "Regular hourly pay rate job 2" W2128_25 = "Regular hourly pay rate job 2" W2128_26 = "Regular hourly pay rate job 2" W2128_27 = "Regular hourly pay rate job 2" W2128_28 = "Regular hourly pay rate job 2" W2128_29 = "Regular hourly pay rate job 2" W2128_30 = "Regular hourly pay rate job 2" W2128_31 = "Regular hourly pay rate job 2" W2128_32 = "Regular hourly pay rate job 2" S2202_01 = "Check item S1,business ID number contr" S2202_02 = "Check item S1,business ID number contr" S2202_03 = "Check item S1,business ID number contr" S2202_04 = "Check item S1,business ID number contr" S2202_05 = "Check item S1,business ID number contr" S2202_06 = "Check item S1,business ID number contr" S2202_07 = "Check item S1,business ID number contr" S2202_08 = "Check item S1,business ID number contr" S2202_09 = "Check item S1,business ID number contr" S2202_10 = "Check item S1,business ID number contr" S2202_11 = "Check item S1,business ID number contr" S2202_12 = "Check item S1,business ID number contr" S2202_13 = "Check item S1,business ID number contr" S2202_14 = "Check item S1,business ID number contr" S2202_15 = "Check item S1,business ID number contr" S2202_16 = "Check item S1,business ID number contr" S2202_17 = "Check item S1,business ID number contr" S2202_18 = "Check item S1,business ID number contr" S2202_19 = "Check item S1,business ID number contr" S2202_20 = "Check item S1,business ID number contr" S2202_21 = "Check item S1,business ID number contr" S2202_22 = "Check item S1,business ID number contr" S2202_23 = "Check item S1,business ID number contr" S2202_24 = "Check item S1,business ID number contr" S2202_25 = "Check item S1,business ID number contr" S2202_26 = "Check item S1,business ID number contr" S2202_27 = "Check item S1,business ID number contr" S2202_28 = "Check item S1,business ID number contr" S2202_29 = "Check item S1,business ID number contr" S2202_30 = "Check item S1,business ID number contr" S2202_31 = "Check item S1,business ID number contr" S2202_32 = "Check item S1,business ID number contr" S2302_01 = "Check item S1,bus. ID number from" S2302_02 = "Check item S1,bus. ID number from" S2302_03 = "Check item S1,bus. ID number from" S2302_04 = "Check item S1,bus. ID number from" S2302_05 = "Check item S1,bus. ID number from" S2302_06 = "Check item S1,bus. ID number from" S2302_07 = "Check item S1,bus. ID number from" S2302_08 = "Check item S1,bus. ID number from" S2302_09 = "Check item S1,bus. ID number from" S2302_10 = "Check item S1,bus. ID number from" S2302_11 = "Check item S1,bus. ID number from" S2302_12 = "Check item S1,bus. ID number from" S2302_13 = "Check item S1,bus. ID number from" S2302_14 = "Check item S1,bus. ID number from" S2302_15 = "Check item S1,bus. ID number from" S2302_16 = "Check item S1,bus. ID number from" S2302_17 = "Check item S1,bus. ID number from" S2302_18 = "Check item S1,bus. ID number from" S2302_19 = "Check item S1,bus. ID number from" S2302_20 = "Check item S1,bus. ID number from" S2302_21 = "Check item S1,bus. ID number from" S2302_22 = "Check item S1,bus. ID number from" S2302_23 = "Check item S1,bus. ID number from" S2302_24 = "Check item S1,bus. ID number from" S2302_25 = "Check item S1,bus. ID number from" S2302_26 = "Check item S1,bus. ID number from" S2302_27 = "Check item S1,bus. ID number from" S2302_28 = "Check item S1,bus. ID number from" S2302_29 = "Check item S1,bus. ID number from" S2302_30 = "Check item S1,bus. ID number from" S2302_31 = "Check item S1,bus. ID number from" S2302_32 = "Check item S1,bus. ID number from" SE1_TY01 = "Type of business (sole,partnership," SE1_TY02 = "Type of business (sole,partnership," SE1_TY03 = "Type of business (sole,partnership," SE1_TY04 = "Type of business (sole,partnership," SE1_TY05 = "Type of business (sole,partnership," SE1_TY06 = "Type of business (sole,partnership," SE1_TY07 = "Type of business (sole,partnership," SE1_TY08 = "Type of business (sole,partnership," SE1_TY09 = "Type of business (sole,partnership," SE1_TY10 = "Type of business (sole,partnership," SE1_TY11 = "Type of business (sole,partnership," SE1_TY12 = "Type of business (sole,partnership," SE1_TY13 = "Type of business (sole,partnership," SE1_TY14 = "Type of business (sole,partnership," SE1_TY15 = "Type of business (sole,partnership," SE1_TY16 = "Type of business (sole,partnership," SE1_TY17 = "Type of business (sole,partnership," SE1_TY18 = "Type of business (sole,partnership," SE1_TY19 = "Type of business (sole,partnership," SE1_TY20 = "Type of business (sole,partnership," SE1_TY21 = "Type of business (sole,partnership," SE1_TY22 = "Type of business (sole,partnership," SE1_TY23 = "Type of business (sole,partnership," SE1_TY24 = "Type of business (sole,partnership," SE1_TY25 = "Type of business (sole,partnership," SE1_TY26 = "Type of business (sole,partnership," SE1_TY27 = "Type of business (sole,partnership," SE1_TY28 = "Type of business (sole,partnership," SE1_TY29 = "Type of business (sole,partnership," SE1_TY30 = "Type of business (sole,partnership," SE1_TY31 = "Type of business (sole,partnership," SE1_TY32 = "Type of business (sole,partnership," SE2_TY01 = "Type business (sole,partnership," SE2_TY02 = "Type business (sole,partnership," SE2_TY03 = "Type business (sole,partnership," SE2_TY04 = "Type business (sole,partnership," SE2_TY05 = "Type business (sole,partnership," SE2_TY06 = "Type business (sole,partnership," SE2_TY07 = "Type business (sole,partnership," SE2_TY08 = "Type business (sole,partnership," SE2_TY09 = "Type business (sole,partnership," SE2_TY10 = "Type business (sole,partnership," SE2_TY11 = "Type business (sole,partnership," SE2_TY12 = "Type business (sole,partnership," SE2_TY13 = "Type business (sole,partnership," SE2_TY14 = "Type business (sole,partnership," SE2_TY15 = "Type business (sole,partnership," SE2_TY16 = "Type business (sole,partnership," SE2_TY17 = "Type business (sole,partnership," SE2_TY18 = "Type business (sole,partnership," SE2_TY19 = "Type business (sole,partnership," SE2_TY20 = "Type business (sole,partnership," SE2_TY21 = "Type business (sole,partnership," SE2_TY22 = "Type business (sole,partnership," SE2_TY23 = "Type business (sole,partnership," SE2_TY24 = "Type business (sole,partnership," SE2_TY25 = "Type business (sole,partnership," SE2_TY26 = "Type business (sole,partnership," SE2_TY27 = "Type business (sole,partnership," SE2_TY28 = "Type business (sole,partnership," SE2_TY29 = "Type business (sole,partnership," SE2_TY30 = "Type business (sole,partnership," SE2_TY31 = "Type business (sole,partnership," SE2_TY32 = "Type business (sole,partnership," SE1_OC01 = "Edited and imputed 3 digit occupation" SE1_OC02 = "Edited and imputed 3 digit occupation" SE1_OC03 = "Edited and imputed 3 digit occupation" SE1_OC04 = "Edited and imputed 3 digit occupation" SE1_OC05 = "Edited and imputed 3 digit occupation" SE1_OC06 = "Edited and imputed 3 digit occupation" SE1_OC07 = "Edited and imputed 3 digit occupation" SE1_OC08 = "Edited and imputed 3 digit occupation" SE1_OC09 = "Edited and imputed 3 digit occupation" SE1_OC10 = "Edited and imputed 3 digit occupation" SE1_OC11 = "Edited and imputed 3 digit occupation" SE1_OC12 = "Edited and imputed 3 digit occupation" SE1_OC13 = "Edited and imputed 3 digit occupation" SE1_OC14 = "Edited and imputed 3 digit occupation" SE1_OC15 = "Edited and imputed 3 digit occupation" SE1_OC16 = "Edited and imputed 3 digit occupation" SE1_OC17 = "Edited and imputed 3 digit occupation" SE1_OC18 = "Edited and imputed 3 digit occupation" SE1_OC19 = "Edited and imputed 3 digit occupation" SE1_OC20 = "Edited and imputed 3 digit occupation" SE1_OC21 = "Edited and imputed 3 digit occupation" SE1_OC22 = "Edited and imputed 3 digit occupation" SE1_OC23 = "Edited and imputed 3 digit occupation" SE1_OC24 = "Edited and imputed 3 digit occupation" SE1_OC25 = "Edited and imputed 3 digit occupation" SE1_OC26 = "Edited and imputed 3 digit occupation" SE1_OC27 = "Edited and imputed 3 digit occupation" SE1_OC28 = "Edited and imputed 3 digit occupation" SE1_OC29 = "Edited and imputed 3 digit occupation" SE1_OC30 = "Edited and imputed 3 digit occupation" SE1_OC31 = "Edited and imputed 3 digit occupation" SE1_OC32 = "Edited and imputed 3 digit occupation" SE2_OC01 = "Edited and imputed 3 digit occupation" SE2_OC02 = "Edited and imputed 3 digit occupation" SE2_OC03 = "Edited and imputed 3 digit occupation" SE2_OC04 = "Edited and imputed 3 digit occupation" SE2_OC05 = "Edited and imputed 3 digit occupation" SE2_OC06 = "Edited and imputed 3 digit occupation" SE2_OC07 = "Edited and imputed 3 digit occupation" SE2_OC08 = "Edited and imputed 3 digit occupation" SE2_OC09 = "Edited and imputed 3 digit occupation" SE2_OC10 = "Edited and imputed 3 digit occupation" SE2_OC11 = "Edited and imputed 3 digit occupation" SE2_OC12 = "Edited and imputed 3 digit occupation" SE2_OC13 = "Edited and imputed 3 digit occupation" SE2_OC14 = "Edited and imputed 3 digit occupation" SE2_OC15 = "Edited and imputed 3 digit occupation" SE2_OC16 = "Edited and imputed 3 digit occupation" SE2_OC17 = "Edited and imputed 3 digit occupation" SE2_OC18 = "Edited and imputed 3 digit occupation" SE2_OC19 = "Edited and imputed 3 digit occupation" SE2_OC20 = "Edited and imputed 3 digit occupation" SE2_OC21 = "Edited and imputed 3 digit occupation" SE2_OC22 = "Edited and imputed 3 digit occupation" SE2_OC23 = "Edited and imputed 3 digit occupation" SE2_OC24 = "Edited and imputed 3 digit occupation" SE2_OC25 = "Edited and imputed 3 digit occupation" SE2_OC26 = "Edited and imputed 3 digit occupation" SE2_OC27 = "Edited and imputed 3 digit occupation" SE2_OC28 = "Edited and imputed 3 digit occupation" SE2_OC29 = "Edited and imputed 3 digit occupation" SE2_OC30 = "Edited and imputed 3 digit occupation" SE2_OC31 = "Edited and imputed 3 digit occupation" SE2_OC32 = "Edited and imputed 3 digit occupation" SE1_IN01 = "Edited and imputed 2 digit industry co" SE1_IN02 = "Edited and imputed 2 digit industry co" SE1_IN03 = "Edited and imputed 2 digit industry co" SE1_IN04 = "Edited and imputed 2 digit industry co" SE1_IN05 = "Edited and imputed 2 digit industry co" SE1_IN06 = "Edited and imputed 2 digit industry co" SE1_IN07 = "Edited and imputed 2 digit industry co" SE1_IN08 = "Edited and imputed 2 digit industry co" SE1_IN09 = "Edited and imputed 2 digit industry co" SE1_IN10 = "Edited and imputed 2 digit industry co" SE1_IN11 = "Edited and imputed 2 digit industry co" SE1_IN12 = "Edited and imputed 2 digit industry co" SE1_IN13 = "Edited and imputed 2 digit industry co" SE1_IN14 = "Edited and imputed 2 digit industry co" SE1_IN15 = "Edited and imputed 2 digit industry co" SE1_IN16 = "Edited and imputed 2 digit industry co" SE1_IN17 = "Edited and imputed 2 digit industry co" SE1_IN18 = "Edited and imputed 2 digit industry co" SE1_IN19 = "Edited and imputed 2 digit industry co" SE1_IN20 = "Edited and imputed 2 digit industry co" SE1_IN21 = "Edited and imputed 2 digit industry co" SE1_IN22 = "Edited and imputed 2 digit industry co" SE1_IN23 = "Edited and imputed 2 digit industry co" SE1_IN24 = "Edited and imputed 2 digit industry co" SE1_IN25 = "Edited and imputed 2 digit industry co" SE1_IN26 = "Edited and imputed 2 digit industry co" SE1_IN27 = "Edited and imputed 2 digit industry co" SE1_IN28 = "Edited and imputed 2 digit industry co" SE1_IN29 = "Edited and imputed 2 digit industry co" SE1_IN30 = "Edited and imputed 2 digit industry co" SE1_IN31 = "Edited and imputed 2 digit industry co" SE1_IN32 = "Edited and imputed 2 digit industry co" SE2_IN01 = "Edited and imputed 2 digit industry co" SE2_IN02 = "Edited and imputed 2 digit industry co" SE2_IN03 = "Edited and imputed 2 digit industry co" SE2_IN04 = "Edited and imputed 2 digit industry co" SE2_IN05 = "Edited and imputed 2 digit industry co" SE2_IN06 = "Edited and imputed 2 digit industry co" SE2_IN07 = "Edited and imputed 2 digit industry co" SE2_IN08 = "Edited and imputed 2 digit industry co" SE2_IN09 = "Edited and imputed 2 digit industry co" SE2_IN10 = "Edited and imputed 2 digit industry co" SE2_IN11 = "Edited and imputed 2 digit industry co" SE2_IN12 = "Edited and imputed 2 digit industry co" SE2_IN13 = "Edited and imputed 2 digit industry co" SE2_IN14 = "Edited and imputed 2 digit industry co" SE2_IN15 = "Edited and imputed 2 digit industry co" SE2_IN16 = "Edited and imputed 2 digit industry co" SE2_IN17 = "Edited and imputed 2 digit industry co" SE2_IN18 = "Edited and imputed 2 digit industry co" SE2_IN19 = "Edited and imputed 2 digit industry co" SE2_IN20 = "Edited and imputed 2 digit industry co" SE2_IN21 = "Edited and imputed 2 digit industry co" SE2_IN22 = "Edited and imputed 2 digit industry co" SE2_IN23 = "Edited and imputed 2 digit industry co" SE2_IN24 = "Edited and imputed 2 digit industry co" SE2_IN25 = "Edited and imputed 2 digit industry co" SE2_IN26 = "Edited and imputed 2 digit industry co" SE2_IN27 = "Edited and imputed 2 digit industry co" SE2_IN28 = "Edited and imputed 2 digit industry co" SE2_IN29 = "Edited and imputed 2 digit industry co" SE2_IN30 = "Edited and imputed 2 digit industry co" SE2_IN31 = "Edited and imputed 2 digit industry co" SE2_IN32 = "Edited and imputed 2 digit industry co" SE1_WK01 = "Number of weeks with self employed" SE1_WK02 = "Number of weeks with self employed" SE1_WK03 = "Number of weeks with self employed" SE1_WK04 = "Number of weeks with self employed" SE1_WK05 = "Number of weeks with self employed" SE1_WK06 = "Number of weeks with self employed" SE1_WK07 = "Number of weeks with self employed" SE1_WK08 = "Number of weeks with self employed" SE1_WK09 = "Number of weeks with self employed" SE1_WK10 = "Number of weeks with self employed" SE1_WK11 = "Number of weeks with self employed" SE1_WK12 = "Number of weeks with self employed" SE1_WK13 = "Number of weeks with self employed" SE1_WK14 = "Number of weeks with self employed" SE1_WK15 = "Number of weeks with self employed" SE1_WK16 = "Number of weeks with self employed" SE1_WK17 = "Number of weeks with self employed" SE1_WK18 = "Number of weeks with self employed" SE1_WK19 = "Number of weeks with self employed" SE1_WK20 = "Number of weeks with self employed" SE1_WK21 = "Number of weeks with self employed" SE1_WK22 = "Number of weeks with self employed" SE1_WK23 = "Number of weeks with self employed" SE1_WK24 = "Number of weeks with self employed" SE1_WK25 = "Number of weeks with self employed" SE1_WK26 = "Number of weeks with self employed" SE1_WK27 = "Number of weeks with self employed" SE1_WK28 = "Number of weeks with self employed" SE1_WK29 = "Number of weeks with self employed" SE1_WK30 = "Number of weeks with self employed" SE1_WK31 = "Number of weeks with self employed" SE1_WK32 = "Number of weeks with self employed" SE2_WK01 = "Number of weeks with self employed" SE2_WK02 = "Number of weeks with self employed" SE2_WK03 = "Number of weeks with self employed" SE2_WK04 = "Number of weeks with self employed" SE2_WK05 = "Number of weeks with self employed" SE2_WK06 = "Number of weeks with self employed" SE2_WK07 = "Number of weeks with self employed" SE2_WK08 = "Number of weeks with self employed" SE2_WK09 = "Number of weeks with self employed" SE2_WK10 = "Number of weeks with self employed" SE2_WK11 = "Number of weeks with self employed" SE2_WK12 = "Number of weeks with self employed" SE2_WK13 = "Number of weeks with self employed" SE2_WK14 = "Number of weeks with self employed" SE2_WK15 = "Number of weeks with self employed" SE2_WK16 = "Number of weeks with self employed" SE2_WK17 = "Number of weeks with self employed" SE2_WK18 = "Number of weeks with self employed" SE2_WK19 = "Number of weeks with self employed" SE2_WK20 = "Number of weeks with self employed" SE2_WK21 = "Number of weeks with self employed" SE2_WK22 = "Number of weeks with self employed" SE2_WK23 = "Number of weeks with self employed" SE2_WK24 = "Number of weeks with self employed" SE2_WK25 = "Number of weeks with self employed" SE2_WK26 = "Number of weeks with self employed" SE2_WK27 = "Number of weeks with self employed" SE2_WK28 = "Number of weeks with self employed" SE2_WK29 = "Number of weeks with self employed" SE2_WK30 = "Number of weeks with self employed" SE2_WK31 = "Number of weeks with self employed" SE2_WK32 = "Number of weeks with self employed" SE1_AM01 = "Income from self employed business 1" SE1_AM02 = "Income from self employed business 1" SE1_AM03 = "Income from self employed business 1" SE1_AM04 = "Income from self employed business 1" SE1_AM05 = "Income from self employed business 1" SE1_AM06 = "Income from self employed business 1" SE1_AM07 = "Income from self employed business 1" SE1_AM08 = "Income from self employed business 1" SE1_AM09 = "Income from self employed business 1" SE1_AM10 = "Income from self employed business 1" SE1_AM11 = "Income from self employed business 1" SE1_AM12 = "Income from self employed business 1" SE1_AM13 = "Income from self employed business 1" SE1_AM14 = "Income from self employed business 1" SE1_AM15 = "Income from self employed business 1" SE1_AM16 = "Income from self employed business 1" SE1_AM17 = "Income from self employed business 1" SE1_AM18 = "Income from self employed business 1" SE1_AM19 = "Income from self employed business 1" SE1_AM20 = "Income from self employed business 1" SE1_AM21 = "Income from self employed business 1" SE1_AM22 = "Income from self employed business 1" SE1_AM23 = "Income from self employed business 1" SE1_AM24 = "Income from self employed business 1" SE1_AM25 = "Income from self employed business 1" SE1_AM26 = "Income from self employed business 1" SE1_AM27 = "Income from self employed business 1" SE1_AM28 = "Income from self employed business 1" SE1_AM29 = "Income from self employed business 1" SE1_AM30 = "Income from self employed business 1" SE1_AM31 = "Income from self employed business 1" SE1_AM32 = "Income from self employed business 1" SE2_AM01 = "Income from self employed business 2" SE2_AM02 = "Income from self employed business 2" SE2_AM03 = "Income from self employed business 2" SE2_AM04 = "Income from self employed business 2" SE2_AM05 = "Income from self employed business 2" SE2_AM06 = "Income from self employed business 2" SE2_AM07 = "Income from self employed business 2" SE2_AM08 = "Income from self employed business 2" SE2_AM09 = "Income from self employed business 2" SE2_AM10 = "Income from self employed business 2" SE2_AM11 = "Income from self employed business 2" SE2_AM12 = "Income from self employed business 2" SE2_AM13 = "Income from self employed business 2" SE2_AM14 = "Income from self employed business 2" SE2_AM15 = "Income from self employed business 2" SE2_AM16 = "Income from self employed business 2" SE2_AM17 = "Income from self employed business 2" SE2_AM18 = "Income from self employed business 2" SE2_AM19 = "Income from self employed business 2" SE2_AM20 = "Income from self employed business 2" SE2_AM21 = "Income from self employed business 2" SE2_AM22 = "Income from self employed business 2" SE2_AM23 = "Income from self employed business 2" SE2_AM24 = "Income from self employed business 2" SE2_AM25 = "Income from self employed business 2" SE2_AM26 = "Income from self employed business 2" SE2_AM27 = "Income from self employed business 2" SE2_AM28 = "Income from self employed business 2" SE2_AM29 = "Income from self employed business 2" SE2_AM30 = "Income from self employed business 2" SE2_AM31 = "Income from self employed business 2" SE2_AM32 = "Income from self employed business 2" S2212_01 = "Hours per week self employed business " S2212_02 = "Hours per week self employed business " S2212_03 = "Hours per week self employed business " S2212_04 = "Hours per week self employed business " S2212_05 = "Hours per week self employed business " S2212_06 = "Hours per week self employed business " S2212_07 = "Hours per week self employed business " S2212_08 = "Hours per week self employed business " S2212_09 = "Hours per week self employed business " S2212_10 = "Hours per week self employed business " S2212_11 = "Hours per week self employed business " S2212_12 = "Hours per week self employed business " S2212_13 = "Hours per week self employed business " S2212_14 = "Hours per week self employed business " S2212_15 = "Hours per week self employed business " S2212_16 = "Hours per week self employed business " S2212_17 = "Hours per week self employed business " S2212_18 = "Hours per week self employed business " S2212_19 = "Hours per week self employed business " S2212_20 = "Hours per week self employed business " S2212_21 = "Hours per week self employed business " S2212_22 = "Hours per week self employed business " S2212_23 = "Hours per week self employed business " S2212_24 = "Hours per week self employed business " S2212_25 = "Hours per week self employed business " S2212_26 = "Hours per week self employed business " S2212_27 = "Hours per week self employed business " S2212_28 = "Hours per week self employed business " S2212_29 = "Hours per week self employed business " S2212_30 = "Hours per week self employed business " S2212_31 = "Hours per week self employed business " S2212_32 = "Hours per week self employed business " S2312_01 = "Hours per week self employed business " S2312_02 = "Hours per week self employed business " S2312_03 = "Hours per week self employed business " S2312_04 = "Hours per week self employed business " S2312_05 = "Hours per week self employed business " S2312_06 = "Hours per week self employed business " S2312_07 = "Hours per week self employed business " S2312_08 = "Hours per week self employed business " S2312_09 = "Hours per week self employed business " S2312_10 = "Hours per week self employed business " S2312_11 = "Hours per week self employed business " S2312_12 = "Hours per week self employed business " S2312_13 = "Hours per week self employed business " S2312_14 = "Hours per week self employed business " S2312_15 = "Hours per week self employed business " S2312_16 = "Hours per week self employed business " S2312_17 = "Hours per week self employed business " S2312_18 = "Hours per week self employed business " S2312_19 = "Hours per week self employed business " S2312_20 = "Hours per week self employed business " S2312_21 = "Hours per week self employed business " S2312_22 = "Hours per week self employed business " S2312_23 = "Hours per week self employed business " S2312_24 = "Hours per week self employed business " S2312_25 = "Hours per week self employed business " S2312_26 = "Hours per week self employed business " S2312_27 = "Hours per week self employed business " S2312_28 = "Hours per week self employed business " S2312_29 = "Hours per week self employed business " S2312_30 = "Hours per week self employed business " S2312_31 = "Hours per week self employed business " S2312_32 = "Hours per week self employed business " G1SRC1 = "Income source 1" G1SRC2 = "Income source 2" G1SRC3 = "Income source 3" G1SRC4 = "Income source 4" G1SRC5 = "Income source 5" G1SRC6 = "Income source 6" G1SRC7 = "Income source 7" G1SRC8 = "Income source 8" G1SRC9 = "Income source 9" G1SRC10 = "Income source 10" G1_A1_01 = "G1 income source 1 (monthly)" G1_A1_02 = "G1 income source 1 (monthly)" G1_A1_03 = "G1 income source 1 (monthly)" G1_A1_04 = "G1 income source 1 (monthly)" G1_A1_05 = "G1 income source 1 (monthly)" G1_A1_06 = "G1 income source 1 (monthly)" G1_A1_07 = "G1 income source 1 (monthly)" G1_A1_08 = "G1 income source 1 (monthly)" G1_A1_09 = "G1 income source 1 (monthly)" G1_A1_10 = "G1 income source 1 (monthly)" G1_A1_11 = "G1 income source 1 (monthly)" G1_A1_12 = "G1 income source 1 (monthly)" G1_A1_13 = "G1 income source 1 (monthly)" G1_A1_14 = "G1 income source 1 (monthly)" G1_A1_15 = "G1 income source 1 (monthly)" G1_A1_16 = "G1 income source 1 (monthly)" G1_A1_17 = "G1 income source 1 (monthly)" G1_A1_18 = "G1 income source 1 (monthly)" G1_A1_19 = "G1 income source 1 (monthly)" G1_A1_20 = "G1 income source 1 (monthly)" G1_A1_21 = "G1 income source 1 (monthly)" G1_A1_22 = "G1 income source 1 (monthly)" G1_A1_23 = "G1 income source 1 (monthly)" G1_A1_24 = "G1 income source 1 (monthly)" G1_A1_25 = "G1 income source 1 (monthly)" G1_A1_26 = "G1 income source 1 (monthly)" G1_A1_27 = "G1 income source 1 (monthly)" G1_A1_28 = "G1 income source 1 (monthly)" G1_A1_29 = "G1 income source 1 (monthly)" G1_A1_30 = "G1 income source 1 (monthly)" G1_A1_31 = "G1 income source 1 (monthly)" G1_A1_32 = "G1 income source 1 (monthly)" G1_A2_01 = "G1 income source 2 (monthly)" G1_A2_02 = "G1 income source 2 (monthly)" G1_A2_03 = "G1 income source 2 (monthly)" G1_A2_04 = "G1 income source 2 (monthly)" G1_A2_05 = "G1 income source 2 (monthly)" G1_A2_06 = "G1 income source 2 (monthly)" G1_A2_07 = "G1 income source 2 (monthly)" G1_A2_08 = "G1 income source 2 (monthly)" G1_A2_09 = "G1 income source 2 (monthly)" G1_A2_10 = "G1 income source 2 (monthly)" G1_A2_11 = "G1 income source 2 (monthly)" G1_A2_12 = "G1 income source 2 (monthly)" G1_A2_13 = "G1 income source 2 (monthly)" G1_A2_14 = "G1 income source 2 (monthly)" G1_A2_15 = "G1 income source 2 (monthly)" G1_A2_16 = "G1 income source 2 (monthly)" G1_A2_17 = "G1 income source 2 (monthly)" G1_A2_18 = "G1 income source 2 (monthly)" G1_A2_19 = "G1 income source 2 (monthly)" G1_A2_20 = "G1 income source 2 (monthly)" G1_A2_21 = "G1 income source 2 (monthly)" G1_A2_22 = "G1 income source 2 (monthly)" G1_A2_23 = "G1 income source 2 (monthly)" G1_A2_24 = "G1 income source 2 (monthly)" G1_A2_25 = "G1 income source 2 (monthly)" G1_A2_26 = "G1 income source 2 (monthly)" G1_A2_27 = "G1 income source 2 (monthly)" G1_A2_28 = "G1 income source 2 (monthly)" G1_A2_29 = "G1 income source 2 (monthly)" G1_A2_30 = "G1 income source 2 (monthly)" G1_A2_31 = "G1 income source 2 (monthly)" G1_A2_32 = "G1 income source 2 (monthly)" G1_A3_01 = "G1 income source 3 (monthly)" G1_A3_02 = "G1 income source 3 (monthly)" G1_A3_03 = "G1 income source 3 (monthly)" G1_A3_04 = "G1 income source 3 (monthly)" G1_A3_05 = "G1 income source 3 (monthly)" G1_A3_06 = "G1 income source 3 (monthly)" G1_A3_07 = "G1 income source 3 (monthly)" G1_A3_08 = "G1 income source 3 (monthly)" G1_A3_09 = "G1 income source 3 (monthly)" G1_A3_10 = "G1 income source 3 (monthly)" G1_A3_11 = "G1 income source 3 (monthly)" G1_A3_12 = "G1 income source 3 (monthly)" G1_A3_13 = "G1 income source 3 (monthly)" G1_A3_14 = "G1 income source 3 (monthly)" G1_A3_15 = "G1 income source 3 (monthly)" G1_A3_16 = "G1 income source 3 (monthly)" G1_A3_17 = "G1 income source 3 (monthly)" G1_A3_18 = "G1 income source 3 (monthly)" G1_A3_19 = "G1 income source 3 (monthly)" G1_A3_20 = "G1 income source 3 (monthly)" G1_A3_21 = "G1 income source 3 (monthly)" G1_A3_22 = "G1 income source 3 (monthly)" G1_A3_23 = "G1 income source 3 (monthly)" G1_A3_24 = "G1 income source 3 (monthly)" G1_A3_25 = "G1 income source 3 (monthly)" G1_A3_26 = "G1 income source 3 (monthly)" G1_A3_27 = "G1 income source 3 (monthly)" G1_A3_28 = "G1 income source 3 (monthly)" G1_A3_29 = "G1 income source 3 (monthly)" G1_A3_30 = "G1 income source 3 (monthly)" G1_A3_31 = "G1 income source 3 (monthly)" G1_A3_32 = "G1 income source 3 (monthly)" G1_A4_01 = "G1 income source 4 (monthly)" G1_A4_02 = "G1 income source 4 (monthly)" G1_A4_03 = "G1 income source 4 (monthly)" G1_A4_04 = "G1 income source 4 (monthly)" G1_A4_05 = "G1 income source 4 (monthly)" G1_A4_06 = "G1 income source 4 (monthly)" G1_A4_07 = "G1 income source 4 (monthly)" G1_A4_08 = "G1 income source 4 (monthly)" G1_A4_09 = "G1 income source 4 (monthly)" G1_A4_10 = "G1 income source 4 (monthly)" G1_A4_11 = "G1 income source 4 (monthly)" G1_A4_12 = "G1 income source 4 (monthly)" G1_A4_13 = "G1 income source 4 (monthly)" G1_A4_14 = "G1 income source 4 (monthly)" G1_A4_15 = "G1 income source 4 (monthly)" G1_A4_16 = "G1 income source 4 (monthly)" G1_A4_17 = "G1 income source 4 (monthly)" G1_A4_18 = "G1 income source 4 (monthly)" G1_A4_19 = "G1 income source 4 (monthly)" G1_A4_20 = "G1 income source 4 (monthly)" G1_A4_21 = "G1 income source 4 (monthly)" G1_A4_22 = "G1 income source 4 (monthly)" G1_A4_23 = "G1 income source 4 (monthly)" G1_A4_24 = "G1 income source 4 (monthly)" G1_A4_25 = "G1 income source 4 (monthly)" G1_A4_26 = "G1 income source 4 (monthly)" G1_A4_27 = "G1 income source 4 (monthly)" G1_A4_28 = "G1 income source 4 (monthly)" G1_A4_29 = "G1 income source 4 (monthly)" G1_A4_30 = "G1 income source 4 (monthly)" G1_A4_31 = "G1 income source 4 (monthly)" G1_A4_32 = "G1 income source 4 (monthly)" G1_A5_01 = "G1 income source 5 (monthly)" G1_A5_02 = "G1 income source 5 (monthly)" G1_A5_03 = "G1 income source 5 (monthly)" G1_A5_04 = "G1 income source 5 (monthly)" G1_A5_05 = "G1 income source 5 (monthly)" G1_A5_06 = "G1 income source 5 (monthly)" G1_A5_07 = "G1 income source 5 (monthly)" G1_A5_08 = "G1 income source 5 (monthly)" G1_A5_09 = "G1 income source 5 (monthly)" G1_A5_10 = "G1 income source 5 (monthly)" G1_A5_11 = "G1 income source 5 (monthly)" G1_A5_12 = "G1 income source 5 (monthly)" G1_A5_13 = "G1 income source 5 (monthly)" G1_A5_14 = "G1 income source 5 (monthly)" G1_A5_15 = "G1 income source 5 (monthly)" G1_A5_16 = "G1 income source 5 (monthly)" G1_A5_17 = "G1 income source 5 (monthly)" G1_A5_18 = "G1 income source 5 (monthly)" G1_A5_19 = "G1 income source 5 (monthly)" G1_A5_20 = "G1 income source 5 (monthly)" G1_A5_21 = "G1 income source 5 (monthly)" G1_A5_22 = "G1 income source 5 (monthly)" G1_A5_23 = "G1 income source 5 (monthly)" G1_A5_24 = "G1 income source 5 (monthly)" G1_A5_25 = "G1 income source 5 (monthly)" G1_A5_26 = "G1 income source 5 (monthly)" G1_A5_27 = "G1 income source 5 (monthly)" G1_A5_28 = "G1 income source 5 (monthly)" G1_A5_29 = "G1 income source 5 (monthly)" G1_A5_30 = "G1 income source 5 (monthly)" G1_A5_31 = "G1 income source 5 (monthly)" G1_A5_32 = "G1 income source 5 (monthly)" G1_A6_01 = "G1 income source 6 (monthly)" G1_A6_02 = "G1 income source 6 (monthly)" G1_A6_03 = "G1 income source 6 (monthly)" G1_A6_04 = "G1 income source 6 (monthly)" G1_A6_05 = "G1 income source 6 (monthly)" G1_A6_06 = "G1 income source 6 (monthly)" G1_A6_07 = "G1 income source 6 (monthly)" G1_A6_08 = "G1 income source 6 (monthly)" G1_A6_09 = "G1 income source 6 (monthly)" G1_A6_10 = "G1 income source 6 (monthly)" G1_A6_11 = "G1 income source 6 (monthly)" G1_A6_12 = "G1 income source 6 (monthly)" G1_A6_13 = "G1 income source 6 (monthly)" G1_A6_14 = "G1 income source 6 (monthly)" G1_A6_15 = "G1 income source 6 (monthly)" G1_A6_16 = "G1 income source 6 (monthly)" G1_A6_17 = "G1 income source 6 (monthly)" G1_A6_18 = "G1 income source 6 (monthly)" G1_A6_19 = "G1 income source 6 (monthly)" G1_A6_20 = "G1 income source 6 (monthly)" G1_A6_21 = "G1 income source 6 (monthly)" G1_A6_22 = "G1 income source 6 (monthly)" G1_A6_23 = "G1 income source 6 (monthly)" G1_A6_24 = "G1 income source 6 (monthly)" G1_A6_25 = "G1 income source 6 (monthly)" G1_A6_26 = "G1 income source 6 (monthly)" G1_A6_27 = "G1 income source 6 (monthly)" G1_A6_28 = "G1 income source 6 (monthly)" G1_A6_29 = "G1 income source 6 (monthly)" G1_A6_30 = "G1 income source 6 (monthly)" G1_A6_31 = "G1 income source 6 (monthly)" G1_A6_32 = "G1 income source 6 (monthly)" G1_A7_01 = "G1 income source 7 (monthly)" G1_A7_02 = "G1 income source 7 (monthly)" G1_A7_03 = "G1 income source 7 (monthly)" G1_A7_04 = "G1 income source 7 (monthly)" G1_A7_05 = "G1 income source 7 (monthly)" G1_A7_06 = "G1 income source 7 (monthly)" G1_A7_07 = "G1 income source 7 (monthly)" G1_A7_08 = "G1 income source 7 (monthly)" G1_A7_09 = "G1 income source 7 (monthly)" G1_A7_10 = "G1 income source 7 (monthly)" G1_A7_11 = "G1 income source 7 (monthly)" G1_A7_12 = "G1 income source 7 (monthly)" G1_A7_13 = "G1 income source 7 (monthly)" G1_A7_14 = "G1 income source 7 (monthly)" G1_A7_15 = "G1 income source 7 (monthly)" G1_A7_16 = "G1 income source 7 (monthly)" G1_A7_17 = "G1 income source 7 (monthly)" G1_A7_18 = "G1 income source 7 (monthly)" G1_A7_19 = "G1 income source 7 (monthly)" G1_A7_20 = "G1 income source 7 (monthly)" G1_A7_21 = "G1 income source 7 (monthly)" G1_A7_22 = "G1 income source 7 (monthly)" G1_A7_23 = "G1 income source 7 (monthly)" G1_A7_24 = "G1 income source 7 (monthly)" G1_A7_25 = "G1 income source 7 (monthly)" G1_A7_26 = "G1 income source 7 (monthly)" G1_A7_27 = "G1 income source 7 (monthly)" G1_A7_28 = "G1 income source 7 (monthly)" G1_A7_29 = "G1 income source 7 (monthly)" G1_A7_30 = "G1 income source 7 (monthly)" G1_A7_31 = "G1 income source 7 (monthly)" G1_A7_32 = "G1 income source 7 (monthly)" G1_A8_01 = "G1 income source 8 (monthly)" G1_A8_02 = "G1 income source 8 (monthly)" G1_A8_03 = "G1 income source 8 (monthly)" G1_A8_04 = "G1 income source 8 (monthly)" G1_A8_05 = "G1 income source 8 (monthly)" G1_A8_06 = "G1 income source 8 (monthly)" G1_A8_07 = "G1 income source 8 (monthly)" G1_A8_08 = "G1 income source 8 (monthly)" G1_A8_09 = "G1 income source 8 (monthly)" G1_A8_10 = "G1 income source 8 (monthly)" G1_A8_11 = "G1 income source 8 (monthly)" G1_A8_12 = "G1 income source 8 (monthly)" G1_A8_13 = "G1 income source 8 (monthly)" G1_A8_14 = "G1 income source 8 (monthly)" G1_A8_15 = "G1 income source 8 (monthly)" G1_A8_16 = "G1 income source 8 (monthly)" G1_A8_17 = "G1 income source 8 (monthly)" G1_A8_18 = "G1 income source 8 (monthly)" G1_A8_19 = "G1 income source 8 (monthly)" G1_A8_20 = "G1 income source 8 (monthly)" G1_A8_21 = "G1 income source 8 (monthly)" G1_A8_22 = "G1 income source 8 (monthly)" G1_A8_23 = "G1 income source 8 (monthly)" G1_A8_24 = "G1 income source 8 (monthly)" G1_A8_25 = "G1 income source 8 (monthly)" G1_A8_26 = "G1 income source 8 (monthly)" G1_A8_27 = "G1 income source 8 (monthly)" G1_A8_28 = "G1 income source 8 (monthly)" G1_A8_29 = "G1 income source 8 (monthly)" G1_A8_30 = "G1 income source 8 (monthly)" G1_A8_31 = "G1 income source 8 (monthly)" G1_A8_32 = "G1 income source 8 (monthly)" G1_A9_01 = "G1 income source 9 (monthly)" G1_A9_02 = "G1 income source 9 (monthly)" G1_A9_03 = "G1 income source 9 (monthly)" G1_A9_04 = "G1 income source 9 (monthly)" G1_A9_05 = "G1 income source 9 (monthly)" G1_A9_06 = "G1 income source 9 (monthly)" G1_A9_07 = "G1 income source 9 (monthly)" G1_A9_08 = "G1 income source 9 (monthly)" G1_A9_09 = "G1 income source 9 (monthly)" G1_A9_10 = "G1 income source 9 (monthly)" G1_A9_11 = "G1 income source 9 (monthly)" G1_A9_12 = "G1 income source 9 (monthly)" G1_A9_13 = "G1 income source 9 (monthly)" G1_A9_14 = "G1 income source 9 (monthly)" G1_A9_15 = "G1 income source 9 (monthly)" G1_A9_16 = "G1 income source 9 (monthly)" G1_A9_17 = "G1 income source 9 (monthly)" G1_A9_18 = "G1 income source 9 (monthly)" G1_A9_19 = "G1 income source 9 (monthly)" G1_A9_20 = "G1 income source 9 (monthly)" G1_A9_21 = "G1 income source 9 (monthly)" G1_A9_22 = "G1 income source 9 (monthly)" G1_A9_23 = "G1 income source 9 (monthly)" G1_A9_24 = "G1 income source 9 (monthly)" G1_A9_25 = "G1 income source 9 (monthly)" G1_A9_26 = "G1 income source 9 (monthly)" G1_A9_27 = "G1 income source 9 (monthly)" G1_A9_28 = "G1 income source 9 (monthly)" G1_A9_29 = "G1 income source 9 (monthly)" G1_A9_30 = "G1 income source 9 (monthly)" G1_A9_31 = "G1 income source 9 (monthly)" G1_A9_32 = "G1 income source 9 (monthly)" G1_A1001 = "G1 income source 10 (monthly)" G1_A1002 = "G1 income source 10 (monthly)" G1_A1003 = "G1 income source 10 (monthly)" G1_A1004 = "G1 income source 10 (monthly)" G1_A1005 = "G1 income source 10 (monthly)" G1_A1006 = "G1 income source 10 (monthly)" G1_A1007 = "G1 income source 10 (monthly)" G1_A1008 = "G1 income source 10 (monthly)" G1_A1009 = "G1 income source 10 (monthly)" G1_A1010 = "G1 income source 10 (monthly)" G1_A1011 = "G1 income source 10 (monthly)" G1_A1012 = "G1 income source 10 (monthly)" G1_A1013 = "G1 income source 10 (monthly)" G1_A1014 = "G1 income source 10 (monthly)" G1_A1015 = "G1 income source 10 (monthly)" G1_A1016 = "G1 income source 10 (monthly)" G1_A1017 = "G1 income source 10 (monthly)" G1_A1018 = "G1 income source 10 (monthly)" G1_A1019 = "G1 income source 10 (monthly)" G1_A1020 = "G1 income source 10 (monthly)" G1_A1021 = "G1 income source 10 (monthly)" G1_A1022 = "G1 income source 10 (monthly)" G1_A1023 = "G1 income source 10 (monthly)" G1_A1024 = "G1 income source 10 (monthly)" G1_A1025 = "G1 income source 10 (monthly)" G1_A1026 = "G1 income source 10 (monthly)" G1_A1027 = "G1 income source 10 (monthly)" G1_A1028 = "G1 income source 10 (monthly)" G1_A1029 = "G1 income source 10 (monthly)" G1_A1030 = "G1 income source 10 (monthly)" G1_A1031 = "G1 income source 10 (monthly)" G1_A1032 = "G1 income source 10 (monthly)" SSRECIN1 = "Social security recipiency indicator" SSRECIN2 = "Social security recipiency indicator" SSRECIN3 = "Social security recipiency indicator" SSRECIN4 = "Social security recipiency indicator" SSRECIN5 = "Social security recipiency indicator" SSRECIN6 = "Social security recipiency indicator" SSRECIN7 = "Social security recipiency indicator" SSRECIN8 = "Social security recipiency indicator" RRRECIN1 = "Railroad retirement recipiency indicat" RRRECIN2 = "Railroad retirement recipiency indicat" RRRECIN3 = "Railroad retirement recipiency indicat" RRRECIN4 = "Railroad retirement recipiency indicat" RRRECIN5 = "Railroad retirement recipiency indicat" RRRECIN6 = "Railroad retirement recipiency indicat" RRRECIN7 = "Railroad retirement recipiency indicat" RRRECIN8 = "Railroad retirement recipiency indicat" VET3060 = "Required to fill out an annual VA inco" AST1001 = "ISS Asset Code 100 - savings accounts" AST1002 = "ISS Asset Code 100 - savings accounts" AST1003 = "ISS Asset Code 100 - savings accounts" AST1004 = "ISS Asset Code 100 - savings accounts" AST1005 = "ISS Asset Code 100 - savings accounts" AST1006 = "ISS Asset Code 100 - savings accounts" AST1007 = "ISS Asset Code 100 - savings accounts" AST1008 = "ISS Asset Code 100 - savings accounts" AST1011 = "ISS Asset Code 101 - money market" AST1012 = "ISS Asset Code 101 - money market" AST1013 = "ISS Asset Code 101 - money market" AST1014 = "ISS Asset Code 101 - money market" AST1015 = "ISS Asset Code 101 - money market" AST1016 = "ISS Asset Code 101 - money market" AST1017 = "ISS Asset Code 101 - money market" AST1018 = "ISS Asset Code 101 - money market" AST1021 = "ISS Asset Code 102 - certificates of" AST1022 = "ISS Asset Code 102 - certificates of" AST1023 = "ISS Asset Code 102 - certificates of" AST1024 = "ISS Asset Code 102 - certificates of" AST1025 = "ISS Asset Code 102 - certificates of" AST1026 = "ISS Asset Code 102 - certificates of" AST1027 = "ISS Asset Code 102 - certificates of" AST1028 = "ISS Asset Code 102 - certificates of" AST1031 = "ISS Asset Code 103 - NOW accounts" AST1032 = "ISS Asset Code 103 - NOW accounts" AST1033 = "ISS Asset Code 103 - NOW accounts" AST1034 = "ISS Asset Code 103 - NOW accounts" AST1035 = "ISS Asset Code 103 - NOW accounts" AST1036 = "ISS Asset Code 103 - NOW accounts" AST1037 = "ISS Asset Code 103 - NOW accounts" AST1038 = "ISS Asset Code 103 - NOW accounts" AST1041 = "ISS Asset Code 104 - money market fund" AST1042 = "ISS Asset Code 104 - money market fund" AST1043 = "ISS Asset Code 104 - money market fund" AST1044 = "ISS Asset Code 104 - money market fund" AST1045 = "ISS Asset Code 104 - money market fund" AST1046 = "ISS Asset Code 104 - money market fund" AST1047 = "ISS Asset Code 104 - money market fund" AST1048 = "ISS Asset Code 104 - money market fund" AST1051 = "ISS Asset Code 105 - U.S. government" AST1052 = "ISS Asset Code 105 - U.S. government" AST1053 = "ISS Asset Code 105 - U.S. government" AST1054 = "ISS Asset Code 105 - U.S. government" AST1055 = "ISS Asset Code 105 - U.S. government" AST1056 = "ISS Asset Code 105 - U.S. government" AST1057 = "ISS Asset Code 105 - U.S. government" AST1058 = "ISS Asset Code 105 - U.S. government" AST1061 = "ISS Asset Code 106 municipal or" AST1062 = "ISS Asset Code 106 municipal or" AST1063 = "ISS Asset Code 106 municipal or" AST1064 = "ISS Asset Code 106 municipal or" AST1065 = "ISS Asset Code 106 municipal or" AST1066 = "ISS Asset Code 106 municipal or" AST1067 = "ISS Asset Code 106 municipal or" AST1068 = "ISS Asset Code 106 municipal or" AST1071 = "ISS Asset Code 107, other interest" AST1072 = "ISS Asset Code 107, other interest" AST1073 = "ISS Asset Code 107, other interest" AST1074 = "ISS Asset Code 107, other interest" AST1075 = "ISS Asset Code 107, other interest" AST1076 = "ISS Asset Code 107, other interest" AST1077 = "ISS Asset Code 107, other interest" AST1078 = "ISS Asset Code 107, other interest" AST1101 = "ISS Asset Code 110 - stocks" AST1102 = "ISS Asset Code 110 - stocks" AST1103 = "ISS Asset Code 110 - stocks" AST1104 = "ISS Asset Code 110 - stocks" AST1105 = "ISS Asset Code 110 - stocks" AST1106 = "ISS Asset Code 110 - stocks" AST1107 = "ISS Asset Code 110 - stocks" AST1108 = "ISS Asset Code 110 - stocks" AST1201 = "ISS Asset Code 120 - rental property" AST1202 = "ISS Asset Code 120 - rental property" AST1203 = "ISS Asset Code 120 - rental property" AST1204 = "ISS Asset Code 120 - rental property" AST1205 = "ISS Asset Code 120 - rental property" AST1206 = "ISS Asset Code 120 - rental property" AST1207 = "ISS Asset Code 120 - rental property" AST1208 = "ISS Asset Code 120 - rental property" AST1301 = "Iss Asset Code 130 - mortgages" AST1302 = "Iss Asset Code 130 - mortgages" AST1303 = "Iss Asset Code 130 - mortgages" AST1304 = "Iss Asset Code 130 - mortgages" AST1305 = "Iss Asset Code 130 - mortgages" AST1306 = "Iss Asset Code 130 - mortgages" AST1307 = "Iss Asset Code 130 - mortgages" AST1308 = "Iss Asset Code 130 - mortgages" AST1401 = "Iss Asset Code 140 - royalties" AST1402 = "Iss Asset Code 140 - royalties" AST1403 = "Iss Asset Code 140 - royalties" AST1404 = "Iss Asset Code 140 - royalties" AST1405 = "Iss Asset Code 140 - royalties" AST1406 = "Iss Asset Code 140 - royalties" AST1407 = "Iss Asset Code 140 - royalties" AST1408 = "Iss Asset Code 140 - royalties" AST1501 = "Iss Asset Code 150 - other financial" AST1502 = "Iss Asset Code 150 - other financial" AST1503 = "Iss Asset Code 150 - other financial" AST1504 = "Iss Asset Code 150 - other financial" AST1505 = "Iss Asset Code 150 - other financial" AST1506 = "Iss Asset Code 150 - other financial" AST1507 = "Iss Asset Code 150 - other financial" AST1508 = "Iss Asset Code 150 - other financial" G2SRC100 = "G2 interest from savings, money market" G2SRC104 = "G2 interest, money market funds, gov.s" G2SRC110 = "G2 dividends from stocks or mutual fun" G2SRC120 = "Net income from the rental of" G2SRC130 = "G2 interest income from mortgages" G2SRC140 = "G2 income from royalties and other" G2A10001 = "Income from savings accounts" G2A10002 = "Income from savings accounts" G2A10003 = "Income from savings accounts" G2A10004 = "Income from savings accounts" G2A10005 = "Income from savings accounts" G2A10006 = "Income from savings accounts" G2A10007 = "Income from savings accounts" G2A10008 = "Income from savings accounts" G2A10009 = "Income from savings accounts" G2A10010 = "Income from savings accounts" G2A10011 = "Income from savings accounts" G2A10012 = "Income from savings accounts" G2A10013 = "Income from savings accounts" G2A10014 = "Income from savings accounts" G2A10015 = "Income from savings accounts" G2A10016 = "Income from savings accounts" G2A10017 = "Income from savings accounts" G2A10018 = "Income from savings accounts" G2A10019 = "Income from savings accounts" G2A10020 = "Income from savings accounts" G2A10021 = "Income from savings accounts" G2A10022 = "Income from savings accounts" G2A10023 = "Income from savings accounts" G2A10024 = "Income from savings accounts" G2A10025 = "Income from savings accounts" G2A10026 = "Income from savings accounts" G2A10027 = "Income from savings accounts" G2A10028 = "Income from savings accounts" G2A10029 = "Income from savings accounts" G2A10030 = "Income from savings accounts" G2A10031 = "Income from savings accounts" G2A10032 = "Income from savings accounts" G2A10401 = "G2 income mm funds, secur, bonds, othe" G2A10402 = "G2 income mm funds, secur, bonds, othe" G2A10403 = "G2 income mm funds, secur, bonds, othe" G2A10404 = "G2 income mm funds, secur, bonds, othe" G2A10405 = "G2 income mm funds, secur, bonds, othe" G2A10406 = "G2 income mm funds, secur, bonds, othe" G2A10407 = "G2 income mm funds, secur, bonds, othe" G2A10408 = "G2 income mm funds, secur, bonds, othe" G2A10409 = "G2 income mm funds, secur, bonds, othe" G2A10410 = "G2 income mm funds, secur, bonds, othe" G2A10411 = "G2 income mm funds, secur, bonds, othe" G2A10412 = "G2 income mm funds, secur, bonds, othe" G2A10413 = "G2 income mm funds, secur, bonds, othe" G2A10414 = "G2 income mm funds, secur, bonds, othe" G2A10415 = "G2 income mm funds, secur, bonds, othe" G2A10416 = "G2 income mm funds, secur, bonds, othe" G2A10417 = "G2 income mm funds, secur, bonds, othe" G2A10418 = "G2 income mm funds, secur, bonds, othe" G2A10419 = "G2 income mm funds, secur, bonds, othe" G2A10420 = "G2 income mm funds, secur, bonds, othe" G2A10421 = "G2 income mm funds, secur, bonds, othe" G2A10422 = "G2 income mm funds, secur, bonds, othe" G2A10423 = "G2 income mm funds, secur, bonds, othe" G2A10424 = "G2 income mm funds, secur, bonds, othe" G2A10425 = "G2 income mm funds, secur, bonds, othe" G2A10426 = "G2 income mm funds, secur, bonds, othe" G2A10427 = "G2 income mm funds, secur, bonds, othe" G2A10428 = "G2 income mm funds, secur, bonds, othe" G2A10429 = "G2 income mm funds, secur, bonds, othe" G2A10430 = "G2 income mm funds, secur, bonds, othe" G2A10431 = "G2 income mm funds, secur, bonds, othe" G2A10432 = "G2 income mm funds, secur, bonds, othe" G2A11001 = "G2 income stocks,mutual shares (110)" G2A11002 = "G2 income stocks,mutual shares (110)" G2A11003 = "G2 income stocks,mutual shares (110)" G2A11004 = "G2 income stocks,mutual shares (110)" G2A11005 = "G2 income stocks,mutual shares (110)" G2A11006 = "G2 income stocks,mutual shares (110)" G2A11007 = "G2 income stocks,mutual shares (110)" G2A11008 = "G2 income stocks,mutual shares (110)" G2A11009 = "G2 income stocks,mutual shares (110)" G2A11010 = "G2 income stocks,mutual shares (110)" G2A11011 = "G2 income stocks,mutual shares (110)" G2A11012 = "G2 income stocks,mutual shares (110)" G2A11013 = "G2 income stocks,mutual shares (110)" G2A11014 = "G2 income stocks,mutual shares (110)" G2A11015 = "G2 income stocks,mutual shares (110)" G2A11016 = "G2 income stocks,mutual shares (110)" G2A11017 = "G2 income stocks,mutual shares (110)" G2A11018 = "G2 income stocks,mutual shares (110)" G2A11019 = "G2 income stocks,mutual shares (110)" G2A11020 = "G2 income stocks,mutual shares (110)" G2A11021 = "G2 income stocks,mutual shares (110)" G2A11022 = "G2 income stocks,mutual shares (110)" G2A11023 = "G2 income stocks,mutual shares (110)" G2A11024 = "G2 income stocks,mutual shares (110)" G2A11025 = "G2 income stocks,mutual shares (110)" G2A11026 = "G2 income stocks,mutual shares (110)" G2A11027 = "G2 income stocks,mutual shares (110)" G2A11028 = "G2 income stocks,mutual shares (110)" G2A11029 = "G2 income stocks,mutual shares (110)" G2A11030 = "G2 income stocks,mutual shares (110)" G2A11031 = "G2 income stocks,mutual shares (110)" G2A11032 = "G2 income stocks,mutual shares (110)" G2A12001 = "G2 income from rental property (120)" G2A12002 = "G2 income from rental property (120)" G2A12003 = "G2 income from rental property (120)" G2A12004 = "G2 income from rental property (120)" G2A12005 = "G2 income from rental property (120)" G2A12006 = "G2 income from rental property (120)" G2A12007 = "G2 income from rental property (120)" G2A12008 = "G2 income from rental property (120)" G2A12009 = "G2 income from rental property (120)" G2A12010 = "G2 income from rental property (120)" G2A12011 = "G2 income from rental property (120)" G2A12012 = "G2 income from rental property (120)" G2A12013 = "G2 income from rental property (120)" G2A12014 = "G2 income from rental property (120)" G2A12015 = "G2 income from rental property (120)" G2A12016 = "G2 income from rental property (120)" G2A12017 = "G2 income from rental property (120)" G2A12018 = "G2 income from rental property (120)" G2A12019 = "G2 income from rental property (120)" G2A12020 = "G2 income from rental property (120)" G2A12021 = "G2 income from rental property (120)" G2A12022 = "G2 income from rental property (120)" G2A12023 = "G2 income from rental property (120)" G2A12024 = "G2 income from rental property (120)" G2A12025 = "G2 income from rental property (120)" G2A12026 = "G2 income from rental property (120)" G2A12027 = "G2 income from rental property (120)" G2A12028 = "G2 income from rental property (120)" G2A12029 = "G2 income from rental property (120)" G2A12030 = "G2 income from rental property (120)" G2A12031 = "G2 income from rental property (120)" G2A12032 = "G2 income from rental property (120)" G2A13001 = "G2 income from mortgages held (130)" G2A13002 = "G2 income from mortgages held (130)" G2A13003 = "G2 income from mortgages held (130)" G2A13004 = "G2 income from mortgages held (130)" G2A13005 = "G2 income from mortgages held (130)" G2A13006 = "G2 income from mortgages held (130)" G2A13007 = "G2 income from mortgages held (130)" G2A13008 = "G2 income from mortgages held (130)" G2A13009 = "G2 income from mortgages held (130)" G2A13010 = "G2 income from mortgages held (130)" G2A13011 = "G2 income from mortgages held (130)" G2A13012 = "G2 income from mortgages held (130)" G2A13013 = "G2 income from mortgages held (130)" G2A13014 = "G2 income from mortgages held (130)" G2A13015 = "G2 income from mortgages held (130)" G2A13016 = "G2 income from mortgages held (130)" G2A13017 = "G2 income from mortgages held (130)" G2A13018 = "G2 income from mortgages held (130)" G2A13019 = "G2 income from mortgages held (130)" G2A13020 = "G2 income from mortgages held (130)" G2A13021 = "G2 income from mortgages held (130)" G2A13022 = "G2 income from mortgages held (130)" G2A13023 = "G2 income from mortgages held (130)" G2A13024 = "G2 income from mortgages held (130)" G2A13025 = "G2 income from mortgages held (130)" G2A13026 = "G2 income from mortgages held (130)" G2A13027 = "G2 income from mortgages held (130)" G2A13028 = "G2 income from mortgages held (130)" G2A13029 = "G2 income from mortgages held (130)" G2A13030 = "G2 income from mortgages held (130)" G2A13031 = "G2 income from mortgages held (130)" G2A13032 = "G2 income from mortgages held (130)" G2A14001 = "G2 income royalties and other financia" G2A14002 = "G2 income royalties and other financia" G2A14003 = "G2 income royalties and other financia" G2A14004 = "G2 income royalties and other financia" G2A14005 = "G2 income royalties and other financia" G2A14006 = "G2 income royalties and other financia" G2A14007 = "G2 income royalties and other financia" G2A14008 = "G2 income royalties and other financia" G2A14009 = "G2 income royalties and other financia" G2A14010 = "G2 income royalties and other financia" G2A14011 = "G2 income royalties and other financia" G2A14012 = "G2 income royalties and other financia" G2A14013 = "G2 income royalties and other financia" G2A14014 = "G2 income royalties and other financia" G2A14015 = "G2 income royalties and other financia" G2A14016 = "G2 income royalties and other financia" G2A14017 = "G2 income royalties and other financia" G2A14018 = "G2 income royalties and other financia" G2A14019 = "G2 income royalties and other financia" G2A14020 = "G2 income royalties and other financia" G2A14021 = "G2 income royalties and other financia" G2A14022 = "G2 income royalties and other financia" G2A14023 = "G2 income royalties and other financia" G2A14024 = "G2 income royalties and other financia" G2A14025 = "G2 income royalties and other financia" G2A14026 = "G2 income royalties and other financia" G2A14027 = "G2 income royalties and other financia" G2A14028 = "G2 income royalties and other financia" G2A14029 = "G2 income royalties and other financia" G2A14030 = "G2 income royalties and other financia" G2A14031 = "G2 income royalties and other financia" G2A14032 = "G2 income royalties and other financia" CARECO01 = "Covered by medicare (monthly)" CARECO02 = "Covered by medicare (monthly)" CARECO03 = "Covered by medicare (monthly)" CARECO04 = "Covered by medicare (monthly)" CARECO05 = "Covered by medicare (monthly)" CARECO06 = "Covered by medicare (monthly)" CARECO07 = "Covered by medicare (monthly)" CARECO08 = "Covered by medicare (monthly)" CARECO09 = "Covered by medicare (monthly)" CARECO10 = "Covered by medicare (monthly)" CARECO11 = "Covered by medicare (monthly)" CARECO12 = "Covered by medicare (monthly)" CARECO13 = "Covered by medicare (monthly)" CARECO14 = "Covered by medicare (monthly)" CARECO15 = "Covered by medicare (monthly)" CARECO16 = "Covered by medicare (monthly)" CARECO17 = "Covered by medicare (monthly)" CARECO18 = "Covered by medicare (monthly)" CARECO19 = "Covered by medicare (monthly)" CARECO20 = "Covered by medicare (monthly)" CARECO21 = "Covered by medicare (monthly)" CARECO22 = "Covered by medicare (monthly)" CARECO23 = "Covered by medicare (monthly)" CARECO24 = "Covered by medicare (monthly)" CARECO25 = "Covered by medicare (monthly)" CARECO26 = "Covered by medicare (monthly)" CARECO27 = "Covered by medicare (monthly)" CARECO28 = "Covered by medicare (monthly)" CARECO29 = "Covered by medicare (monthly)" CARECO30 = "Covered by medicare (monthly)" CARECO31 = "Covered by medicare (monthly)" CARECO32 = "Covered by medicare (monthly)" CAIDCO01 = "Covered by medicaid (monthly)" CAIDCO02 = "Covered by medicaid (monthly)" CAIDCO03 = "Covered by medicaid (monthly)" CAIDCO04 = "Covered by medicaid (monthly)" CAIDCO05 = "Covered by medicaid (monthly)" CAIDCO06 = "Covered by medicaid (monthly)" CAIDCO07 = "Covered by medicaid (monthly)" CAIDCO08 = "Covered by medicaid (monthly)" CAIDCO09 = "Covered by medicaid (monthly)" CAIDCO10 = "Covered by medicaid (monthly)" CAIDCO11 = "Covered by medicaid (monthly)" CAIDCO12 = "Covered by medicaid (monthly)" CAIDCO13 = "Covered by medicaid (monthly)" CAIDCO14 = "Covered by medicaid (monthly)" CAIDCO15 = "Covered by medicaid (monthly)" CAIDCO16 = "Covered by medicaid (monthly)" CAIDCO17 = "Covered by medicaid (monthly)" CAIDCO18 = "Covered by medicaid (monthly)" CAIDCO19 = "Covered by medicaid (monthly)" CAIDCO20 = "Covered by medicaid (monthly)" CAIDCO21 = "Covered by medicaid (monthly)" CAIDCO22 = "Covered by medicaid (monthly)" CAIDCO23 = "Covered by medicaid (monthly)" CAIDCO24 = "Covered by medicaid (monthly)" CAIDCO25 = "Covered by medicaid (monthly)" CAIDCO26 = "Covered by medicaid (monthly)" CAIDCO27 = "Covered by medicaid (monthly)" CAIDCO28 = "Covered by medicaid (monthly)" CAIDCO29 = "Covered by medicaid (monthly)" CAIDCO30 = "Covered by medicaid (monthly)" CAIDCO31 = "Covered by medicaid (monthly)" CAIDCO32 = "Covered by medicaid (monthly)" WICCOV01 = "Covered by WIC (monthly)" WICCOV02 = "Covered by WIC (monthly)" WICCOV03 = "Covered by WIC (monthly)" WICCOV04 = "Covered by WIC (monthly)" WICCOV05 = "Covered by WIC (monthly)" WICCOV06 = "Covered by WIC (monthly)" WICCOV07 = "Covered by WIC (monthly)" WICCOV08 = "Covered by WIC (monthly)" WICCOV09 = "Covered by WIC (monthly)" WICCOV10 = "Covered by WIC (monthly)" WICCOV11 = "Covered by WIC (monthly)" WICCOV12 = "Covered by WIC (monthly)" WICCOV13 = "Covered by WIC (monthly)" WICCOV14 = "Covered by WIC (monthly)" WICCOV15 = "Covered by WIC (monthly)" WICCOV16 = "Covered by WIC (monthly)" WICCOV17 = "Covered by WIC (monthly)" WICCOV18 = "Covered by WIC (monthly)" WICCOV19 = "Covered by WIC (monthly)" WICCOV20 = "Covered by WIC (monthly)" WICCOV21 = "Covered by WIC (monthly)" WICCOV22 = "Covered by WIC (monthly)" WICCOV23 = "Covered by WIC (monthly)" WICCOV24 = "Covered by WIC (monthly)" WICCOV25 = "Covered by WIC (monthly)" WICCOV26 = "Covered by WIC (monthly)" WICCOV27 = "Covered by WIC (monthly)" WICCOV28 = "Covered by WIC (monthly)" WICCOV29 = "Covered by WIC (monthly)" WICCOV30 = "Covered by WIC (monthly)" WICCOV31 = "Covered by WIC (monthly)" WICCOV32 = "Covered by WIC (monthly)" AFDC_01 = "Covered by AFDC (monthly)" AFDC_02 = "Covered by AFDC (monthly)" AFDC_03 = "Covered by AFDC (monthly)" AFDC_04 = "Covered by AFDC (monthly)" AFDC_05 = "Covered by AFDC (monthly)" AFDC_06 = "Covered by AFDC (monthly)" AFDC_07 = "Covered by AFDC (monthly)" AFDC_08 = "Covered by AFDC (monthly)" AFDC_09 = "Covered by AFDC (monthly)" AFDC_10 = "Covered by AFDC (monthly)" AFDC_11 = "Covered by AFDC (monthly)" AFDC_12 = "Covered by AFDC (monthly)" AFDC_13 = "Covered by AFDC (monthly)" AFDC_14 = "Covered by AFDC (monthly)" AFDC_15 = "Covered by AFDC (monthly)" AFDC_16 = "Covered by AFDC (monthly)" AFDC_17 = "Covered by AFDC (monthly)" AFDC_18 = "Covered by AFDC (monthly)" AFDC_19 = "Covered by AFDC (monthly)" AFDC_20 = "Covered by AFDC (monthly)" AFDC_21 = "Covered by AFDC (monthly)" AFDC_22 = "Covered by AFDC (monthly)" AFDC_23 = "Covered by AFDC (monthly)" AFDC_24 = "Covered by AFDC (monthly)" AFDC_25 = "Covered by AFDC (monthly)" AFDC_26 = "Covered by AFDC (monthly)" AFDC_27 = "Covered by AFDC (monthly)" AFDC_28 = "Covered by AFDC (monthly)" AFDC_29 = "Covered by AFDC (monthly)" AFDC_30 = "Covered by AFDC (monthly)" AFDC_31 = "Covered by AFDC (monthly)" AFDC_32 = "Covered by AFDC (monthly)" FOODST01 = "Covered by food stamps (monthly)" FOODST02 = "Covered by food stamps (monthly)" FOODST03 = "Covered by food stamps (monthly)" FOODST04 = "Covered by food stamps (monthly)" FOODST05 = "Covered by food stamps (monthly)" FOODST06 = "Covered by food stamps (monthly)" FOODST07 = "Covered by food stamps (monthly)" FOODST08 = "Covered by food stamps (monthly)" FOODST09 = "Covered by food stamps (monthly)" FOODST10 = "Covered by food stamps (monthly)" FOODST11 = "Covered by food stamps (monthly)" FOODST12 = "Covered by food stamps (monthly)" FOODST13 = "Covered by food stamps (monthly)" FOODST14 = "Covered by food stamps (monthly)" FOODST15 = "Covered by food stamps (monthly)" FOODST16 = "Covered by food stamps (monthly)" FOODST17 = "Covered by food stamps (monthly)" FOODST18 = "Covered by food stamps (monthly)" FOODST19 = "Covered by food stamps (monthly)" FOODST20 = "Covered by food stamps (monthly)" FOODST21 = "Covered by food stamps (monthly)" FOODST22 = "Covered by food stamps (monthly)" FOODST23 = "Covered by food stamps (monthly)" FOODST24 = "Covered by food stamps (monthly)" FOODST25 = "Covered by food stamps (monthly)" FOODST26 = "Covered by food stamps (monthly)" FOODST27 = "Covered by food stamps (monthly)" FOODST28 = "Covered by food stamps (monthly)" FOODST29 = "Covered by food stamps (monthly)" FOODST30 = "Covered by food stamps (monthly)" FOODST31 = "Covered by food stamps (monthly)" FOODST32 = "Covered by food stamps (monthly)" GEN_AS01 = "Covered by any general assistance" GEN_AS02 = "Covered by any general assistance" GEN_AS03 = "Covered by any general assistance" GEN_AS04 = "Covered by any general assistance" GEN_AS05 = "Covered by any general assistance" GEN_AS06 = "Covered by any general assistance" GEN_AS07 = "Covered by any general assistance" GEN_AS08 = "Covered by any general assistance" GEN_AS09 = "Covered by any general assistance" GEN_AS10 = "Covered by any general assistance" GEN_AS11 = "Covered by any general assistance" GEN_AS12 = "Covered by any general assistance" GEN_AS13 = "Covered by any general assistance" GEN_AS14 = "Covered by any general assistance" GEN_AS15 = "Covered by any general assistance" GEN_AS16 = "Covered by any general assistance" GEN_AS17 = "Covered by any general assistance" GEN_AS18 = "Covered by any general assistance" GEN_AS19 = "Covered by any general assistance" GEN_AS20 = "Covered by any general assistance" GEN_AS21 = "Covered by any general assistance" GEN_AS22 = "Covered by any general assistance" GEN_AS23 = "Covered by any general assistance" GEN_AS24 = "Covered by any general assistance" GEN_AS25 = "Covered by any general assistance" GEN_AS26 = "Covered by any general assistance" GEN_AS27 = "Covered by any general assistance" GEN_AS28 = "Covered by any general assistance" GEN_AS29 = "Covered by any general assistance" GEN_AS30 = "Covered by any general assistance" GEN_AS31 = "Covered by any general assistance" GEN_AS32 = "Covered by any general assistance" FOST_K01 = "Covered by any foster child care" FOST_K02 = "Covered by any foster child care" FOST_K03 = "Covered by any foster child care" FOST_K04 = "Covered by any foster child care" FOST_K05 = "Covered by any foster child care" FOST_K06 = "Covered by any foster child care" FOST_K07 = "Covered by any foster child care" FOST_K08 = "Covered by any foster child care" FOST_K09 = "Covered by any foster child care" FOST_K10 = "Covered by any foster child care" FOST_K11 = "Covered by any foster child care" FOST_K12 = "Covered by any foster child care" FOST_K13 = "Covered by any foster child care" FOST_K14 = "Covered by any foster child care" FOST_K15 = "Covered by any foster child care" FOST_K16 = "Covered by any foster child care" FOST_K17 = "Covered by any foster child care" FOST_K18 = "Covered by any foster child care" FOST_K19 = "Covered by any foster child care" FOST_K20 = "Covered by any foster child care" FOST_K21 = "Covered by any foster child care" FOST_K22 = "Covered by any foster child care" FOST_K23 = "Covered by any foster child care" FOST_K24 = "Covered by any foster child care" FOST_K25 = "Covered by any foster child care" FOST_K26 = "Covered by any foster child care" FOST_K27 = "Covered by any foster child care" FOST_K28 = "Covered by any foster child care" FOST_K29 = "Covered by any foster child care" FOST_K30 = "Covered by any foster child care" FOST_K31 = "Covered by any foster child care" FOST_K32 = "Covered by any foster child care" OTH_WE01 = "Covered by any other welfare payments" OTH_WE02 = "Covered by any other welfare payments" OTH_WE03 = "Covered by any other welfare payments" OTH_WE04 = "Covered by any other welfare payments" OTH_WE05 = "Covered by any other welfare payments" OTH_WE06 = "Covered by any other welfare payments" OTH_WE07 = "Covered by any other welfare payments" OTH_WE08 = "Covered by any other welfare payments" OTH_WE09 = "Covered by any other welfare payments" OTH_WE10 = "Covered by any other welfare payments" OTH_WE11 = "Covered by any other welfare payments" OTH_WE12 = "Covered by any other welfare payments" OTH_WE13 = "Covered by any other welfare payments" OTH_WE14 = "Covered by any other welfare payments" OTH_WE15 = "Covered by any other welfare payments" OTH_WE16 = "Covered by any other welfare payments" OTH_WE17 = "Covered by any other welfare payments" OTH_WE18 = "Covered by any other welfare payments" OTH_WE19 = "Covered by any other welfare payments" OTH_WE20 = "Covered by any other welfare payments" OTH_WE21 = "Covered by any other welfare payments" OTH_WE22 = "Covered by any other welfare payments" OTH_WE23 = "Covered by any other welfare payments" OTH_WE24 = "Covered by any other welfare payments" OTH_WE25 = "Covered by any other welfare payments" OTH_WE26 = "Covered by any other welfare payments" OTH_WE27 = "Covered by any other welfare payments" OTH_WE28 = "Covered by any other welfare payments" OTH_WE29 = "Covered by any other welfare payments" OTH_WE30 = "Covered by any other welfare payments" OTH_WE31 = "Covered by any other welfare payments" OTH_WE32 = "Covered by any other welfare payments" SOC_SE01 = "Covered by social security payments" SOC_SE02 = "Covered by social security payments" SOC_SE03 = "Covered by social security payments" SOC_SE04 = "Covered by social security payments" SOC_SE05 = "Covered by social security payments" SOC_SE06 = "Covered by social security payments" SOC_SE07 = "Covered by social security payments" SOC_SE08 = "Covered by social security payments" SOC_SE09 = "Covered by social security payments" SOC_SE10 = "Covered by social security payments" SOC_SE11 = "Covered by social security payments" SOC_SE12 = "Covered by social security payments" SOC_SE13 = "Covered by social security payments" SOC_SE14 = "Covered by social security payments" SOC_SE15 = "Covered by social security payments" SOC_SE16 = "Covered by social security payments" SOC_SE17 = "Covered by social security payments" SOC_SE18 = "Covered by social security payments" SOC_SE19 = "Covered by social security payments" SOC_SE20 = "Covered by social security payments" SOC_SE21 = "Covered by social security payments" SOC_SE22 = "Covered by social security payments" SOC_SE23 = "Covered by social security payments" SOC_SE24 = "Covered by social security payments" SOC_SE25 = "Covered by social security payments" SOC_SE26 = "Covered by social security payments" SOC_SE27 = "Covered by social security payments" SOC_SE28 = "Covered by social security payments" SOC_SE29 = "Covered by social security payments" SOC_SE30 = "Covered by social security payments" SOC_SE31 = "Covered by social security payments" SOC_SE32 = "Covered by social security payments" RAILRD01 = "Covered by railroad retirement payment" RAILRD02 = "Covered by railroad retirement payment" RAILRD03 = "Covered by railroad retirement payment" RAILRD04 = "Covered by railroad retirement payment" RAILRD05 = "Covered by railroad retirement payment" RAILRD06 = "Covered by railroad retirement payment" RAILRD07 = "Covered by railroad retirement payment" RAILRD08 = "Covered by railroad retirement payment" RAILRD09 = "Covered by railroad retirement payment" RAILRD10 = "Covered by railroad retirement payment" RAILRD11 = "Covered by railroad retirement payment" RAILRD12 = "Covered by railroad retirement payment" RAILRD13 = "Covered by railroad retirement payment" RAILRD14 = "Covered by railroad retirement payment" RAILRD15 = "Covered by railroad retirement payment" RAILRD16 = "Covered by railroad retirement payment" RAILRD17 = "Covered by railroad retirement payment" RAILRD18 = "Covered by railroad retirement payment" RAILRD19 = "Covered by railroad retirement payment" RAILRD20 = "Covered by railroad retirement payment" RAILRD21 = "Covered by railroad retirement payment" RAILRD22 = "Covered by railroad retirement payment" RAILRD23 = "Covered by railroad retirement payment" RAILRD24 = "Covered by railroad retirement payment" RAILRD25 = "Covered by railroad retirement payment" RAILRD26 = "Covered by railroad retirement payment" RAILRD27 = "Covered by railroad retirement payment" RAILRD28 = "Covered by railroad retirement payment" RAILRD29 = "Covered by railroad retirement payment" RAILRD30 = "Covered by railroad retirement payment" RAILRD31 = "Covered by railroad retirement payment" RAILRD32 = "Covered by railroad retirement payment" VETS_01 = "Covered by veterans payments (monthly)" VETS_02 = "Covered by veterans payments (monthly)" VETS_03 = "Covered by veterans payments (monthly)" VETS_04 = "Covered by veterans payments (monthly)" VETS_05 = "Covered by veterans payments (monthly)" VETS_06 = "Covered by veterans payments (monthly)" VETS_07 = "Covered by veterans payments (monthly)" VETS_08 = "Covered by veterans payments (monthly)" VETS_09 = "Covered by veterans payments (monthly)" VETS_10 = "Covered by veterans payments (monthly)" VETS_11 = "Covered by veterans payments (monthly)" VETS_12 = "Covered by veterans payments (monthly)" VETS_13 = "Covered by veterans payments (monthly)" VETS_14 = "Covered by veterans payments (monthly)" VETS_15 = "Covered by veterans payments (monthly)" VETS_16 = "Covered by veterans payments (monthly)" VETS_17 = "Covered by veterans payments (monthly)" VETS_18 = "Covered by veterans payments (monthly)" VETS_19 = "Covered by veterans payments (monthly)" VETS_20 = "Covered by veterans payments (monthly)" VETS_21 = "Covered by veterans payments (monthly)" VETS_22 = "Covered by veterans payments (monthly)" VETS_23 = "Covered by veterans payments (monthly)" VETS_24 = "Covered by veterans payments (monthly)" VETS_25 = "Covered by veterans payments (monthly)" VETS_26 = "Covered by veterans payments (monthly)" VETS_27 = "Covered by veterans payments (monthly)" VETS_28 = "Covered by veterans payments (monthly)" VETS_29 = "Covered by veterans payments (monthly)" VETS_30 = "Covered by veterans payments (monthly)" VETS_31 = "Covered by veterans payments (monthly)" VETS_32 = "Covered by veterans payments (monthly)" CHAMPU01 = "Covered by CHAMPUS payments (monthly)" CHAMPU02 = "Covered by CHAMPUS payments (monthly)" CHAMPU03 = "Covered by CHAMPUS payments (monthly)" CHAMPU04 = "Covered by CHAMPUS payments (monthly)" CHAMPU05 = "Covered by CHAMPUS payments (monthly)" CHAMPU06 = "Covered by CHAMPUS payments (monthly)" CHAMPU07 = "Covered by CHAMPUS payments (monthly)" CHAMPU08 = "Covered by CHAMPUS payments (monthly)" CHAMPU09 = "Covered by CHAMPUS payments (monthly)" CHAMPU10 = "Covered by CHAMPUS payments (monthly)" CHAMPU11 = "Covered by CHAMPUS payments (monthly)" CHAMPU12 = "Covered by CHAMPUS payments (monthly)" CHAMPU13 = "Covered by CHAMPUS payments (monthly)" CHAMPU14 = "Covered by CHAMPUS payments (monthly)" CHAMPU15 = "Covered by CHAMPUS payments (monthly)" CHAMPU16 = "Covered by CHAMPUS payments (monthly)" CHAMPU17 = "Covered by CHAMPUS payments (monthly)" CHAMPU18 = "Covered by CHAMPUS payments (monthly)" CHAMPU19 = "Covered by CHAMPUS payments (monthly)" CHAMPU20 = "Covered by CHAMPUS payments (monthly)" CHAMPU21 = "Covered by CHAMPUS payments (monthly)" CHAMPU22 = "Covered by CHAMPUS payments (monthly)" CHAMPU23 = "Covered by CHAMPUS payments (monthly)" CHAMPU24 = "Covered by CHAMPUS payments (monthly)" CHAMPU25 = "Covered by CHAMPUS payments (monthly)" CHAMPU26 = "Covered by CHAMPUS payments (monthly)" CHAMPU27 = "Covered by CHAMPUS payments (monthly)" CHAMPU28 = "Covered by CHAMPUS payments (monthly)" CHAMPU29 = "Covered by CHAMPUS payments (monthly)" CHAMPU30 = "Covered by CHAMPUS payments (monthly)" CHAMPU31 = "Covered by CHAMPUS payments (monthly)" CHAMPU32 = "Covered by CHAMPUS payments (monthly)" CHAMPV01 = "Covered by CHAMPVA payments (monthly)" CHAMPV02 = "Covered by CHAMPVA payments (monthly)" CHAMPV03 = "Covered by CHAMPVA payments (monthly)" CHAMPV04 = "Covered by CHAMPVA payments (monthly)" CHAMPV05 = "Covered by CHAMPVA payments (monthly)" CHAMPV06 = "Covered by CHAMPVA payments (monthly)" CHAMPV07 = "Covered by CHAMPVA payments (monthly)" CHAMPV08 = "Covered by CHAMPVA payments (monthly)" CHAMPV09 = "Covered by CHAMPVA payments (monthly)" CHAMPV10 = "Covered by CHAMPVA payments (monthly)" CHAMPV11 = "Covered by CHAMPVA payments (monthly)" CHAMPV12 = "Covered by CHAMPVA payments (monthly)" CHAMPV13 = "Covered by CHAMPVA payments (monthly)" CHAMPV14 = "Covered by CHAMPVA payments (monthly)" CHAMPV15 = "Covered by CHAMPVA payments (monthly)" CHAMPV16 = "Covered by CHAMPVA payments (monthly)" CHAMPV17 = "Covered by CHAMPVA payments (monthly)" CHAMPV18 = "Covered by CHAMPVA payments (monthly)" CHAMPV19 = "Covered by CHAMPVA payments (monthly)" CHAMPV20 = "Covered by CHAMPVA payments (monthly)" CHAMPV21 = "Covered by CHAMPVA payments (monthly)" CHAMPV22 = "Covered by CHAMPVA payments (monthly)" CHAMPV23 = "Covered by CHAMPVA payments (monthly)" CHAMPV24 = "Covered by CHAMPVA payments (monthly)" CHAMPV25 = "Covered by CHAMPVA payments (monthly)" CHAMPV26 = "Covered by CHAMPVA payments (monthly)" CHAMPV27 = "Covered by CHAMPVA payments (monthly)" CHAMPV28 = "Covered by CHAMPVA payments (monthly)" CHAMPV29 = "Covered by CHAMPVA payments (monthly)" CHAMPV30 = "Covered by CHAMPVA payments (monthly)" CHAMPV31 = "Covered by CHAMPVA payments (monthly)" CHAMPV32 = "Covered by CHAMPVA payments (monthly)" HIOWNC01 = "Covered by private insurance coverage" HIOWNC02 = "Covered by private insurance coverage" HIOWNC03 = "Covered by private insurance coverage" HIOWNC04 = "Covered by private insurance coverage" HIOWNC05 = "Covered by private insurance coverage" HIOWNC06 = "Covered by private insurance coverage" HIOWNC07 = "Covered by private insurance coverage" HIOWNC08 = "Covered by private insurance coverage" HIOWNC09 = "Covered by private insurance coverage" HIOWNC10 = "Covered by private insurance coverage" HIOWNC11 = "Covered by private insurance coverage" HIOWNC12 = "Covered by private insurance coverage" HIOWNC13 = "Covered by private insurance coverage" HIOWNC14 = "Covered by private insurance coverage" HIOWNC15 = "Covered by private insurance coverage" HIOWNC16 = "Covered by private insurance coverage" HIOWNC17 = "Covered by private insurance coverage" HIOWNC18 = "Covered by private insurance coverage" HIOWNC19 = "Covered by private insurance coverage" HIOWNC20 = "Covered by private insurance coverage" HIOWNC21 = "Covered by private insurance coverage" HIOWNC22 = "Covered by private insurance coverage" HIOWNC23 = "Covered by private insurance coverage" HIOWNC24 = "Covered by private insurance coverage" HIOWNC25 = "Covered by private insurance coverage" HIOWNC26 = "Covered by private insurance coverage" HIOWNC27 = "Covered by private insurance coverage" HIOWNC28 = "Covered by private insurance coverage" HIOWNC29 = "Covered by private insurance coverage" HIOWNC30 = "Covered by private insurance coverage" HIOWNC31 = "Covered by private insurance coverage" HIOWNC32 = "Covered by private insurance coverage" HI_OTC01 = "Covered by private insur cov thru some" HI_OTC02 = "Covered by private insur cov thru some" HI_OTC03 = "Covered by private insur cov thru some" HI_OTC04 = "Covered by private insur cov thru some" HI_OTC05 = "Covered by private insur cov thru some" HI_OTC06 = "Covered by private insur cov thru some" HI_OTC07 = "Covered by private insur cov thru some" HI_OTC08 = "Covered by private insur cov thru some" HI_OTC09 = "Covered by private insur cov thru some" HI_OTC10 = "Covered by private insur cov thru some" HI_OTC11 = "Covered by private insur cov thru some" HI_OTC12 = "Covered by private insur cov thru some" HI_OTC13 = "Covered by private insur cov thru some" HI_OTC14 = "Covered by private insur cov thru some" HI_OTC15 = "Covered by private insur cov thru some" HI_OTC16 = "Covered by private insur cov thru some" HI_OTC17 = "Covered by private insur cov thru some" HI_OTC18 = "Covered by private insur cov thru some" HI_OTC19 = "Covered by private insur cov thru some" HI_OTC20 = "Covered by private insur cov thru some" HI_OTC21 = "Covered by private insur cov thru some" HI_OTC22 = "Covered by private insur cov thru some" HI_OTC23 = "Covered by private insur cov thru some" HI_OTC24 = "Covered by private insur cov thru some" HI_OTC25 = "Covered by private insur cov thru some" HI_OTC26 = "Covered by private insur cov thru some" HI_OTC27 = "Covered by private insur cov thru some" HI_OTC28 = "Covered by private insur cov thru some" HI_OTC29 = "Covered by private insur cov thru some" HI_OTC30 = "Covered by private insur cov thru some" HI_OTC31 = "Covered by private insur cov thru some" HI_OTC32 = "Covered by private insur cov thru some" HIEMPL01 = "Covered by prv hlth insurance" HIEMPL02 = "Covered by prv hlth insurance" HIEMPL03 = "Covered by prv hlth insurance" HIEMPL04 = "Covered by prv hlth insurance" HIEMPL05 = "Covered by prv hlth insurance" HIEMPL06 = "Covered by prv hlth insurance" HIEMPL07 = "Covered by prv hlth insurance" HIEMPL08 = "Covered by prv hlth insurance" HIEMPL09 = "Covered by prv hlth insurance" HIEMPL10 = "Covered by prv hlth insurance" HIEMPL11 = "Covered by prv hlth insurance" HIEMPL12 = "Covered by prv hlth insurance" HIEMPL13 = "Covered by prv hlth insurance" HIEMPL14 = "Covered by prv hlth insurance" HIEMPL15 = "Covered by prv hlth insurance" HIEMPL16 = "Covered by prv hlth insurance" HIEMPL17 = "Covered by prv hlth insurance" HIEMPL18 = "Covered by prv hlth insurance" HIEMPL19 = "Covered by prv hlth insurance" HIEMPL20 = "Covered by prv hlth insurance" HIEMPL21 = "Covered by prv hlth insurance" HIEMPL22 = "Covered by prv hlth insurance" HIEMPL23 = "Covered by prv hlth insurance" HIEMPL24 = "Covered by prv hlth insurance" HIEMPL25 = "Covered by prv hlth insurance" HIEMPL26 = "Covered by prv hlth insurance" HIEMPL27 = "Covered by prv hlth insurance" HIEMPL28 = "Covered by prv hlth insurance" HIEMPL29 = "Covered by prv hlth insurance" HIEMPL30 = "Covered by prv hlth insurance" HIEMPL31 = "Covered by prv hlth insurance" HIEMPL32 = "Covered by prv hlth insurance" SS_PID01 = "Covered by soc-soc, index number of" SS_PID02 = "Covered by soc-soc, index number of" SS_PID03 = "Covered by soc-soc, index number of" SS_PID04 = "Covered by soc-soc, index number of" SS_PID05 = "Covered by soc-soc, index number of" SS_PID06 = "Covered by soc-soc, index number of" SS_PID07 = "Covered by soc-soc, index number of" SS_PID08 = "Covered by soc-soc, index number of" SS_PID09 = "Covered by soc-soc, index number of" SS_PID10 = "Covered by soc-soc, index number of" SS_PID11 = "Covered by soc-soc, index number of" SS_PID12 = "Covered by soc-soc, index number of" SS_PID13 = "Covered by soc-soc, index number of" SS_PID14 = "Covered by soc-soc, index number of" SS_PID15 = "Covered by soc-soc, index number of" SS_PID16 = "Covered by soc-soc, index number of" SS_PID17 = "Covered by soc-soc, index number of" SS_PID18 = "Covered by soc-soc, index number of" SS_PID19 = "Covered by soc-soc, index number of" SS_PID20 = "Covered by soc-soc, index number of" SS_PID21 = "Covered by soc-soc, index number of" SS_PID22 = "Covered by soc-soc, index number of" SS_PID23 = "Covered by soc-soc, index number of" SS_PID24 = "Covered by soc-soc, index number of" SS_PID25 = "Covered by soc-soc, index number of" SS_PID26 = "Covered by soc-soc, index number of" SS_PID27 = "Covered by soc-soc, index number of" SS_PID28 = "Covered by soc-soc, index number of" SS_PID29 = "Covered by soc-soc, index number of" SS_PID30 = "Covered by soc-soc, index number of" SS_PID31 = "Covered by soc-soc, index number of" SS_PID32 = "Covered by soc-soc, index number of" RR_PID01 = "Covered by railroad, index number" RR_PID02 = "Covered by railroad, index number" RR_PID03 = "Covered by railroad, index number" RR_PID04 = "Covered by railroad, index number" RR_PID05 = "Covered by railroad, index number" RR_PID06 = "Covered by railroad, index number" RR_PID07 = "Covered by railroad, index number" RR_PID08 = "Covered by railroad, index number" RR_PID09 = "Covered by railroad, index number" RR_PID10 = "Covered by railroad, index number" RR_PID11 = "Covered by railroad, index number" RR_PID12 = "Covered by railroad, index number" RR_PID13 = "Covered by railroad, index number" RR_PID14 = "Covered by railroad, index number" RR_PID15 = "Covered by railroad, index number" RR_PID16 = "Covered by railroad, index number" RR_PID17 = "Covered by railroad, index number" RR_PID18 = "Covered by railroad, index number" RR_PID19 = "Covered by railroad, index number" RR_PID20 = "Covered by railroad, index number" RR_PID21 = "Covered by railroad, index number" RR_PID22 = "Covered by railroad, index number" RR_PID23 = "Covered by railroad, index number" RR_PID24 = "Covered by railroad, index number" RR_PID25 = "Covered by railroad, index number" RR_PID26 = "Covered by railroad, index number" RR_PID27 = "Covered by railroad, index number" RR_PID28 = "Covered by railroad, index number" RR_PID29 = "Covered by railroad, index number" RR_PID30 = "Covered by railroad, index number" RR_PID31 = "Covered by railroad, index number" RR_PID32 = "Covered by railroad, index number" VA_PID01 = "Covered by vets, index number of perso" VA_PID02 = "Covered by vets, index number of perso" VA_PID03 = "Covered by vets, index number of perso" VA_PID04 = "Covered by vets, index number of perso" VA_PID05 = "Covered by vets, index number of perso" VA_PID06 = "Covered by vets, index number of perso" VA_PID07 = "Covered by vets, index number of perso" VA_PID08 = "Covered by vets, index number of perso" VA_PID09 = "Covered by vets, index number of perso" VA_PID10 = "Covered by vets, index number of perso" VA_PID11 = "Covered by vets, index number of perso" VA_PID12 = "Covered by vets, index number of perso" VA_PID13 = "Covered by vets, index number of perso" VA_PID14 = "Covered by vets, index number of perso" VA_PID15 = "Covered by vets, index number of perso" VA_PID16 = "Covered by vets, index number of perso" VA_PID17 = "Covered by vets, index number of perso" VA_PID18 = "Covered by vets, index number of perso" VA_PID19 = "Covered by vets, index number of perso" VA_PID20 = "Covered by vets, index number of perso" VA_PID21 = "Covered by vets, index number of perso" VA_PID22 = "Covered by vets, index number of perso" VA_PID23 = "Covered by vets, index number of perso" VA_PID24 = "Covered by vets, index number of perso" VA_PID25 = "Covered by vets, index number of perso" VA_PID26 = "Covered by vets, index number of perso" VA_PID27 = "Covered by vets, index number of perso" VA_PID28 = "Covered by vets, index number of perso" VA_PID29 = "Covered by vets, index number of perso" VA_PID30 = "Covered by vets, index number of perso" VA_PID31 = "Covered by vets, index number of perso" VA_PID32 = "Covered by vets, index number of perso" AFDCPI01 = "Covered by AFDC, index number of perso" AFDCPI02 = "Covered by AFDC, index number of perso" AFDCPI03 = "Covered by AFDC, index number of perso" AFDCPI04 = "Covered by AFDC, index number of perso" AFDCPI05 = "Covered by AFDC, index number of perso" AFDCPI06 = "Covered by AFDC, index number of perso" AFDCPI07 = "Covered by AFDC, index number of perso" AFDCPI08 = "Covered by AFDC, index number of perso" AFDCPI09 = "Covered by AFDC, index number of perso" AFDCPI10 = "Covered by AFDC, index number of perso" AFDCPI11 = "Covered by AFDC, index number of perso" AFDCPI12 = "Covered by AFDC, index number of perso" AFDCPI13 = "Covered by AFDC, index number of perso" AFDCPI14 = "Covered by AFDC, index number of perso" AFDCPI15 = "Covered by AFDC, index number of perso" AFDCPI16 = "Covered by AFDC, index number of perso" AFDCPI17 = "Covered by AFDC, index number of perso" AFDCPI18 = "Covered by AFDC, index number of perso" AFDCPI19 = "Covered by AFDC, index number of perso" AFDCPI20 = "Covered by AFDC, index number of perso" AFDCPI21 = "Covered by AFDC, index number of perso" AFDCPI22 = "Covered by AFDC, index number of perso" AFDCPI23 = "Covered by AFDC, index number of perso" AFDCPI24 = "Covered by AFDC, index number of perso" AFDCPI25 = "Covered by AFDC, index number of perso" AFDCPI26 = "Covered by AFDC, index number of perso" AFDCPI27 = "Covered by AFDC, index number of perso" AFDCPI28 = "Covered by AFDC, index number of perso" AFDCPI29 = "Covered by AFDC, index number of perso" AFDCPI30 = "Covered by AFDC, index number of perso" AFDCPI31 = "Covered by AFDC, index number of perso" AFDCPI32 = "Covered by AFDC, index number of perso" GA_PID01 = "Covered by GEN-ASST, index number" GA_PID02 = "Covered by GEN-ASST, index number" GA_PID03 = "Covered by GEN-ASST, index number" GA_PID04 = "Covered by GEN-ASST, index number" GA_PID05 = "Covered by GEN-ASST, index number" GA_PID06 = "Covered by GEN-ASST, index number" GA_PID07 = "Covered by GEN-ASST, index number" GA_PID08 = "Covered by GEN-ASST, index number" GA_PID09 = "Covered by GEN-ASST, index number" GA_PID10 = "Covered by GEN-ASST, index number" GA_PID11 = "Covered by GEN-ASST, index number" GA_PID12 = "Covered by GEN-ASST, index number" GA_PID13 = "Covered by GEN-ASST, index number" GA_PID14 = "Covered by GEN-ASST, index number" GA_PID15 = "Covered by GEN-ASST, index number" GA_PID16 = "Covered by GEN-ASST, index number" GA_PID17 = "Covered by GEN-ASST, index number" GA_PID18 = "Covered by GEN-ASST, index number" GA_PID19 = "Covered by GEN-ASST, index number" GA_PID20 = "Covered by GEN-ASST, index number" GA_PID21 = "Covered by GEN-ASST, index number" GA_PID22 = "Covered by GEN-ASST, index number" GA_PID23 = "Covered by GEN-ASST, index number" GA_PID24 = "Covered by GEN-ASST, index number" GA_PID25 = "Covered by GEN-ASST, index number" GA_PID26 = "Covered by GEN-ASST, index number" GA_PID27 = "Covered by GEN-ASST, index number" GA_PID28 = "Covered by GEN-ASST, index number" GA_PID29 = "Covered by GEN-ASST, index number" GA_PID30 = "Covered by GEN-ASST, index number" GA_PID31 = "Covered by GEN-ASST, index number" GA_PID32 = "Covered by GEN-ASST, index number" FOSTPI01 = "Covered by FOST-KID, index number" FOSTPI02 = "Covered by FOST-KID, index number" FOSTPI03 = "Covered by FOST-KID, index number" FOSTPI04 = "Covered by FOST-KID, index number" FOSTPI05 = "Covered by FOST-KID, index number" FOSTPI06 = "Covered by FOST-KID, index number" FOSTPI07 = "Covered by FOST-KID, index number" FOSTPI08 = "Covered by FOST-KID, index number" FOSTPI09 = "Covered by FOST-KID, index number" FOSTPI10 = "Covered by FOST-KID, index number" FOSTPI11 = "Covered by FOST-KID, index number" FOSTPI12 = "Covered by FOST-KID, index number" FOSTPI13 = "Covered by FOST-KID, index number" FOSTPI14 = "Covered by FOST-KID, index number" FOSTPI15 = "Covered by FOST-KID, index number" FOSTPI16 = "Covered by FOST-KID, index number" FOSTPI17 = "Covered by FOST-KID, index number" FOSTPI18 = "Covered by FOST-KID, index number" FOSTPI19 = "Covered by FOST-KID, index number" FOSTPI20 = "Covered by FOST-KID, index number" FOSTPI21 = "Covered by FOST-KID, index number" FOSTPI22 = "Covered by FOST-KID, index number" FOSTPI23 = "Covered by FOST-KID, index number" FOSTPI24 = "Covered by FOST-KID, index number" FOSTPI25 = "Covered by FOST-KID, index number" FOSTPI26 = "Covered by FOST-KID, index number" FOSTPI27 = "Covered by FOST-KID, index number" FOSTPI28 = "Covered by FOST-KID, index number" FOSTPI29 = "Covered by FOST-KID, index number" FOSTPI30 = "Covered by FOST-KID, index number" FOSTPI31 = "Covered by FOST-KID, index number" FOSTPI32 = "Covered by FOST-KID, index number" OTH_PI01 = "Covered by OTH-WELF (index number" OTH_PI02 = "Covered by OTH-WELF (index number" OTH_PI03 = "Covered by OTH-WELF (index number" OTH_PI04 = "Covered by OTH-WELF (index number" OTH_PI05 = "Covered by OTH-WELF (index number" OTH_PI06 = "Covered by OTH-WELF (index number" OTH_PI07 = "Covered by OTH-WELF (index number" OTH_PI08 = "Covered by OTH-WELF (index number" OTH_PI09 = "Covered by OTH-WELF (index number" OTH_PI10 = "Covered by OTH-WELF (index number" OTH_PI11 = "Covered by OTH-WELF (index number" OTH_PI12 = "Covered by OTH-WELF (index number" OTH_PI13 = "Covered by OTH-WELF (index number" OTH_PI14 = "Covered by OTH-WELF (index number" OTH_PI15 = "Covered by OTH-WELF (index number" OTH_PI16 = "Covered by OTH-WELF (index number" OTH_PI17 = "Covered by OTH-WELF (index number" OTH_PI18 = "Covered by OTH-WELF (index number" OTH_PI19 = "Covered by OTH-WELF (index number" OTH_PI20 = "Covered by OTH-WELF (index number" OTH_PI21 = "Covered by OTH-WELF (index number" OTH_PI22 = "Covered by OTH-WELF (index number" OTH_PI23 = "Covered by OTH-WELF (index number" OTH_PI24 = "Covered by OTH-WELF (index number" OTH_PI25 = "Covered by OTH-WELF (index number" OTH_PI26 = "Covered by OTH-WELF (index number" OTH_PI27 = "Covered by OTH-WELF (index number" OTH_PI28 = "Covered by OTH-WELF (index number" OTH_PI29 = "Covered by OTH-WELF (index number" OTH_PI30 = "Covered by OTH-WELF (index number" OTH_PI31 = "Covered by OTH-WELF (index number" OTH_PI32 = "Covered by OTH-WELF (index number" WIC_PI01 = "Covered by WICCOV, index number of per" WIC_PI02 = "Covered by WICCOV, index number of per" WIC_PI03 = "Covered by WICCOV, index number of per" WIC_PI04 = "Covered by WICCOV, index number of per" WIC_PI05 = "Covered by WICCOV, index number of per" WIC_PI06 = "Covered by WICCOV, index number of per" WIC_PI07 = "Covered by WICCOV, index number of per" WIC_PI08 = "Covered by WICCOV, index number of per" WIC_PI09 = "Covered by WICCOV, index number of per" WIC_PI10 = "Covered by WICCOV, index number of per" WIC_PI11 = "Covered by WICCOV, index number of per" WIC_PI12 = "Covered by WICCOV, index number of per" WIC_PI13 = "Covered by WICCOV, index number of per" WIC_PI14 = "Covered by WICCOV, index number of per" WIC_PI15 = "Covered by WICCOV, index number of per" WIC_PI16 = "Covered by WICCOV, index number of per" WIC_PI17 = "Covered by WICCOV, index number of per" WIC_PI18 = "Covered by WICCOV, index number of per" WIC_PI19 = "Covered by WICCOV, index number of per" WIC_PI20 = "Covered by WICCOV, index number of per" WIC_PI21 = "Covered by WICCOV, index number of per" WIC_PI22 = "Covered by WICCOV, index number of per" WIC_PI23 = "Covered by WICCOV, index number of per" WIC_PI24 = "Covered by WICCOV, index number of per" WIC_PI25 = "Covered by WICCOV, index number of per" WIC_PI26 = "Covered by WICCOV, index number of per" WIC_PI27 = "Covered by WICCOV, index number of per" WIC_PI28 = "Covered by WICCOV, index number of per" WIC_PI29 = "Covered by WICCOV, index number of per" WIC_PI30 = "Covered by WICCOV, index number of per" WIC_PI31 = "Covered by WICCOV, index number of per" WIC_PI32 = "Covered by WICCOV, index number of per" FS_PID01 = "Covered by foodstamps, index number of" FS_PID02 = "Covered by foodstamps, index number of" FS_PID03 = "Covered by foodstamps, index number of" FS_PID04 = "Covered by foodstamps, index number of" FS_PID05 = "Covered by foodstamps, index number of" FS_PID06 = "Covered by foodstamps, index number of" FS_PID07 = "Covered by foodstamps, index number of" FS_PID08 = "Covered by foodstamps, index number of" FS_PID09 = "Covered by foodstamps, index number of" FS_PID10 = "Covered by foodstamps, index number of" FS_PID11 = "Covered by foodstamps, index number of" FS_PID12 = "Covered by foodstamps, index number of" FS_PID13 = "Covered by foodstamps, index number of" FS_PID14 = "Covered by foodstamps, index number of" FS_PID15 = "Covered by foodstamps, index number of" FS_PID16 = "Covered by foodstamps, index number of" FS_PID17 = "Covered by foodstamps, index number of" FS_PID18 = "Covered by foodstamps, index number of" FS_PID19 = "Covered by foodstamps, index number of" FS_PID20 = "Covered by foodstamps, index number of" FS_PID21 = "Covered by foodstamps, index number of" FS_PID22 = "Covered by foodstamps, index number of" FS_PID23 = "Covered by foodstamps, index number of" FS_PID24 = "Covered by foodstamps, index number of" FS_PID25 = "Covered by foodstamps, index number of" FS_PID26 = "Covered by foodstamps, index number of" FS_PID27 = "Covered by foodstamps, index number of" FS_PID28 = "Covered by foodstamps, index number of" FS_PID29 = "Covered by foodstamps, index number of" FS_PID30 = "Covered by foodstamps, index number of" FS_PID31 = "Covered by foodstamps, index number of" FS_PID32 = "Covered by foodstamps, index number of" WS1_IM01 = "Job 1 imputation flag (monthly)" WS1_IM02 = "Job 1 imputation flag (monthly)" WS1_IM03 = "Job 1 imputation flag (monthly)" WS1_IM04 = "Job 1 imputation flag (monthly)" WS1_IM05 = "Job 1 imputation flag (monthly)" WS1_IM06 = "Job 1 imputation flag (monthly)" WS1_IM07 = "Job 1 imputation flag (monthly)" WS1_IM08 = "Job 1 imputation flag (monthly)" WS1_IM09 = "Job 1 imputation flag (monthly)" WS1_IM10 = "Job 1 imputation flag (monthly)" WS1_IM11 = "Job 1 imputation flag (monthly)" WS1_IM12 = "Job 1 imputation flag (monthly)" WS1_IM13 = "Job 1 imputation flag (monthly)" WS1_IM14 = "Job 1 imputation flag (monthly)" WS1_IM15 = "Job 1 imputation flag (monthly)" WS1_IM16 = "Job 1 imputation flag (monthly)" WS1_IM17 = "Job 1 imputation flag (monthly)" WS1_IM18 = "Job 1 imputation flag (monthly)" WS1_IM19 = "Job 1 imputation flag (monthly)" WS1_IM20 = "Job 1 imputation flag (monthly)" WS1_IM21 = "Job 1 imputation flag (monthly)" WS1_IM22 = "Job 1 imputation flag (monthly)" WS1_IM23 = "Job 1 imputation flag (monthly)" WS1_IM24 = "Job 1 imputation flag (monthly)" WS1_IM25 = "Job 1 imputation flag (monthly)" WS1_IM26 = "Job 1 imputation flag (monthly)" WS1_IM27 = "Job 1 imputation flag (monthly)" WS1_IM28 = "Job 1 imputation flag (monthly)" WS1_IM29 = "Job 1 imputation flag (monthly)" WS1_IM30 = "Job 1 imputation flag (monthly)" WS1_IM31 = "Job 1 imputation flag (monthly)" WS1_IM32 = "Job 1 imputation flag (monthly)" WS2_IM01 = "Job 2 imputation flag (monthly)" WS2_IM02 = "Job 2 imputation flag (monthly)" WS2_IM03 = "Job 2 imputation flag (monthly)" WS2_IM04 = "Job 2 imputation flag (monthly)" WS2_IM05 = "Job 2 imputation flag (monthly)" WS2_IM06 = "Job 2 imputation flag (monthly)" WS2_IM07 = "Job 2 imputation flag (monthly)" WS2_IM08 = "Job 2 imputation flag (monthly)" WS2_IM09 = "Job 2 imputation flag (monthly)" WS2_IM10 = "Job 2 imputation flag (monthly)" WS2_IM11 = "Job 2 imputation flag (monthly)" WS2_IM12 = "Job 2 imputation flag (monthly)" WS2_IM13 = "Job 2 imputation flag (monthly)" WS2_IM14 = "Job 2 imputation flag (monthly)" WS2_IM15 = "Job 2 imputation flag (monthly)" WS2_IM16 = "Job 2 imputation flag (monthly)" WS2_IM17 = "Job 2 imputation flag (monthly)" WS2_IM18 = "Job 2 imputation flag (monthly)" WS2_IM19 = "Job 2 imputation flag (monthly)" WS2_IM20 = "Job 2 imputation flag (monthly)" WS2_IM21 = "Job 2 imputation flag (monthly)" WS2_IM22 = "Job 2 imputation flag (monthly)" WS2_IM23 = "Job 2 imputation flag (monthly)" WS2_IM24 = "Job 2 imputation flag (monthly)" WS2_IM25 = "Job 2 imputation flag (monthly)" WS2_IM26 = "Job 2 imputation flag (monthly)" WS2_IM27 = "Job 2 imputation flag (monthly)" WS2_IM28 = "Job 2 imputation flag (monthly)" WS2_IM29 = "Job 2 imputation flag (monthly)" WS2_IM30 = "Job 2 imputation flag (monthly)" WS2_IM31 = "Job 2 imputation flag (monthly)" WS2_IM32 = "Job 2 imputation flag (monthly)" SE1_IM01 = "Self employment business 1" SE1_IM02 = "Self employment business 1" SE1_IM03 = "Self employment business 1" SE1_IM04 = "Self employment business 1" SE1_IM05 = "Self employment business 1" SE1_IM06 = "Self employment business 1" SE1_IM07 = "Self employment business 1" SE1_IM08 = "Self employment business 1" SE1_IM09 = "Self employment business 1" SE1_IM10 = "Self employment business 1" SE1_IM11 = "Self employment business 1" SE1_IM12 = "Self employment business 1" SE1_IM13 = "Self employment business 1" SE1_IM14 = "Self employment business 1" SE1_IM15 = "Self employment business 1" SE1_IM16 = "Self employment business 1" SE1_IM17 = "Self employment business 1" SE1_IM18 = "Self employment business 1" SE1_IM19 = "Self employment business 1" SE1_IM20 = "Self employment business 1" SE1_IM21 = "Self employment business 1" SE1_IM22 = "Self employment business 1" SE1_IM23 = "Self employment business 1" SE1_IM24 = "Self employment business 1" SE1_IM25 = "Self employment business 1" SE1_IM26 = "Self employment business 1" SE1_IM27 = "Self employment business 1" SE1_IM28 = "Self employment business 1" SE1_IM29 = "Self employment business 1" SE1_IM30 = "Self employment business 1" SE1_IM31 = "Self employment business 1" SE1_IM32 = "Self employment business 1" SE2_IM01 = "Self employment business 2" SE2_IM02 = "Self employment business 2" SE2_IM03 = "Self employment business 2" SE2_IM04 = "Self employment business 2" SE2_IM05 = "Self employment business 2" SE2_IM06 = "Self employment business 2" SE2_IM07 = "Self employment business 2" SE2_IM08 = "Self employment business 2" SE2_IM09 = "Self employment business 2" SE2_IM10 = "Self employment business 2" SE2_IM11 = "Self employment business 2" SE2_IM12 = "Self employment business 2" SE2_IM13 = "Self employment business 2" SE2_IM14 = "Self employment business 2" SE2_IM15 = "Self employment business 2" SE2_IM16 = "Self employment business 2" SE2_IM17 = "Self employment business 2" SE2_IM18 = "Self employment business 2" SE2_IM19 = "Self employment business 2" SE2_IM20 = "Self employment business 2" SE2_IM21 = "Self employment business 2" SE2_IM22 = "Self employment business 2" SE2_IM23 = "Self employment business 2" SE2_IM24 = "Self employment business 2" SE2_IM25 = "Self employment business 2" SE2_IM26 = "Self employment business 2" SE2_IM27 = "Self employment business 2" SE2_IM28 = "Self employment business 2" SE2_IM29 = "Self employment business 2" SE2_IM30 = "Self employment business 2" SE2_IM31 = "Self employment business 2" SE2_IM32 = "Self employment business 2" G1_I1_01 = "G1 amount 1 imputation flag (monthly)" G1_I1_02 = "G1 amount 1 imputation flag (monthly)" G1_I1_03 = "G1 amount 1 imputation flag (monthly)" G1_I1_04 = "G1 amount 1 imputation flag (monthly)" G1_I1_05 = "G1 amount 1 imputation flag (monthly)" G1_I1_06 = "G1 amount 1 imputation flag (monthly)" G1_I1_07 = "G1 amount 1 imputation flag (monthly)" G1_I1_08 = "G1 amount 1 imputation flag (monthly)" G1_I1_09 = "G1 amount 1 imputation flag (monthly)" G1_I1_10 = "G1 amount 1 imputation flag (monthly)" G1_I1_11 = "G1 amount 1 imputation flag (monthly)" G1_I1_12 = "G1 amount 1 imputation flag (monthly)" G1_I1_13 = "G1 amount 1 imputation flag (monthly)" G1_I1_14 = "G1 amount 1 imputation flag (monthly)" G1_I1_15 = "G1 amount 1 imputation flag (monthly)" G1_I1_16 = "G1 amount 1 imputation flag (monthly)" G1_I1_17 = "G1 amount 1 imputation flag (monthly)" G1_I1_18 = "G1 amount 1 imputation flag (monthly)" G1_I1_19 = "G1 amount 1 imputation flag (monthly)" G1_I1_20 = "G1 amount 1 imputation flag (monthly)" G1_I1_21 = "G1 amount 1 imputation flag (monthly)" G1_I1_22 = "G1 amount 1 imputation flag (monthly)" G1_I1_23 = "G1 amount 1 imputation flag (monthly)" G1_I1_24 = "G1 amount 1 imputation flag (monthly)" G1_I1_25 = "G1 amount 1 imputation flag (monthly)" G1_I1_26 = "G1 amount 1 imputation flag (monthly)" G1_I1_27 = "G1 amount 1 imputation flag (monthly)" G1_I1_28 = "G1 amount 1 imputation flag (monthly)" G1_I1_29 = "G1 amount 1 imputation flag (monthly)" G1_I1_30 = "G1 amount 1 imputation flag (monthly)" G1_I1_31 = "G1 amount 1 imputation flag (monthly)" G1_I1_32 = "G1 amount 1 imputation flag (monthly)" G1_I2_01 = "G1 amount 2 imputation flag (monthly)" G1_I2_02 = "G1 amount 2 imputation flag (monthly)" G1_I2_03 = "G1 amount 2 imputation flag (monthly)" G1_I2_04 = "G1 amount 2 imputation flag (monthly)" G1_I2_05 = "G1 amount 2 imputation flag (monthly)" G1_I2_06 = "G1 amount 2 imputation flag (monthly)" G1_I2_07 = "G1 amount 2 imputation flag (monthly)" G1_I2_08 = "G1 amount 2 imputation flag (monthly)" G1_I2_09 = "G1 amount 2 imputation flag (monthly)" G1_I2_10 = "G1 amount 2 imputation flag (monthly)" G1_I2_11 = "G1 amount 2 imputation flag (monthly)" G1_I2_12 = "G1 amount 2 imputation flag (monthly)" G1_I2_13 = "G1 amount 2 imputation flag (monthly)" G1_I2_14 = "G1 amount 2 imputation flag (monthly)" G1_I2_15 = "G1 amount 2 imputation flag (monthly)" G1_I2_16 = "G1 amount 2 imputation flag (monthly)" G1_I2_17 = "G1 amount 2 imputation flag (monthly)" G1_I2_18 = "G1 amount 2 imputation flag (monthly)" G1_I2_19 = "G1 amount 2 imputation flag (monthly)" G1_I2_20 = "G1 amount 2 imputation flag (monthly)" G1_I2_21 = "G1 amount 2 imputation flag (monthly)" G1_I2_22 = "G1 amount 2 imputation flag (monthly)" G1_I2_23 = "G1 amount 2 imputation flag (monthly)" G1_I2_24 = "G1 amount 2 imputation flag (monthly)" G1_I2_25 = "G1 amount 2 imputation flag (monthly)" G1_I2_26 = "G1 amount 2 imputation flag (monthly)" G1_I2_27 = "G1 amount 2 imputation flag (monthly)" G1_I2_28 = "G1 amount 2 imputation flag (monthly)" G1_I2_29 = "G1 amount 2 imputation flag (monthly)" G1_I2_30 = "G1 amount 2 imputation flag (monthly)" G1_I2_31 = "G1 amount 2 imputation flag (monthly)" G1_I2_32 = "G1 amount 2 imputation flag (monthly)" G1_I3_01 = "G1 amount 3 imputation flag (monthly)" G1_I3_02 = "G1 amount 3 imputation flag (monthly)" G1_I3_03 = "G1 amount 3 imputation flag (monthly)" G1_I3_04 = "G1 amount 3 imputation flag (monthly)" G1_I3_05 = "G1 amount 3 imputation flag (monthly)" G1_I3_06 = "G1 amount 3 imputation flag (monthly)" G1_I3_07 = "G1 amount 3 imputation flag (monthly)" G1_I3_08 = "G1 amount 3 imputation flag (monthly)" G1_I3_09 = "G1 amount 3 imputation flag (monthly)" G1_I3_10 = "G1 amount 3 imputation flag (monthly)" G1_I3_11 = "G1 amount 3 imputation flag (monthly)" G1_I3_12 = "G1 amount 3 imputation flag (monthly)" G1_I3_13 = "G1 amount 3 imputation flag (monthly)" G1_I3_14 = "G1 amount 3 imputation flag (monthly)" G1_I3_15 = "G1 amount 3 imputation flag (monthly)" G1_I3_16 = "G1 amount 3 imputation flag (monthly)" G1_I3_17 = "G1 amount 3 imputation flag (monthly)" G1_I3_18 = "G1 amount 3 imputation flag (monthly)" G1_I3_19 = "G1 amount 3 imputation flag (monthly)" G1_I3_20 = "G1 amount 3 imputation flag (monthly)" G1_I3_21 = "G1 amount 3 imputation flag (monthly)" G1_I3_22 = "G1 amount 3 imputation flag (monthly)" G1_I3_23 = "G1 amount 3 imputation flag (monthly)" G1_I3_24 = "G1 amount 3 imputation flag (monthly)" G1_I3_25 = "G1 amount 3 imputation flag (monthly)" G1_I3_26 = "G1 amount 3 imputation flag (monthly)" G1_I3_27 = "G1 amount 3 imputation flag (monthly)" G1_I3_28 = "G1 amount 3 imputation flag (monthly)" G1_I3_29 = "G1 amount 3 imputation flag (monthly)" G1_I3_30 = "G1 amount 3 imputation flag (monthly)" G1_I3_31 = "G1 amount 3 imputation flag (monthly)" G1_I3_32 = "G1 amount 3 imputation flag (monthly)" G1_I4_01 = "G1 amount 4 imputation flag (monthly)" G1_I4_02 = "G1 amount 4 imputation flag (monthly)" G1_I4_03 = "G1 amount 4 imputation flag (monthly)" G1_I4_04 = "G1 amount 4 imputation flag (monthly)" G1_I4_05 = "G1 amount 4 imputation flag (monthly)" G1_I4_06 = "G1 amount 4 imputation flag (monthly)" G1_I4_07 = "G1 amount 4 imputation flag (monthly)" G1_I4_08 = "G1 amount 4 imputation flag (monthly)" G1_I4_09 = "G1 amount 4 imputation flag (monthly)" G1_I4_10 = "G1 amount 4 imputation flag (monthly)" G1_I4_11 = "G1 amount 4 imputation flag (monthly)" G1_I4_12 = "G1 amount 4 imputation flag (monthly)" G1_I4_13 = "G1 amount 4 imputation flag (monthly)" G1_I4_14 = "G1 amount 4 imputation flag (monthly)" G1_I4_15 = "G1 amount 4 imputation flag (monthly)" G1_I4_16 = "G1 amount 4 imputation flag (monthly)" G1_I4_17 = "G1 amount 4 imputation flag (monthly)" G1_I4_18 = "G1 amount 4 imputation flag (monthly)" G1_I4_19 = "G1 amount 4 imputation flag (monthly)" G1_I4_20 = "G1 amount 4 imputation flag (monthly)" G1_I4_21 = "G1 amount 4 imputation flag (monthly)" G1_I4_22 = "G1 amount 4 imputation flag (monthly)" G1_I4_23 = "G1 amount 4 imputation flag (monthly)" G1_I4_24 = "G1 amount 4 imputation flag (monthly)" G1_I4_25 = "G1 amount 4 imputation flag (monthly)" G1_I4_26 = "G1 amount 4 imputation flag (monthly)" G1_I4_27 = "G1 amount 4 imputation flag (monthly)" G1_I4_28 = "G1 amount 4 imputation flag (monthly)" G1_I4_29 = "G1 amount 4 imputation flag (monthly)" G1_I4_30 = "G1 amount 4 imputation flag (monthly)" G1_I4_31 = "G1 amount 4 imputation flag (monthly)" G1_I4_32 = "G1 amount 4 imputation flag (monthly)" G11_IM01 = "G1 amt 5 imp flag (monthly)" G11_IM02 = "G1 amt 5 imp flag (monthly)" G11_IM03 = "G1 amt 5 imp flag (monthly)" G11_IM04 = "G1 amt 5 imp flag (monthly)" G11_IM05 = "G1 amt 5 imp flag (monthly)" G11_IM06 = "G1 amt 5 imp flag (monthly)" G11_IM07 = "G1 amt 5 imp flag (monthly)" G11_IM08 = "G1 amt 5 imp flag (monthly)" G11_IM09 = "G1 amt 5 imp flag (monthly)" G11_IM10 = "G1 amt 5 imp flag (monthly)" G11_IM11 = "G1 amt 5 imp flag (monthly)" G11_IM12 = "G1 amt 5 imp flag (monthly)" G11_IM13 = "G1 amt 5 imp flag (monthly)" G11_IM14 = "G1 amt 5 imp flag (monthly)" G11_IM15 = "G1 amt 5 imp flag (monthly)" G11_IM16 = "G1 amt 5 imp flag (monthly)" G11_IM17 = "G1 amt 5 imp flag (monthly)" G11_IM18 = "G1 amt 5 imp flag (monthly)" G11_IM19 = "G1 amt 5 imp flag (monthly)" G11_IM20 = "G1 amt 5 imp flag (monthly)" G11_IM21 = "G1 amt 5 imp flag (monthly)" G11_IM22 = "G1 amt 5 imp flag (monthly)" G11_IM23 = "G1 amt 5 imp flag (monthly)" G11_IM24 = "G1 amt 5 imp flag (monthly)" G11_IM25 = "G1 amt 5 imp flag (monthly)" G11_IM26 = "G1 amt 5 imp flag (monthly)" G11_IM27 = "G1 amt 5 imp flag (monthly)" G11_IM28 = "G1 amt 5 imp flag (monthly)" G11_IM29 = "G1 amt 5 imp flag (monthly)" G11_IM30 = "G1 amt 5 imp flag (monthly)" G11_IM31 = "G1 amt 5 imp flag (monthly)" G11_IM32 = "G1 amt 5 imp flag (monthly)" G1_I6_01 = "G1 amount 6 imputation flag (monthly)" G1_I6_02 = "G1 amount 6 imputation flag (monthly)" G1_I6_03 = "G1 amount 6 imputation flag (monthly)" G1_I6_04 = "G1 amount 6 imputation flag (monthly)" G1_I6_05 = "G1 amount 6 imputation flag (monthly)" G1_I6_06 = "G1 amount 6 imputation flag (monthly)" G1_I6_07 = "G1 amount 6 imputation flag (monthly)" G1_I6_08 = "G1 amount 6 imputation flag (monthly)" G1_I6_09 = "G1 amount 6 imputation flag (monthly)" G1_I6_10 = "G1 amount 6 imputation flag (monthly)" G1_I6_11 = "G1 amount 6 imputation flag (monthly)" G1_I6_12 = "G1 amount 6 imputation flag (monthly)" G1_I6_13 = "G1 amount 6 imputation flag (monthly)" G1_I6_14 = "G1 amount 6 imputation flag (monthly)" G1_I6_15 = "G1 amount 6 imputation flag (monthly)" G1_I6_16 = "G1 amount 6 imputation flag (monthly)" G1_I6_17 = "G1 amount 6 imputation flag (monthly)" G1_I6_18 = "G1 amount 6 imputation flag (monthly)" G1_I6_19 = "G1 amount 6 imputation flag (monthly)" G1_I6_20 = "G1 amount 6 imputation flag (monthly)" G1_I6_21 = "G1 amount 6 imputation flag (monthly)" G1_I6_22 = "G1 amount 6 imputation flag (monthly)" G1_I6_23 = "G1 amount 6 imputation flag (monthly)" G1_I6_24 = "G1 amount 6 imputation flag (monthly)" G1_I6_25 = "G1 amount 6 imputation flag (monthly)" G1_I6_26 = "G1 amount 6 imputation flag (monthly)" G1_I6_27 = "G1 amount 6 imputation flag (monthly)" G1_I6_28 = "G1 amount 6 imputation flag (monthly)" G1_I6_29 = "G1 amount 6 imputation flag (monthly)" G1_I6_30 = "G1 amount 6 imputation flag (monthly)" G1_I6_31 = "G1 amount 6 imputation flag (monthly)" G1_I6_32 = "G1 amount 6 imputation flag (monthly)" G1_I7_01 = "G1 amount 7 imputation flag (monthly)" G1_I7_02 = "G1 amount 7 imputation flag (monthly)" G1_I7_03 = "G1 amount 7 imputation flag (monthly)" G1_I7_04 = "G1 amount 7 imputation flag (monthly)" G1_I7_05 = "G1 amount 7 imputation flag (monthly)" G1_I7_06 = "G1 amount 7 imputation flag (monthly)" G1_I7_07 = "G1 amount 7 imputation flag (monthly)" G1_I7_08 = "G1 amount 7 imputation flag (monthly)" G1_I7_09 = "G1 amount 7 imputation flag (monthly)" G1_I7_10 = "G1 amount 7 imputation flag (monthly)" G1_I7_11 = "G1 amount 7 imputation flag (monthly)" G1_I7_12 = "G1 amount 7 imputation flag (monthly)" G1_I7_13 = "G1 amount 7 imputation flag (monthly)" G1_I7_14 = "G1 amount 7 imputation flag (monthly)" G1_I7_15 = "G1 amount 7 imputation flag (monthly)" G1_I7_16 = "G1 amount 7 imputation flag (monthly)" G1_I7_17 = "G1 amount 7 imputation flag (monthly)" G1_I7_18 = "G1 amount 7 imputation flag (monthly)" G1_I7_19 = "G1 amount 7 imputation flag (monthly)" G1_I7_20 = "G1 amount 7 imputation flag (monthly)" G1_I7_21 = "G1 amount 7 imputation flag (monthly)" G1_I7_22 = "G1 amount 7 imputation flag (monthly)" G1_I7_23 = "G1 amount 7 imputation flag (monthly)" G1_I7_24 = "G1 amount 7 imputation flag (monthly)" G1_I7_25 = "G1 amount 7 imputation flag (monthly)" G1_I7_26 = "G1 amount 7 imputation flag (monthly)" G1_I7_27 = "G1 amount 7 imputation flag (monthly)" G1_I7_28 = "G1 amount 7 imputation flag (monthly)" G1_I7_29 = "G1 amount 7 imputation flag (monthly)" G1_I7_30 = "G1 amount 7 imputation flag (monthly)" G1_I7_31 = "G1 amount 7 imputation flag (monthly)" G1_I7_32 = "G1 amount 7 imputation flag (monthly)" G1_I8_01 = "G1 amount 8 imputation flag (monthly)" G1_I8_02 = "G1 amount 8 imputation flag (monthly)" G1_I8_03 = "G1 amount 8 imputation flag (monthly)" G1_I8_04 = "G1 amount 8 imputation flag (monthly)" G1_I8_05 = "G1 amount 8 imputation flag (monthly)" G1_I8_06 = "G1 amount 8 imputation flag (monthly)" G1_I8_07 = "G1 amount 8 imputation flag (monthly)" G1_I8_08 = "G1 amount 8 imputation flag (monthly)" G1_I8_09 = "G1 amount 8 imputation flag (monthly)" G1_I8_10 = "G1 amount 8 imputation flag (monthly)" G1_I8_11 = "G1 amount 8 imputation flag (monthly)" G1_I8_12 = "G1 amount 8 imputation flag (monthly)" G1_I8_13 = "G1 amount 8 imputation flag (monthly)" G1_I8_14 = "G1 amount 8 imputation flag (monthly)" G1_I8_15 = "G1 amount 8 imputation flag (monthly)" G1_I8_16 = "G1 amount 8 imputation flag (monthly)" G1_I8_17 = "G1 amount 8 imputation flag (monthly)" G1_I8_18 = "G1 amount 8 imputation flag (monthly)" G1_I8_19 = "G1 amount 8 imputation flag (monthly)" G1_I8_20 = "G1 amount 8 imputation flag (monthly)" G1_I8_21 = "G1 amount 8 imputation flag (monthly)" G1_I8_22 = "G1 amount 8 imputation flag (monthly)" G1_I8_23 = "G1 amount 8 imputation flag (monthly)" G1_I8_24 = "G1 amount 8 imputation flag (monthly)" G1_I8_25 = "G1 amount 8 imputation flag (monthly)" G1_I8_26 = "G1 amount 8 imputation flag (monthly)" G1_I8_27 = "G1 amount 8 imputation flag (monthly)" G1_I8_28 = "G1 amount 8 imputation flag (monthly)" G1_I8_29 = "G1 amount 8 imputation flag (monthly)" G1_I8_30 = "G1 amount 8 imputation flag (monthly)" G1_I8_31 = "G1 amount 8 imputation flag (monthly)" G1_I8_32 = "G1 amount 8 imputation flag (monthly)" G1_I9_01 = "G1 amt 9 imp flag (monthly)" G1_I9_02 = "G1 amt 9 imp flag (monthly)" G1_I9_03 = "G1 amt 9 imp flag (monthly)" G1_I9_04 = "G1 amt 9 imp flag (monthly)" G1_I9_05 = "G1 amt 9 imp flag (monthly)" G1_I9_06 = "G1 amt 9 imp flag (monthly)" G1_I9_07 = "G1 amt 9 imp flag (monthly)" G1_I9_08 = "G1 amt 9 imp flag (monthly)" G1_I9_09 = "G1 amt 9 imp flag (monthly)" G1_I9_10 = "G1 amt 9 imp flag (monthly)" G1_I9_11 = "G1 amt 9 imp flag (monthly)" G1_I9_12 = "G1 amt 9 imp flag (monthly)" G1_I9_13 = "G1 amt 9 imp flag (monthly)" G1_I9_14 = "G1 amt 9 imp flag (monthly)" G1_I9_15 = "G1 amt 9 imp flag (monthly)" G1_I9_16 = "G1 amt 9 imp flag (monthly)" G1_I9_17 = "G1 amt 9 imp flag (monthly)" G1_I9_18 = "G1 amt 9 imp flag (monthly)" G1_I9_19 = "G1 amt 9 imp flag (monthly)" G1_I9_20 = "G1 amt 9 imp flag (monthly)" G1_I9_21 = "G1 amt 9 imp flag (monthly)" G1_I9_22 = "G1 amt 9 imp flag (monthly)" G1_I9_23 = "G1 amt 9 imp flag (monthly)" G1_I9_24 = "G1 amt 9 imp flag (monthly)" G1_I9_25 = "G1 amt 9 imp flag (monthly)" G1_I9_26 = "G1 amt 9 imp flag (monthly)" G1_I9_27 = "G1 amt 9 imp flag (monthly)" G1_I9_28 = "G1 amt 9 imp flag (monthly)" G1_I9_29 = "G1 amt 9 imp flag (monthly)" G1_I9_30 = "G1 amt 9 imp flag (monthly)" G1_I9_31 = "G1 amt 9 imp flag (monthly)" G1_I9_32 = "G1 amt 9 imp flag (monthly)" G1_I1001 = "G1 amount 10 imputation flag (monthly)" G1_I1002 = "G1 amount 10 imputation flag (monthly)" G1_I1003 = "G1 amount 10 imputation flag (monthly)" G1_I1004 = "G1 amount 10 imputation flag (monthly)" G1_I1005 = "G1 amount 10 imputation flag (monthly)" G1_I1006 = "G1 amount 10 imputation flag (monthly)" G1_I1007 = "G1 amount 10 imputation flag (monthly)" G1_I1008 = "G1 amount 10 imputation flag (monthly)" G1_I1009 = "G1 amount 10 imputation flag (monthly)" G1_I1010 = "G1 amount 10 imputation flag (monthly)" G1_I1011 = "G1 amount 10 imputation flag (monthly)" G1_I1012 = "G1 amount 10 imputation flag (monthly)" G1_I1013 = "G1 amount 10 imputation flag (monthly)" G1_I1014 = "G1 amount 10 imputation flag (monthly)" G1_I1015 = "G1 amount 10 imputation flag (monthly)" G1_I1016 = "G1 amount 10 imputation flag (monthly)" G1_I1017 = "G1 amount 10 imputation flag (monthly)" G1_I1018 = "G1 amount 10 imputation flag (monthly)" G1_I1019 = "G1 amount 10 imputation flag (monthly)" G1_I1020 = "G1 amount 10 imputation flag (monthly)" G1_I1021 = "G1 amount 10 imputation flag (monthly)" G1_I1022 = "G1 amount 10 imputation flag (monthly)" G1_I1023 = "G1 amount 10 imputation flag (monthly)" G1_I1024 = "G1 amount 10 imputation flag (monthly)" G1_I1025 = "G1 amount 10 imputation flag (monthly)" G1_I1026 = "G1 amount 10 imputation flag (monthly)" G1_I1027 = "G1 amount 10 imputation flag (monthly)" G1_I1028 = "G1 amount 10 imputation flag (monthly)" G1_I1029 = "G1 amount 10 imputation flag (monthly)" G1_I1030 = "G1 amount 10 imputation flag (monthly)" G1_I1031 = "G1 amount 10 imputation flag (monthly)" G1_I1032 = "G1 amount 10 imputation flag (monthly)" G2I10001 = "G2 income imputation flag (100) (month" G2I10002 = "G2 income imputation flag (100) (month" G2I10003 = "G2 income imputation flag (100) (month" G2I10004 = "G2 income imputation flag (100) (month" G2I10005 = "G2 income imputation flag (100) (month" G2I10006 = "G2 income imputation flag (100) (month" G2I10007 = "G2 income imputation flag (100) (month" G2I10008 = "G2 income imputation flag (100) (month" G2I10009 = "G2 income imputation flag (100) (month" G2I10010 = "G2 income imputation flag (100) (month" G2I10011 = "G2 income imputation flag (100) (month" G2I10012 = "G2 income imputation flag (100) (month" G2I10013 = "G2 income imputation flag (100) (month" G2I10014 = "G2 income imputation flag (100) (month" G2I10015 = "G2 income imputation flag (100) (month" G2I10016 = "G2 income imputation flag (100) (month" G2I10017 = "G2 income imputation flag (100) (month" G2I10018 = "G2 income imputation flag (100) (month" G2I10019 = "G2 income imputation flag (100) (month" G2I10020 = "G2 income imputation flag (100) (month" G2I10021 = "G2 income imputation flag (100) (month" G2I10022 = "G2 income imputation flag (100) (month" G2I10023 = "G2 income imputation flag (100) (month" G2I10024 = "G2 income imputation flag (100) (month" G2I10025 = "G2 income imputation flag (100) (month" G2I10026 = "G2 income imputation flag (100) (month" G2I10027 = "G2 income imputation flag (100) (month" G2I10028 = "G2 income imputation flag (100) (month" G2I10029 = "G2 income imputation flag (100) (month" G2I10030 = "G2 income imputation flag (100) (month" G2I10031 = "G2 income imputation flag (100) (month" G2I10032 = "G2 income imputation flag (100) (month" G2I10401 = "G2 income imputation flag (104) (month" G2I10402 = "G2 income imputation flag (104) (month" G2I10403 = "G2 income imputation flag (104) (month" G2I10404 = "G2 income imputation flag (104) (month" G2I10405 = "G2 income imputation flag (104) (month" G2I10406 = "G2 income imputation flag (104) (month" G2I10407 = "G2 income imputation flag (104) (month" G2I10408 = "G2 income imputation flag (104) (month" G2I10409 = "G2 income imputation flag (104) (month" G2I10410 = "G2 income imputation flag (104) (month" G2I10411 = "G2 income imputation flag (104) (month" G2I10412 = "G2 income imputation flag (104) (month" G2I10413 = "G2 income imputation flag (104) (month" G2I10414 = "G2 income imputation flag (104) (month" G2I10415 = "G2 income imputation flag (104) (month" G2I10416 = "G2 income imputation flag (104) (month" G2I10417 = "G2 income imputation flag (104) (month" G2I10418 = "G2 income imputation flag (104) (month" G2I10419 = "G2 income imputation flag (104) (month" G2I10420 = "G2 income imputation flag (104) (month" G2I10421 = "G2 income imputation flag (104) (month" G2I10422 = "G2 income imputation flag (104) (month" G2I10423 = "G2 income imputation flag (104) (month" G2I10424 = "G2 income imputation flag (104) (month" G2I10425 = "G2 income imputation flag (104) (month" G2I10426 = "G2 income imputation flag (104) (month" G2I10427 = "G2 income imputation flag (104) (month" G2I10428 = "G2 income imputation flag (104) (month" G2I10429 = "G2 income imputation flag (104) (month" G2I10430 = "G2 income imputation flag (104) (month" G2I10431 = "G2 income imputation flag (104) (month" G2I10432 = "G2 income imputation flag (104) (month" G2I11001 = "G2 income imputation flag (110) (month" G2I11002 = "G2 income imputation flag (110) (month" G2I11003 = "G2 income imputation flag (110) (month" G2I11004 = "G2 income imputation flag (110) (month" G2I11005 = "G2 income imputation flag (110) (month" G2I11006 = "G2 income imputation flag (110) (month" G2I11007 = "G2 income imputation flag (110) (month" G2I11008 = "G2 income imputation flag (110) (month" G2I11009 = "G2 income imputation flag (110) (month" G2I11010 = "G2 income imputation flag (110) (month" G2I11011 = "G2 income imputation flag (110) (month" G2I11012 = "G2 income imputation flag (110) (month" G2I11013 = "G2 income imputation flag (110) (month" G2I11014 = "G2 income imputation flag (110) (month" G2I11015 = "G2 income imputation flag (110) (month" G2I11016 = "G2 income imputation flag (110) (month" G2I11017 = "G2 income imputation flag (110) (month" G2I11018 = "G2 income imputation flag (110) (month" G2I11019 = "G2 income imputation flag (110) (month" G2I11020 = "G2 income imputation flag (110) (month" G2I11021 = "G2 income imputation flag (110) (month" G2I11022 = "G2 income imputation flag (110) (month" G2I11023 = "G2 income imputation flag (110) (month" G2I11024 = "G2 income imputation flag (110) (month" G2I11025 = "G2 income imputation flag (110) (month" G2I11026 = "G2 income imputation flag (110) (month" G2I11027 = "G2 income imputation flag (110) (month" G2I11028 = "G2 income imputation flag (110) (month" G2I11029 = "G2 income imputation flag (110) (month" G2I11030 = "G2 income imputation flag (110) (month" G2I11031 = "G2 income imputation flag (110) (month" G2I11032 = "G2 income imputation flag (110) (month" G2I12001 = "G2 income imputation flag (120) (month" G2I12002 = "G2 income imputation flag (120) (month" G2I12003 = "G2 income imputation flag (120) (month" G2I12004 = "G2 income imputation flag (120) (month" G2I12005 = "G2 income imputation flag (120) (month" G2I12006 = "G2 income imputation flag (120) (month" G2I12007 = "G2 income imputation flag (120) (month" G2I12008 = "G2 income imputation flag (120) (month" G2I12009 = "G2 income imputation flag (120) (month" G2I12010 = "G2 income imputation flag (120) (month" G2I12011 = "G2 income imputation flag (120) (month" G2I12012 = "G2 income imputation flag (120) (month" G2I12013 = "G2 income imputation flag (120) (month" G2I12014 = "G2 income imputation flag (120) (month" G2I12015 = "G2 income imputation flag (120) (month" G2I12016 = "G2 income imputation flag (120) (month" G2I12017 = "G2 income imputation flag (120) (month" G2I12018 = "G2 income imputation flag (120) (month" G2I12019 = "G2 income imputation flag (120) (month" G2I12020 = "G2 income imputation flag (120) (month" G2I12021 = "G2 income imputation flag (120) (month" G2I12022 = "G2 income imputation flag (120) (month" G2I12023 = "G2 income imputation flag (120) (month" G2I12024 = "G2 income imputation flag (120) (month" G2I12025 = "G2 income imputation flag (120) (month" G2I12026 = "G2 income imputation flag (120) (month" G2I12027 = "G2 income imputation flag (120) (month" G2I12028 = "G2 income imputation flag (120) (month" G2I12029 = "G2 income imputation flag (120) (month" G2I12030 = "G2 income imputation flag (120) (month" G2I12031 = "G2 income imputation flag (120) (month" G2I12032 = "G2 income imputation flag (120) (month" G2I13001 = "G2 income imputation flag (130) (month" G2I13002 = "G2 income imputation flag (130) (month" G2I13003 = "G2 income imputation flag (130) (month" G2I13004 = "G2 income imputation flag (130) (month" G2I13005 = "G2 income imputation flag (130) (month" G2I13006 = "G2 income imputation flag (130) (month" G2I13007 = "G2 income imputation flag (130) (month" G2I13008 = "G2 income imputation flag (130) (month" G2I13009 = "G2 income imputation flag (130) (month" G2I13010 = "G2 income imputation flag (130) (month" G2I13011 = "G2 income imputation flag (130) (month" G2I13012 = "G2 income imputation flag (130) (month" G2I13013 = "G2 income imputation flag (130) (month" G2I13014 = "G2 income imputation flag (130) (month" G2I13015 = "G2 income imputation flag (130) (month" G2I13016 = "G2 income imputation flag (130) (month" G2I13017 = "G2 income imputation flag (130) (month" G2I13018 = "G2 income imputation flag (130) (month" G2I13019 = "G2 income imputation flag (130) (month" G2I13020 = "G2 income imputation flag (130) (month" G2I13021 = "G2 income imputation flag (130) (month" G2I13022 = "G2 income imputation flag (130) (month" G2I13023 = "G2 income imputation flag (130) (month" G2I13024 = "G2 income imputation flag (130) (month" G2I13025 = "G2 income imputation flag (130) (month" G2I13026 = "G2 income imputation flag (130) (month" G2I13027 = "G2 income imputation flag (130) (month" G2I13028 = "G2 income imputation flag (130) (month" G2I13029 = "G2 income imputation flag (130) (month" G2I13030 = "G2 income imputation flag (130) (month" G2I13031 = "G2 income imputation flag (130) (month" G2I13032 = "G2 income imputation flag (130) (month" G2I14001 = "G2 income imputation flag (140) (month" G2I14002 = "G2 income imputation flag (140) (month" G2I14003 = "G2 income imputation flag (140) (month" G2I14004 = "G2 income imputation flag (140) (month" G2I14005 = "G2 income imputation flag (140) (month" G2I14006 = "G2 income imputation flag (140) (month" G2I14007 = "G2 income imputation flag (140) (month" G2I14008 = "G2 income imputation flag (140) (month" G2I14009 = "G2 income imputation flag (140) (month" G2I14010 = "G2 income imputation flag (140) (month" G2I14011 = "G2 income imputation flag (140) (month" G2I14012 = "G2 income imputation flag (140) (month" G2I14013 = "G2 income imputation flag (140) (month" G2I14014 = "G2 income imputation flag (140) (month" G2I14015 = "G2 income imputation flag (140) (month" G2I14016 = "G2 income imputation flag (140) (month" G2I14017 = "G2 income imputation flag (140) (month" G2I14018 = "G2 income imputation flag (140) (month" G2I14019 = "G2 income imputation flag (140) (month" G2I14020 = "G2 income imputation flag (140) (month" G2I14021 = "G2 income imputation flag (140) (month" G2I14022 = "G2 income imputation flag (140) (month" G2I14023 = "G2 income imputation flag (140) (month" G2I14024 = "G2 income imputation flag (140) (month" G2I14025 = "G2 income imputation flag (140) (month" G2I14026 = "G2 income imputation flag (140) (month" G2I14027 = "G2 income imputation flag (140) (month" G2I14028 = "G2 income imputation flag (140) (month" G2I14029 = "G2 income imputation flag (140) (month" G2I14030 = "G2 income imputation flag (140) (month" G2I14031 = "G2 income imputation flag (140) (month" G2I14032 = "G2 income imputation flag (140) (month" ; proc print data=library.sip86fp (obs=6); FORMAT PP_INTV1 PP_INTV. PP_INTV2 PP_INTV. PP_INTV3 PP_INTV. PP_INTV4 PP_INTV. PP_INTV5 PP_INTV. PP_INTV6 PP_INTV. PP_INTV7 PP_INTV. PP_INTV8 PP_INTV. PP_MIS01 PP_MIS. PP_MIS02 PP_MIS. PP_MIS03 PP_MIS. PP_MIS04 PP_MIS. PP_MIS05 PP_MIS. PP_MIS06 PP_MIS. PP_MIS07 PP_MIS. PP_MIS08 PP_MIS. PP_MIS09 PP_MIS. PP_MIS10 PP_MIS. PP_MIS11 PP_MIS. PP_MIS12 PP_MIS. PP_MIS13 PP_MIS. PP_MIS14 PP_MIS. PP_MIS15 PP_MIS. PP_MIS16 PP_MIS. PP_MIS17 PP_MIS. PP_MIS18 PP_MIS. PP_MIS19 PP_MIS. PP_MIS20 PP_MIS. PP_MIS21 PP_MIS. PP_MIS22 PP_MIS. PP_MIS23 PP_MIS. PP_MIS24 PP_MIS. PP_MIS25 PP_MIS. PP_MIS26 PP_MIS. PP_MIS27 PP_MIS. PP_MIS28 PP_MIS. PP_MIS29 PP_MIS. PP_MIS30 PP_MIS. PP_MIS31 PP_MIS. PP_MIS32 PP_MIS. REASLEF1 REASLEF. REASLEF2 REASLEF. REASLEF3 REASLEF. REASLEF4 REASLEF. REASLEF5 REASLEF. REASLEF6 REASLEF. REASLEF7 REASLEF. REASLEF8 REASLEF. HHINST01 HHINST. HHINST02 HHINST. HHINST03 HHINST. HHINST04 HHINST. HHINST05 HHINST. HHINST06 HHINST. HHINST07 HHINST. HHINST08 HHINST. HHINST09 HHINST. HHINST10 HHINST. HHINST11 HHINST. HHINST12 HHINST. HHINST13 HHINST. HHINST14 HHINST. HHINST15 HHINST. HHINST16 HHINST. HHINST17 HHINST. HHINST18 HHINST. HHINST19 HHINST. HHINST20 HHINST. HHINST21 HHINST. HHINST22 HHINST. HHINST23 HHINST. HHINST24 HHINST. HHINST25 HHINST. HHINST26 HHINST. HHINST27 HHINST. HHINST28 HHINST. HHINST29 HHINST. HHINST30 HHINST. HHINST31 HHINST. HHINST32 HHINST. SU_RGC SU_RGC. LGTHHT01 LGTHHT. LGTHHT02 LGTHHT. LGTHHT03 LGTHHT. LGTHHT04 LGTHHT. LGTHHT05 LGTHHT. LGTHHT06 LGTHHT. LGTHHT07 LGTHHT. LGTHHT08 LGTHHT. LGTHHT09 LGTHHT. LGTHHT10 LGTHHT. LGTHHT11 LGTHHT. LGTHHT12 LGTHHT. LGTHHT13 LGTHHT. LGTHHT14 LGTHHT. LGTHHT15 LGTHHT. LGTHHT16 LGTHHT. LGTHHT17 LGTHHT. LGTHHT18 LGTHHT. LGTHHT19 LGTHHT. LGTHHT20 LGTHHT. LGTHHT21 LGTHHT. LGTHHT22 LGTHHT. LGTHHT23 LGTHHT. LGTHHT24 LGTHHT. LGTHHT25 LGTHHT. LGTHHT26 LGTHHT. LGTHHT27 LGTHHT. LGTHHT28 LGTHHT. LGTHHT29 LGTHHT. LGTHHT30 LGTHHT. LGTHHT31 LGTHHT. LGTHHT32 LGTHHT. LGTKEY01 LGTKEY. LGTKEY02 LGTKEY. LGTKEY03 LGTKEY. LGTKEY04 LGTKEY. LGTKEY05 LGTKEY. LGTKEY06 LGTKEY. LGTKEY07 LGTKEY. LGTKEY08 LGTKEY. LGTKEY09 LGTKEY. LGTKEY10 LGTKEY. LGTKEY11 LGTKEY. LGTKEY12 LGTKEY. LGTKEY13 LGTKEY. LGTKEY14 LGTKEY. LGTKEY15 LGTKEY. LGTKEY16 LGTKEY. LGTKEY17 LGTKEY. LGTKEY18 LGTKEY. LGTKEY19 LGTKEY. LGTKEY20 LGTKEY. LGTKEY21 LGTKEY. LGTKEY22 LGTKEY. LGTKEY23 LGTKEY. LGTKEY24 LGTKEY. LGTKEY25 LGTKEY. LGTKEY26 LGTKEY. LGTKEY27 LGTKEY. LGTKEY28 LGTKEY. LGTKEY29 LGTKEY. LGTKEY30 LGTKEY. LGTKEY31 LGTKEY. LGTKEY32 LGTKEY. LGTOTH01 LGTOTH. LGTOTH02 LGTOTH. LGTOTH03 LGTOTH. LGTOTH04 LGTOTH. LGTOTH05 LGTOTH. LGTOTH06 LGTOTH. LGTOTH07 LGTOTH. LGTOTH08 LGTOTH. LGTOTH09 LGTOTH. LGTOTH10 LGTOTH. LGTOTH11 LGTOTH. LGTOTH12 LGTOTH. LGTOTH13 LGTOTH. LGTOTH14 LGTOTH. LGTOTH15 LGTOTH. LGTOTH16 LGTOTH. LGTOTH17 LGTOTH. LGTOTH18 LGTOTH. LGTOTH19 LGTOTH. LGTOTH20 LGTOTH. LGTOTH21 LGTOTH. LGTOTH22 LGTOTH. LGTOTH23 LGTOTH. LGTOTH24 LGTOTH. LGTOTH25 LGTOTH. LGTOTH26 LGTOTH. LGTOTH27 LGTOTH. LGTOTH28 LGTOTH. LGTOTH29 LGTOTH. LGTOTH30 LGTOTH. LGTOTH31 LGTOTH. LGTOTH32 LGTOTH. SEX SEX. RACE RACE. ETHNICTY ETHNICTY. RRP_01 RRP. RRP_02 RRP. RRP_03 RRP. RRP_04 RRP. RRP_05 RRP. RRP_06 RRP. RRP_07 RRP. RRP_08 RRP. RRP_09 RRP. RRP_10 RRP. RRP_11 RRP. RRP_12 RRP. RRP_13 RRP. RRP_14 RRP. RRP_15 RRP. RRP_16 RRP. RRP_17 RRP. RRP_18 RRP. RRP_19 RRP. RRP_20 RRP. RRP_21 RRP. RRP_22 RRP. RRP_23 RRP. RRP_24 RRP. RRP_25 RRP. RRP_26 RRP. RRP_27 RRP. RRP_28 RRP. RRP_29 RRP. RRP_30 RRP. RRP_31 RRP. RRP_32 RRP. AGE_01 AGE. AGE_02 AGE. AGE_03 AGE. AGE_04 AGE. AGE_05 AGE. AGE_06 AGE. AGE_07 AGE. AGE_08 AGE. AGE_09 AGE. AGE_10 AGE. AGE_11 AGE. AGE_12 AGE. AGE_13 AGE. AGE_14 AGE. AGE_15 AGE. AGE_16 AGE. AGE_17 AGE. AGE_18 AGE. AGE_19 AGE. AGE_20 AGE. AGE_21 AGE. AGE_22 AGE. AGE_23 AGE. AGE_24 AGE. AGE_25 AGE. AGE_26 AGE. AGE_27 AGE. AGE_28 AGE. AGE_29 AGE. AGE_30 AGE. AGE_31 AGE. AGE_32 AGE. MS_01 MS. MS_02 MS. MS_03 MS. MS_04 MS. MS_05 MS. MS_06 MS. MS_07 MS. MS_08 MS. MS_09 MS. MS_10 MS. MS_11 MS. MS_12 MS. MS_13 MS. MS_14 MS. MS_15 MS. MS_16 MS. MS_17 MS. MS_18 MS. MS_19 MS. MS_20 MS. MS_21 MS. MS_22 MS. MS_23 MS. MS_24 MS. MS_25 MS. MS_26 MS. MS_27 MS. MS_28 MS. MS_29 MS. MS_30 MS. MS_31 MS. MS_32 MS. FAMTYP01 FAMTYP. FAMTYP02 FAMTYP. FAMTYP03 FAMTYP. FAMTYP04 FAMTYP. FAMTYP05 FAMTYP. FAMTYP06 FAMTYP. FAMTYP07 FAMTYP. FAMTYP08 FAMTYP. FAMTYP09 FAMTYP. FAMTYP10 FAMTYP. FAMTYP11 FAMTYP. FAMTYP12 FAMTYP. FAMTYP13 FAMTYP. FAMTYP14 FAMTYP. FAMTYP15 FAMTYP. FAMTYP16 FAMTYP. FAMTYP17 FAMTYP. FAMTYP18 FAMTYP. FAMTYP19 FAMTYP. FAMTYP20 FAMTYP. FAMTYP21 FAMTYP. FAMTYP22 FAMTYP. FAMTYP23 FAMTYP. FAMTYP24 FAMTYP. FAMTYP25 FAMTYP. FAMTYP26 FAMTYP. FAMTYP27 FAMTYP. FAMTYP28 FAMTYP. FAMTYP29 FAMTYP. FAMTYP30 FAMTYP. FAMTYP31 FAMTYP. FAMTYP32 FAMTYP. FAMREL01 FAMREL. FAMREL02 FAMREL. FAMREL03 FAMREL. FAMREL04 FAMREL. FAMREL05 FAMREL. FAMREL06 FAMREL. FAMREL07 FAMREL. FAMREL08 FAMREL. FAMREL09 FAMREL. FAMREL10 FAMREL. FAMREL11 FAMREL. FAMREL12 FAMREL. FAMREL13 FAMREL. FAMREL14 FAMREL. FAMREL15 FAMREL. FAMREL16 FAMREL. FAMREL17 FAMREL. FAMREL18 FAMREL. FAMREL19 FAMREL. FAMREL20 FAMREL. FAMREL21 FAMREL. FAMREL22 FAMREL. FAMREL23 FAMREL. FAMREL24 FAMREL. FAMREL25 FAMREL. FAMREL26 FAMREL. FAMREL27 FAMREL. FAMREL28 FAMREL. FAMREL29 FAMREL. FAMREL30 FAMREL. FAMREL31 FAMREL. FAMREL32 FAMREL. FAMNUM01 FAMNUM. FAMNUM02 FAMNUM. FAMNUM03 FAMNUM. FAMNUM04 FAMNUM. FAMNUM05 FAMNUM. FAMNUM06 FAMNUM. FAMNUM07 FAMNUM. FAMNUM08 FAMNUM. FAMNUM09 FAMNUM. FAMNUM10 FAMNUM. FAMNUM11 FAMNUM. FAMNUM12 FAMNUM. FAMNUM13 FAMNUM. FAMNUM14 FAMNUM. FAMNUM15 FAMNUM. FAMNUM16 FAMNUM. FAMNUM17 FAMNUM. FAMNUM18 FAMNUM. FAMNUM19 FAMNUM. FAMNUM20 FAMNUM. FAMNUM21 FAMNUM. FAMNUM22 FAMNUM. FAMNUM23 FAMNUM. FAMNUM24 FAMNUM. FAMNUM25 FAMNUM. FAMNUM26 FAMNUM. FAMNUM27 FAMNUM. FAMNUM28 FAMNUM. FAMNUM29 FAMNUM. FAMNUM30 FAMNUM. FAMNUM31 FAMNUM. FAMNUM32 FAMNUM. PNSP_01 PNSP. PNSP_02 PNSP. PNSP_03 PNSP. PNSP_04 PNSP. PNSP_05 PNSP. PNSP_06 PNSP. PNSP_07 PNSP. PNSP_08 PNSP. PNSP_09 PNSP. PNSP_10 PNSP. PNSP_11 PNSP. PNSP_12 PNSP. PNSP_13 PNSP. PNSP_14 PNSP. PNSP_15 PNSP. PNSP_16 PNSP. PNSP_17 PNSP. PNSP_18 PNSP. PNSP_19 PNSP. PNSP_20 PNSP. PNSP_21 PNSP. PNSP_22 PNSP. PNSP_23 PNSP. PNSP_24 PNSP. PNSP_25 PNSP. PNSP_26 PNSP. PNSP_27 PNSP. PNSP_28 PNSP. PNSP_29 PNSP. PNSP_30 PNSP. PNSP_31 PNSP. PNSP_32 PNSP. ENT_SP01 ENT_SP. ENT_SP02 ENT_SP. ENT_SP03 ENT_SP. ENT_SP04 ENT_SP. ENT_SP05 ENT_SP. ENT_SP06 ENT_SP. ENT_SP07 ENT_SP. ENT_SP08 ENT_SP. ENT_SP09 ENT_SP. ENT_SP10 ENT_SP. ENT_SP11 ENT_SP. ENT_SP12 ENT_SP. ENT_SP13 ENT_SP. ENT_SP14 ENT_SP. ENT_SP15 ENT_SP. ENT_SP16 ENT_SP. ENT_SP17 ENT_SP. ENT_SP18 ENT_SP. ENT_SP19 ENT_SP. ENT_SP20 ENT_SP. ENT_SP21 ENT_SP. ENT_SP22 ENT_SP. ENT_SP23 ENT_SP. ENT_SP24 ENT_SP. ENT_SP25 ENT_SP. ENT_SP26 ENT_SP. ENT_SP27 ENT_SP. ENT_SP28 ENT_SP. ENT_SP29 ENT_SP. ENT_SP30 ENT_SP. ENT_SP31 ENT_SP. ENT_SP32 ENT_SP. PNPT_01 PNPT. PNPT_02 PNPT. PNPT_03 PNPT. PNPT_04 PNPT. PNPT_05 PNPT. PNPT_06 PNPT. PNPT_07 PNPT. PNPT_08 PNPT. PNPT_09 PNPT. PNPT_10 PNPT. PNPT_11 PNPT. PNPT_12 PNPT. PNPT_13 PNPT. PNPT_14 PNPT. PNPT_15 PNPT. PNPT_16 PNPT. PNPT_17 PNPT. PNPT_18 PNPT. PNPT_19 PNPT. PNPT_20 PNPT. PNPT_21 PNPT. PNPT_22 PNPT. PNPT_23 PNPT. PNPT_24 PNPT. PNPT_25 PNPT. PNPT_26 PNPT. PNPT_27 PNPT. PNPT_28 PNPT. PNPT_29 PNPT. PNPT_30 PNPT. PNPT_31 PNPT. PNPT_32 PNPT. ENT_PT01 ENT_PT. ENT_PT02 ENT_PT. ENT_PT03 ENT_PT. ENT_PT04 ENT_PT. ENT_PT05 ENT_PT. ENT_PT06 ENT_PT. ENT_PT07 ENT_PT. ENT_PT08 ENT_PT. ENT_PT09 ENT_PT. ENT_PT10 ENT_PT. ENT_PT11 ENT_PT. ENT_PT12 ENT_PT. ENT_PT13 ENT_PT. ENT_PT14 ENT_PT. ENT_PT15 ENT_PT. ENT_PT16 ENT_PT. ENT_PT17 ENT_PT. ENT_PT18 ENT_PT. ENT_PT19 ENT_PT. ENT_PT20 ENT_PT. ENT_PT21 ENT_PT. ENT_PT22 ENT_PT. ENT_PT23 ENT_PT. ENT_PT24 ENT_PT. ENT_PT25 ENT_PT. ENT_PT26 ENT_PT. ENT_PT27 ENT_PT. ENT_PT28 ENT_PT. ENT_PT29 ENT_PT. ENT_PT30 ENT_PT. ENT_PT31 ENT_PT. ENT_PT32 ENT_PT. HIGRADE1 HIGRADE. HIGRADE2 HIGRADE. HIGRADE3 HIGRADE. HIGRADE4 HIGRADE. HIGRADE5 HIGRADE. HIGRADE6 HIGRADE. HIGRADE7 HIGRADE. HIGRADE8 HIGRADE. GRD_CMP1 GRD_CMP. GRD_CMP2 GRD_CMP. GRD_CMP3 GRD_CMP. GRD_CMP4 GRD_CMP. GRD_CMP5 GRD_CMP. GRD_CMP6 GRD_CMP. GRD_CMP7 GRD_CMP. GRD_CMP8 GRD_CMP. U_VET_1 U_VET. U_VET_2 U_VET. U_VET_3 U_VET. U_VET_4 U_VET. U_VET_5 U_VET. U_VET_6 U_VET. U_VET_7 U_VET. U_VET_8 U_VET. IN_AF_1 IN_AF. IN_AF_2 IN_AF. IN_AF_3 IN_AF. IN_AF_4 IN_AF. IN_AF_5 IN_AF. IN_AF_6 IN_AF. IN_AF_7 IN_AF. IN_AF_8 IN_AF. USRV1_1 USRV1L. USRV1_2 USRV1L. USRV1_3 USRV1L. USRV1_4 USRV1L. USRV1_5 USRV1L. USRV1_6 USRV1L. USRV1_7 USRV1L. USRV1_8 USRV1L. USRV2_1 USRV2L. USRV2_2 USRV2L. USRV2_3 USRV2L. USRV2_4 USRV2L. USRV2_5 USRV2L. USRV2_6 USRV2L. USRV2_7 USRV2L. USRV2_8 USRV2L. USRV3_1 USRV3L. USRV3_2 USRV3L. USRV3_3 USRV3L. USRV3_4 USRV3L. USRV3_5 USRV3L. USRV3_6 USRV3L. USRV3_7 USRV3L. USRV3_8 USRV3L. BRTHMN BRTHMN. BRTHYR BRTHYR. U_PNGD1 U_PNGD. U_PNGD2 U_PNGD. U_PNGD3 U_PNGD. U_PNGD4 U_PNGD. U_PNGD5 U_PNGD. U_PNGD6 U_PNGD. U_PNGD7 U_PNGD. U_PNGD8 U_PNGD. ENTID_G1 ENTID_G. ENTID_G2 ENTID_G. ENTID_G3 ENTID_G. ENTID_G4 ENTID_G. ENTID_G5 ENTID_G. ENTID_G6 ENTID_G. ENTID_G7 ENTID_G. ENTID_G8 ENTID_G. U_LVQT01 U_LVQT. U_LVQT02 U_LVQT. U_LVQT03 U_LVQT. U_LVQT04 U_LVQT. U_LVQT05 U_LVQT. U_LVQT06 U_LVQT. U_LVQT07 U_LVQT. U_LVQT08 U_LVQT. U_LVQT09 U_LVQT. U_LVQT10 U_LVQT. U_LVQT11 U_LVQT. U_LVQT12 U_LVQT. U_LVQT13 U_LVQT. U_LVQT14 U_LVQT. U_LVQT15 U_LVQT. U_LVQT16 U_LVQT. U_LVQT17 U_LVQT. U_LVQT18 U_LVQT. U_LVQT19 U_LVQT. U_LVQT20 U_LVQT. U_LVQT21 U_LVQT. U_LVQT22 U_LVQT. U_LVQT23 U_LVQT. U_LVQT24 U_LVQT. U_LVQT25 U_LVQT. U_LVQT26 U_LVQT. U_LVQT27 U_LVQT. U_LVQT28 U_LVQT. U_LVQT29 U_LVQT. U_LVQT30 U_LVQT. U_LVQT31 U_LVQT. U_LVQT32 U_LVQT. TENURE01 TENURE. TENURE02 TENURE. TENURE03 TENURE. TENURE04 TENURE. TENURE05 TENURE. TENURE06 TENURE. TENURE07 TENURE. TENURE08 TENURE. TENURE09 TENURE. TENURE10 TENURE. TENURE11 TENURE. TENURE12 TENURE. TENURE13 TENURE. TENURE14 TENURE. TENURE15 TENURE. TENURE16 TENURE. TENURE17 TENURE. TENURE18 TENURE. TENURE19 TENURE. TENURE20 TENURE. TENURE21 TENURE. TENURE22 TENURE. TENURE23 TENURE. TENURE24 TENURE. TENURE25 TENURE. TENURE26 TENURE. TENURE27 TENURE. TENURE28 TENURE. TENURE29 TENURE. TENURE30 TENURE. TENURE31 TENURE. TENURE32 TENURE. PUBHS_01 PUBHS. PUBHS_02 PUBHS. PUBHS_03 PUBHS. PUBHS_04 PUBHS. PUBHS_05 PUBHS. PUBHS_06 PUBHS. PUBHS_07 PUBHS. PUBHS_08 PUBHS. PUBHS_09 PUBHS. PUBHS_10 PUBHS. PUBHS_11 PUBHS. PUBHS_12 PUBHS. PUBHS_13 PUBHS. PUBHS_14 PUBHS. PUBHS_15 PUBHS. PUBHS_16 PUBHS. PUBHS_17 PUBHS. PUBHS_18 PUBHS. PUBHS_19 PUBHS. PUBHS_20 PUBHS. PUBHS_21 PUBHS. PUBHS_22 PUBHS. PUBHS_23 PUBHS. PUBHS_24 PUBHS. PUBHS_25 PUBHS. PUBHS_26 PUBHS. PUBHS_27 PUBHS. PUBHS_28 PUBHS. PUBHS_29 PUBHS. PUBHS_30 PUBHS. PUBHS_31 PUBHS. PUBHS_32 PUBHS. LOW_RE01 LOW_RE. LOW_RE02 LOW_RE. LOW_RE03 LOW_RE. LOW_RE04 LOW_RE. LOW_RE05 LOW_RE. LOW_RE06 LOW_RE. LOW_RE07 LOW_RE. LOW_RE08 LOW_RE. LOW_RE09 LOW_RE. LOW_RE10 LOW_RE. LOW_RE11 LOW_RE. LOW_RE12 LOW_RE. LOW_RE13 LOW_RE. LOW_RE14 LOW_RE. LOW_RE15 LOW_RE. LOW_RE16 LOW_RE. LOW_RE17 LOW_RE. LOW_RE18 LOW_RE. LOW_RE19 LOW_RE. LOW_RE20 LOW_RE. LOW_RE21 LOW_RE. LOW_RE22 LOW_RE. LOW_RE23 LOW_RE. LOW_RE24 LOW_RE. LOW_RE25 LOW_RE. LOW_RE26 LOW_RE. LOW_RE27 LOW_RE. LOW_RE28 LOW_RE. LOW_RE29 LOW_RE. LOW_RE30 LOW_RE. LOW_RE31 LOW_RE. LOW_RE32 LOW_RE. ENRGY_Y1 ENRGY_Y. ENRGY_Y2 ENRGY_Y. ENRGY_Y3 ENRGY_Y. ENRGY_Y4 ENRGY_Y. ENRGY_Y5 ENRGY_Y. ENRGY_Y6 ENRGY_Y. ENRGY_Y7 ENRGY_Y. ENRGY_Y8 ENRGY_Y. H_ENRGY1 H_ENRGY. H_ENRGY2 H_ENRGY. H_ENRGY3 H_ENRGY. H_ENRGY4 H_ENRGY. H_ENRGY5 H_ENRGY. H_ENRGY6 H_ENRGY. H_ENRGY7 H_ENRGY. H_ENRGY8 H_ENRGY. H_48241 H_4824L. H_48242 H_4824L. H_48243 H_4824L. H_48244 H_4824L. H_48245 H_4824L. H_48246 H_4824L. H_48247 H_4824L. H_48248 H_4824L. H_LUNCH1 H_LUNCH. H_LUNCH2 H_LUNCH. H_LUNCH3 H_LUNCH. H_LUNCH4 H_LUNCH. H_LUNCH5 H_LUNCH. H_LUNCH6 H_LUNCH. H_LUNCH7 H_LUNCH. H_LUNCH8 H_LUNCH. H_48341 H_4834L. H_48342 H_4834L. H_48343 H_4834L. H_48344 H_4834L. H_48345 H_4834L. H_48346 H_4834L. H_48347 H_4834L. H_48348 H_4834L. H_BREAK1 H_BREAK. H_BREAK2 H_BREAK. H_BREAK3 H_BREAK. H_BREAK4 H_BREAK. H_BREAK5 H_BREAK. H_BREAK6 H_BREAK. H_BREAK7 H_BREAK. H_BREAK8 H_BREAK. H_48301 H_4830L. H_48302 H_4830L. H_48303 H_4830L. H_48304 H_4830L. H_48305 H_4830L. H_48306 H_4830L. H_48307 H_4830L. H_48308 H_4830L. PUBRNTYN PUBRNTYN. PUBRNAMT PUBRNAMT. UTLPAYYN UTLPAYYN. FULLRENT FULLRENT. STATE_1 STATE. STATE_2 STATE. STATE_3 STATE. STATE_4 STATE. STATE_5 STATE. STATE_6 STATE. STATE_7 STATE. STATE_8 STATE. SC1332 SC1332L. SC1334 SC1334L. SC1336 SC1336L. SC1346 SC1346L. SC1348 SC1348L. SC1360 SC1360L. SC1418 SC1418L. SC1456 SC1456L. MEDCODE MEDCODE. SC1468 SC1468L. SC1472 SC1472L. DISAB DISAB. ATT_SCH1 ATT_SCH. ATT_SCH2 ATT_SCH. ATT_SCH3 ATT_SCH. ATT_SCH4 ATT_SCH. ATT_SCH5 ATT_SCH. ATT_SCH6 ATT_SCH. ATT_SCH7 ATT_SCH. ATT_SCH8 ATT_SCH. ENRL_M01 ENRL_M. ENRL_M02 ENRL_M. ENRL_M03 ENRL_M. ENRL_M04 ENRL_M. ENRL_M05 ENRL_M. ENRL_M06 ENRL_M. ENRL_M07 ENRL_M. ENRL_M08 ENRL_M. ENRL_M09 ENRL_M. ENRL_M10 ENRL_M. ENRL_M11 ENRL_M. ENRL_M12 ENRL_M. ENRL_M13 ENRL_M. ENRL_M14 ENRL_M. ENRL_M15 ENRL_M. ENRL_M16 ENRL_M. ENRL_M17 ENRL_M. ENRL_M18 ENRL_M. ENRL_M19 ENRL_M. ENRL_M20 ENRL_M. ENRL_M21 ENRL_M. ENRL_M22 ENRL_M. ENRL_M23 ENRL_M. ENRL_M24 ENRL_M. ENRL_M25 ENRL_M. ENRL_M26 ENRL_M. ENRL_M27 ENRL_M. ENRL_M28 ENRL_M. ENRL_M29 ENRL_M. ENRL_M30 ENRL_M. ENRL_M31 ENRL_M. ENRL_M32 ENRL_M. ED_LEVE1 ED_LEVE. ED_LEVE2 ED_LEVE. ED_LEVE3 ED_LEVE. ED_LEVE4 ED_LEVE. ED_LEVE5 ED_LEVE. ED_LEVE6 ED_LEVE. ED_LEVE7 ED_LEVE. ED_LEVE8 ED_LEVE. ED_FINA1 ED_FINA. ED_FINA2 ED_FINA. ED_FINA3 ED_FINA. ED_FINA4 ED_FINA. ED_FINA5 ED_FINA. ED_FINA6 ED_FINA. ED_FINA7 ED_FINA. ED_FINA8 ED_FINA. SC16721 SC1672L. SC16722 SC1672L. SC16723 SC1672L. SC16724 SC1672L. SC16725 SC1672L. SC16726 SC1672L. SC16727 SC1672L. SC16728 SC1672L. SC16741 SC1674L. SC16742 SC1674L. SC16743 SC1674L. SC16744 SC1674L. SC16745 SC1674L. SC16746 SC1674L. SC16747 SC1674L. SC16748 SC1674L. SC16761 SC1676L. SC16762 SC1676L. SC16763 SC1676L. SC16764 SC1676L. SC16765 SC1676L. SC16766 SC1676L. SC16767 SC1676L. SC16768 SC1676L. SC16781 SC1678L. SC16782 SC1678L. SC16783 SC1678L. SC16784 SC1678L. SC16785 SC1678L. SC16786 SC1678L. SC16787 SC1678L. SC16788 SC1678L. SC16801 SC1680L. SC16802 SC1680L. SC16803 SC1680L. SC16804 SC1680L. SC16805 SC1680L. SC16806 SC1680L. SC16807 SC1680L. SC16808 SC1680L. SC16821 SC1682L. SC16822 SC1682L. SC16823 SC1682L. SC16824 SC1682L. SC16825 SC1682L. SC16826 SC1682L. SC16827 SC1682L. SC16828 SC1682L. SC16841 SC1684L. SC16842 SC1684L. SC16843 SC1684L. SC16844 SC1684L. SC16845 SC1684L. SC16846 SC1684L. SC16847 SC1684L. SC16848 SC1684L. SC16861 SC1686L. SC16862 SC1686L. SC16863 SC1686L. SC16864 SC1686L. SC16865 SC1686L. SC16866 SC1686L. SC16867 SC1686L. SC16868 SC1686L. SC16881 SC1688L. SC16882 SC1688L. SC16883 SC1688L. SC16884 SC1688L. SC16885 SC1688L. SC16886 SC1688L. SC16887 SC1688L. SC16888 SC1688L. SC16901 SC1690L. SC16902 SC1690L. SC16903 SC1690L. SC16904 SC1690L. SC16905 SC1690L. SC16906 SC1690L. SC16907 SC1690L. SC16908 SC1690L. SC16921 SC1692L. SC16922 SC1692L. SC16923 SC1692L. SC16924 SC1692L. SC16925 SC1692L. SC16926 SC1692L. SC16927 SC1692L. SC16928 SC1692L. SC16961 SC1696L. SC16962 SC1696L. SC16963 SC1696L. SC16964 SC1696L. SC16965 SC1696L. SC16966 SC1696L. SC16967 SC1696L. SC16968 SC1696L. TELEPHON TELEPHON. ESR_01 ESR. ESR_02 ESR. ESR_03 ESR. ESR_04 ESR. ESR_05 ESR. ESR_06 ESR. ESR_07 ESR. ESR_08 ESR. ESR_09 ESR. ESR_10 ESR. ESR_11 ESR. ESR_12 ESR. ESR_13 ESR. ESR_14 ESR. ESR_15 ESR. ESR_16 ESR. ESR_17 ESR. ESR_18 ESR. ESR_19 ESR. ESR_20 ESR. ESR_21 ESR. ESR_22 ESR. ESR_23 ESR. ESR_24 ESR. ESR_25 ESR. ESR_26 ESR. ESR_27 ESR. ESR_28 ESR. ESR_29 ESR. ESR_30 ESR. ESR_31 ESR. ESR_32 ESR. WKSPER01 WKSPER. WKSPER02 WKSPER. WKSPER03 WKSPER. WKSPER04 WKSPER. WKSPER05 WKSPER. WKSPER06 WKSPER. WKSPER07 WKSPER. WKSPER08 WKSPER. WKSPER09 WKSPER. WKSPER10 WKSPER. WKSPER11 WKSPER. WKSPER12 WKSPER. WKSPER13 WKSPER. WKSPER14 WKSPER. WKSPER15 WKSPER. WKSPER16 WKSPER. WKSPER17 WKSPER. WKSPER18 WKSPER. WKSPER19 WKSPER. WKSPER20 WKSPER. WKSPER21 WKSPER. WKSPER22 WKSPER. WKSPER23 WKSPER. WKSPER24 WKSPER. WKSPER25 WKSPER. WKSPER26 WKSPER. WKSPER27 WKSPER. WKSPER28 WKSPER. WKSPER29 WKSPER. WKSPER30 WKSPER. WKSPER31 WKSPER. WKSPER32 WKSPER. WKSJB_01 WKSJB. WKSJB_02 WKSJB. WKSJB_03 WKSJB. WKSJB_04 WKSJB. WKSJB_05 WKSJB. WKSJB_06 WKSJB. WKSJB_07 WKSJB. WKSJB_08 WKSJB. WKSJB_09 WKSJB. WKSJB_10 WKSJB. WKSJB_11 WKSJB. WKSJB_12 WKSJB. WKSJB_13 WKSJB. WKSJB_14 WKSJB. WKSJB_15 WKSJB. WKSJB_16 WKSJB. WKSJB_17 WKSJB. WKSJB_18 WKSJB. WKSJB_19 WKSJB. WKSJB_20 WKSJB. WKSJB_21 WKSJB. WKSJB_22 WKSJB. WKSJB_23 WKSJB. WKSJB_24 WKSJB. WKSJB_25 WKSJB. WKSJB_26 WKSJB. WKSJB_27 WKSJB. WKSJB_28 WKSJB. WKSJB_29 WKSJB. WKSJB_30 WKSJB. WKSJB_31 WKSJB. WKSJB_32 WKSJB. MTHWOP01 MTHWOP. MTHWOP02 MTHWOP. MTHWOP03 MTHWOP. MTHWOP04 MTHWOP. MTHWOP05 MTHWOP. MTHWOP06 MTHWOP. MTHWOP07 MTHWOP. MTHWOP08 MTHWOP. MTHWOP09 MTHWOP. MTHWOP10 MTHWOP. MTHWOP11 MTHWOP. MTHWOP12 MTHWOP. MTHWOP13 MTHWOP. MTHWOP14 MTHWOP. MTHWOP15 MTHWOP. MTHWOP16 MTHWOP. MTHWOP17 MTHWOP. MTHWOP18 MTHWOP. MTHWOP19 MTHWOP. MTHWOP20 MTHWOP. MTHWOP21 MTHWOP. MTHWOP22 MTHWOP. MTHWOP23 MTHWOP. MTHWOP24 MTHWOP. MTHWOP25 MTHWOP. MTHWOP26 MTHWOP. MTHWOP27 MTHWOP. MTHWOP28 MTHWOP. MTHWOP29 MTHWOP. MTHWOP30 MTHWOP. MTHWOP31 MTHWOP. MTHWOP32 MTHWOP. WEEKSL01 WEEKSL. WEEKSL02 WEEKSL. WEEKSL03 WEEKSL. WEEKSL04 WEEKSL. WEEKSL05 WEEKSL. WEEKSL06 WEEKSL. WEEKSL07 WEEKSL. WEEKSL08 WEEKSL. WEEKSL09 WEEKSL. WEEKSL10 WEEKSL. WEEKSL11 WEEKSL. WEEKSL12 WEEKSL. WEEKSL13 WEEKSL. WEEKSL14 WEEKSL. WEEKSL15 WEEKSL. WEEKSL16 WEEKSL. WEEKSL17 WEEKSL. WEEKSL18 WEEKSL. WEEKSL19 WEEKSL. WEEKSL20 WEEKSL. WEEKSL21 WEEKSL. WEEKSL22 WEEKSL. WEEKSL23 WEEKSL. WEEKSL24 WEEKSL. WEEKSL25 WEEKSL. WEEKSL26 WEEKSL. WEEKSL27 WEEKSL. WEEKSL28 WEEKSL. WEEKSL29 WEEKSL. WEEKSL30 WEEKSL. WEEKSL31 WEEKSL. WEEKSL32 WEEKSL. SC12301 SC1230L. SC12302 SC1230L. SC12303 SC1230L. SC12304 SC1230L. SC12305 SC1230L. SC12306 SC1230L. SC12307 SC1230L. SC12308 SC1230L. WS1_EI01 WS1_EI. WS1_EI02 WS1_EI. WS1_EI03 WS1_EI. WS1_EI04 WS1_EI. WS1_EI05 WS1_EI. WS1_EI06 WS1_EI. WS1_EI07 WS1_EI. WS1_EI08 WS1_EI. WS1_EI09 WS1_EI. WS1_EI10 WS1_EI. WS1_EI11 WS1_EI. WS1_EI12 WS1_EI. WS1_EI13 WS1_EI. WS1_EI14 WS1_EI. WS1_EI15 WS1_EI. WS1_EI16 WS1_EI. WS1_EI17 WS1_EI. WS1_EI18 WS1_EI. WS1_EI19 WS1_EI. WS1_EI20 WS1_EI. WS1_EI21 WS1_EI. WS1_EI22 WS1_EI. WS1_EI23 WS1_EI. WS1_EI24 WS1_EI. WS1_EI25 WS1_EI. WS1_EI26 WS1_EI. WS1_EI27 WS1_EI. WS1_EI28 WS1_EI. WS1_EI29 WS1_EI. WS1_EI30 WS1_EI. WS1_EI31 WS1_EI. WS1_EI32 WS1_EI. WS2_EI01 WS2_EI. WS2_EI02 WS2_EI. WS2_EI03 WS2_EI. WS2_EI04 WS2_EI. WS2_EI05 WS2_EI. WS2_EI06 WS2_EI. WS2_EI07 WS2_EI. WS2_EI08 WS2_EI. WS2_EI09 WS2_EI. WS2_EI10 WS2_EI. WS2_EI11 WS2_EI. WS2_EI12 WS2_EI. WS2_EI13 WS2_EI. WS2_EI14 WS2_EI. WS2_EI15 WS2_EI. WS2_EI16 WS2_EI. WS2_EI17 WS2_EI. WS2_EI18 WS2_EI. WS2_EI19 WS2_EI. WS2_EI20 WS2_EI. WS2_EI21 WS2_EI. WS2_EI22 WS2_EI. WS2_EI23 WS2_EI. WS2_EI24 WS2_EI. WS2_EI25 WS2_EI. WS2_EI26 WS2_EI. WS2_EI27 WS2_EI. WS2_EI28 WS2_EI. WS2_EI29 WS2_EI. WS2_EI30 WS2_EI. WS2_EI31 WS2_EI. WS2_EI32 WS2_EI. WS1_CL01 WS1_CL. WS1_CL02 WS1_CL. WS1_CL03 WS1_CL. WS1_CL04 WS1_CL. WS1_CL05 WS1_CL. WS1_CL06 WS1_CL. WS1_CL07 WS1_CL. WS1_CL08 WS1_CL. WS1_CL09 WS1_CL. WS1_CL10 WS1_CL. WS1_CL11 WS1_CL. WS1_CL12 WS1_CL. WS1_CL13 WS1_CL. WS1_CL14 WS1_CL. WS1_CL15 WS1_CL. WS1_CL16 WS1_CL. WS1_CL17 WS1_CL. WS1_CL18 WS1_CL. WS1_CL19 WS1_CL. WS1_CL20 WS1_CL. WS1_CL21 WS1_CL. WS1_CL22 WS1_CL. WS1_CL23 WS1_CL. WS1_CL24 WS1_CL. WS1_CL25 WS1_CL. WS1_CL26 WS1_CL. WS1_CL27 WS1_CL. WS1_CL28 WS1_CL. WS1_CL29 WS1_CL. WS1_CL30 WS1_CL. WS1_CL31 WS1_CL. WS1_CL32 WS1_CL. WS2_CL01 WS2_CL. WS2_CL02 WS2_CL. WS2_CL03 WS2_CL. WS2_CL04 WS2_CL. WS2_CL05 WS2_CL. WS2_CL06 WS2_CL. WS2_CL07 WS2_CL. WS2_CL08 WS2_CL. WS2_CL09 WS2_CL. WS2_CL10 WS2_CL. WS2_CL11 WS2_CL. WS2_CL12 WS2_CL. WS2_CL13 WS2_CL. WS2_CL14 WS2_CL. WS2_CL15 WS2_CL. WS2_CL16 WS2_CL. WS2_CL17 WS2_CL. WS2_CL18 WS2_CL. WS2_CL19 WS2_CL. WS2_CL20 WS2_CL. WS2_CL21 WS2_CL. WS2_CL22 WS2_CL. WS2_CL23 WS2_CL. WS2_CL24 WS2_CL. WS2_CL25 WS2_CL. WS2_CL26 WS2_CL. WS2_CL27 WS2_CL. WS2_CL28 WS2_CL. WS2_CL29 WS2_CL. WS2_CL30 WS2_CL. WS2_CL31 WS2_CL. WS2_CL32 WS2_CL. WS1_WK01 WS1_WK. WS1_WK02 WS1_WK. WS1_WK03 WS1_WK. WS1_WK04 WS1_WK. WS1_WK05 WS1_WK. WS1_WK06 WS1_WK. WS1_WK07 WS1_WK. WS1_WK08 WS1_WK. WS1_WK09 WS1_WK. WS1_WK10 WS1_WK. WS1_WK11 WS1_WK. WS1_WK12 WS1_WK. WS1_WK13 WS1_WK. WS1_WK14 WS1_WK. WS1_WK15 WS1_WK. WS1_WK16 WS1_WK. WS1_WK17 WS1_WK. WS1_WK18 WS1_WK. WS1_WK19 WS1_WK. WS1_WK20 WS1_WK. WS1_WK21 WS1_WK. WS1_WK22 WS1_WK. WS1_WK23 WS1_WK. WS1_WK24 WS1_WK. WS1_WK25 WS1_WK. WS1_WK26 WS1_WK. WS1_WK27 WS1_WK. WS1_WK28 WS1_WK. WS1_WK29 WS1_WK. WS1_WK30 WS1_WK. WS1_WK31 WS1_WK. WS1_WK32 WS1_WK. WS2_WK01 WS2_WK. WS2_WK02 WS2_WK. WS2_WK03 WS2_WK. WS2_WK04 WS2_WK. WS2_WK05 WS2_WK. WS2_WK06 WS2_WK. WS2_WK07 WS2_WK. WS2_WK08 WS2_WK. WS2_WK09 WS2_WK. WS2_WK10 WS2_WK. WS2_WK11 WS2_WK. WS2_WK12 WS2_WK. WS2_WK13 WS2_WK. WS2_WK14 WS2_WK. WS2_WK15 WS2_WK. WS2_WK16 WS2_WK. WS2_WK17 WS2_WK. WS2_WK18 WS2_WK. WS2_WK19 WS2_WK. WS2_WK20 WS2_WK. WS2_WK21 WS2_WK. WS2_WK22 WS2_WK. WS2_WK23 WS2_WK. WS2_WK24 WS2_WK. WS2_WK25 WS2_WK. WS2_WK26 WS2_WK. WS2_WK27 WS2_WK. WS2_WK28 WS2_WK. WS2_WK29 WS2_WK. WS2_WK30 WS2_WK. WS2_WK31 WS2_WK. WS2_WK32 WS2_WK. W2024_01 W2024L. W2024_02 W2024L. W2024_03 W2024L. W2024_04 W2024L. W2024_05 W2024L. W2024_06 W2024L. W2024_07 W2024L. W2024_08 W2024L. W2024_09 W2024L. W2024_10 W2024L. W2024_11 W2024L. W2024_12 W2024L. W2024_13 W2024L. W2024_14 W2024L. W2024_15 W2024L. W2024_16 W2024L. W2024_17 W2024L. W2024_18 W2024L. W2024_19 W2024L. W2024_20 W2024L. W2024_21 W2024L. W2024_22 W2024L. W2024_23 W2024L. W2024_24 W2024L. W2024_25 W2024L. W2024_26 W2024L. W2024_27 W2024L. W2024_28 W2024L. W2024_29 W2024L. W2024_30 W2024L. W2024_31 W2024L. W2024_32 W2024L. W2124_01 W2124L. W2124_02 W2124L. W2124_03 W2124L. W2124_04 W2124L. W2124_05 W2124L. W2124_06 W2124L. W2124_07 W2124L. W2124_08 W2124L. W2124_09 W2124L. W2124_10 W2124L. W2124_11 W2124L. W2124_12 W2124L. W2124_13 W2124L. W2124_14 W2124L. W2124_15 W2124L. W2124_16 W2124L. W2124_17 W2124L. W2124_18 W2124L. W2124_19 W2124L. W2124_20 W2124L. W2124_21 W2124L. W2124_22 W2124L. W2124_23 W2124L. W2124_24 W2124L. W2124_25 W2124L. W2124_26 W2124L. W2124_27 W2124L. W2124_28 W2124L. W2124_29 W2124L. W2124_30 W2124L. W2124_31 W2124L. W2124_32 W2124L. W2028_01 W2028L. W2028_02 W2028L. W2028_03 W2028L. W2028_04 W2028L. W2028_05 W2028L. W2028_06 W2028L. W2028_07 W2028L. W2028_08 W2028L. W2028_09 W2028L. W2028_10 W2028L. W2028_11 W2028L. W2028_12 W2028L. W2028_13 W2028L. W2028_14 W2028L. W2028_15 W2028L. W2028_16 W2028L. W2028_17 W2028L. W2028_18 W2028L. W2028_19 W2028L. W2028_20 W2028L. W2028_21 W2028L. W2028_22 W2028L. W2028_23 W2028L. W2028_24 W2028L. W2028_25 W2028L. W2028_26 W2028L. W2028_27 W2028L. W2028_28 W2028L. W2028_29 W2028L. W2028_30 W2028L. W2028_31 W2028L. W2028_32 W2028L. W2128_01 W2128L. W2128_02 W2128L. W2128_03 W2128L. W2128_04 W2128L. W2128_05 W2128L. W2128_06 W2128L. W2128_07 W2128L. W2128_08 W2128L. W2128_09 W2128L. W2128_10 W2128L. W2128_11 W2128L. W2128_12 W2128L. W2128_13 W2128L. W2128_14 W2128L. W2128_15 W2128L. W2128_16 W2128L. W2128_17 W2128L. W2128_18 W2128L. W2128_19 W2128L. W2128_20 W2128L. W2128_21 W2128L. W2128_22 W2128L. W2128_23 W2128L. W2128_24 W2128L. W2128_25 W2128L. W2128_26 W2128L. W2128_27 W2128L. W2128_28 W2128L. W2128_29 W2128L. W2128_30 W2128L. W2128_31 W2128L. W2128_32 W2128L. S2202_01 S2202L. S2202_02 S2202L. S2202_03 S2202L. S2202_04 S2202L. S2202_05 S2202L. S2202_06 S2202L. S2202_07 S2202L. S2202_08 S2202L. S2202_09 S2202L. S2202_10 S2202L. S2202_11 S2202L. S2202_12 S2202L. S2202_13 S2202L. S2202_14 S2202L. S2202_15 S2202L. S2202_16 S2202L. S2202_17 S2202L. S2202_18 S2202L. S2202_19 S2202L. S2202_20 S2202L. S2202_21 S2202L. S2202_22 S2202L. S2202_23 S2202L. S2202_24 S2202L. S2202_25 S2202L. S2202_26 S2202L. S2202_27 S2202L. S2202_28 S2202L. S2202_29 S2202L. S2202_30 S2202L. S2202_31 S2202L. S2202_32 S2202L. S2302_01 S2302L. S2302_02 S2302L. S2302_03 S2302L. S2302_04 S2302L. S2302_05 S2302L. S2302_06 S2302L. S2302_07 S2302L. S2302_08 S2302L. S2302_09 S2302L. S2302_10 S2302L. S2302_11 S2302L. S2302_12 S2302L. S2302_13 S2302L. S2302_14 S2302L. S2302_15 S2302L. S2302_16 S2302L. S2302_17 S2302L. S2302_18 S2302L. S2302_19 S2302L. S2302_20 S2302L. S2302_21 S2302L. S2302_22 S2302L. S2302_23 S2302L. S2302_24 S2302L. S2302_25 S2302L. S2302_26 S2302L. S2302_27 S2302L. S2302_28 S2302L. S2302_29 S2302L. S2302_30 S2302L. S2302_31 S2302L. S2302_32 S2302L. SE1_TY01 SE1_TY. SE1_TY02 SE1_TY. SE1_TY03 SE1_TY. SE1_TY04 SE1_TY. SE1_TY05 SE1_TY. SE1_TY06 SE1_TY. SE1_TY07 SE1_TY. SE1_TY08 SE1_TY. SE1_TY09 SE1_TY. SE1_TY10 SE1_TY. SE1_TY11 SE1_TY. SE1_TY12 SE1_TY. SE1_TY13 SE1_TY. SE1_TY14 SE1_TY. SE1_TY15 SE1_TY. SE1_TY16 SE1_TY. SE1_TY17 SE1_TY. SE1_TY18 SE1_TY. SE1_TY19 SE1_TY. SE1_TY20 SE1_TY. SE1_TY21 SE1_TY. SE1_TY22 SE1_TY. SE1_TY23 SE1_TY. SE1_TY24 SE1_TY. SE1_TY25 SE1_TY. SE1_TY26 SE1_TY. SE1_TY27 SE1_TY. SE1_TY28 SE1_TY. SE1_TY29 SE1_TY. SE1_TY30 SE1_TY. SE1_TY31 SE1_TY. SE1_TY32 SE1_TY. SE2_TY01 SE2_TY. SE2_TY02 SE2_TY. SE2_TY03 SE2_TY. SE2_TY04 SE2_TY. SE2_TY05 SE2_TY. SE2_TY06 SE2_TY. SE2_TY07 SE2_TY. SE2_TY08 SE2_TY. SE2_TY09 SE2_TY. SE2_TY10 SE2_TY. SE2_TY11 SE2_TY. SE2_TY12 SE2_TY. SE2_TY13 SE2_TY. SE2_TY14 SE2_TY. SE2_TY15 SE2_TY. SE2_TY16 SE2_TY. SE2_TY17 SE2_TY. SE2_TY18 SE2_TY. SE2_TY19 SE2_TY. SE2_TY20 SE2_TY. SE2_TY21 SE2_TY. SE2_TY22 SE2_TY. SE2_TY23 SE2_TY. SE2_TY24 SE2_TY. SE2_TY25 SE2_TY. SE2_TY26 SE2_TY. SE2_TY27 SE2_TY. SE2_TY28 SE2_TY. SE2_TY29 SE2_TY. SE2_TY30 SE2_TY. SE2_TY31 SE2_TY. SE2_TY32 SE2_TY. SE1_IN01 SE1_IN. SE1_IN02 SE1_IN. SE1_IN03 SE1_IN. SE1_IN04 SE1_IN. SE1_IN05 SE1_IN. SE1_IN06 SE1_IN. SE1_IN07 SE1_IN. SE1_IN08 SE1_IN. SE1_IN09 SE1_IN. SE1_IN10 SE1_IN. SE1_IN11 SE1_IN. SE1_IN12 SE1_IN. SE1_IN13 SE1_IN. SE1_IN14 SE1_IN. SE1_IN15 SE1_IN. SE1_IN16 SE1_IN. SE1_IN17 SE1_IN. SE1_IN18 SE1_IN. SE1_IN19 SE1_IN. SE1_IN20 SE1_IN. SE1_IN21 SE1_IN. SE1_IN22 SE1_IN. SE1_IN23 SE1_IN. SE1_IN24 SE1_IN. SE1_IN25 SE1_IN. SE1_IN26 SE1_IN. SE1_IN27 SE1_IN. SE1_IN28 SE1_IN. SE1_IN29 SE1_IN. SE1_IN30 SE1_IN. SE1_IN31 SE1_IN. SE1_IN32 SE1_IN. SE2_IN01 SE2_IN. SE2_IN02 SE2_IN. SE2_IN03 SE2_IN. SE2_IN04 SE2_IN. SE2_IN05 SE2_IN. SE2_IN06 SE2_IN. SE2_IN07 SE2_IN. SE2_IN08 SE2_IN. SE2_IN09 SE2_IN. SE2_IN10 SE2_IN. SE2_IN11 SE2_IN. SE2_IN12 SE2_IN. SE2_IN13 SE2_IN. SE2_IN14 SE2_IN. SE2_IN15 SE2_IN. SE2_IN16 SE2_IN. SE2_IN17 SE2_IN. SE2_IN18 SE2_IN. SE2_IN19 SE2_IN. SE2_IN20 SE2_IN. SE2_IN21 SE2_IN. SE2_IN22 SE2_IN. SE2_IN23 SE2_IN. SE2_IN24 SE2_IN. SE2_IN25 SE2_IN. SE2_IN26 SE2_IN. SE2_IN27 SE2_IN. SE2_IN28 SE2_IN. SE2_IN29 SE2_IN. SE2_IN30 SE2_IN. SE2_IN31 SE2_IN. SE2_IN32 SE2_IN. SE1_WK01 SE1_WK. SE1_WK02 SE1_WK. SE1_WK03 SE1_WK. SE1_WK04 SE1_WK. SE1_WK05 SE1_WK. SE1_WK06 SE1_WK. SE1_WK07 SE1_WK. SE1_WK08 SE1_WK. SE1_WK09 SE1_WK. SE1_WK10 SE1_WK. SE1_WK11 SE1_WK. SE1_WK12 SE1_WK. SE1_WK13 SE1_WK. SE1_WK14 SE1_WK. SE1_WK15 SE1_WK. SE1_WK16 SE1_WK. SE1_WK17 SE1_WK. SE1_WK18 SE1_WK. SE1_WK19 SE1_WK. SE1_WK20 SE1_WK. SE1_WK21 SE1_WK. SE1_WK22 SE1_WK. SE1_WK23 SE1_WK. SE1_WK24 SE1_WK. SE1_WK25 SE1_WK. SE1_WK26 SE1_WK. SE1_WK27 SE1_WK. SE1_WK28 SE1_WK. SE1_WK29 SE1_WK. SE1_WK30 SE1_WK. SE1_WK31 SE1_WK. SE1_WK32 SE1_WK. SE2_WK01 SE2_WK. SE2_WK02 SE2_WK. SE2_WK03 SE2_WK. SE2_WK04 SE2_WK. SE2_WK05 SE2_WK. SE2_WK06 SE2_WK. SE2_WK07 SE2_WK. SE2_WK08 SE2_WK. SE2_WK09 SE2_WK. SE2_WK10 SE2_WK. SE2_WK11 SE2_WK. SE2_WK12 SE2_WK. SE2_WK13 SE2_WK. SE2_WK14 SE2_WK. SE2_WK15 SE2_WK. SE2_WK16 SE2_WK. SE2_WK17 SE2_WK. SE2_WK18 SE2_WK. SE2_WK19 SE2_WK. SE2_WK20 SE2_WK. SE2_WK21 SE2_WK. SE2_WK22 SE2_WK. SE2_WK23 SE2_WK. SE2_WK24 SE2_WK. SE2_WK25 SE2_WK. SE2_WK26 SE2_WK. SE2_WK27 SE2_WK. SE2_WK28 SE2_WK. SE2_WK29 SE2_WK. SE2_WK30 SE2_WK. SE2_WK31 SE2_WK. SE2_WK32 SE2_WK. S2212_01 S2212L. S2212_02 S2212L. S2212_03 S2212L. S2212_04 S2212L. S2212_05 S2212L. S2212_06 S2212L. S2212_07 S2212L. S2212_08 S2212L. S2212_09 S2212L. S2212_10 S2212L. S2212_11 S2212L. S2212_12 S2212L. S2212_13 S2212L. S2212_14 S2212L. S2212_15 S2212L. S2212_16 S2212L. S2212_17 S2212L. S2212_18 S2212L. S2212_19 S2212L. S2212_20 S2212L. S2212_21 S2212L. S2212_22 S2212L. S2212_23 S2212L. S2212_24 S2212L. S2212_25 S2212L. S2212_26 S2212L. S2212_27 S2212L. S2212_28 S2212L. S2212_29 S2212L. S2212_30 S2212L. S2212_31 S2212L. S2212_32 S2212L. S2312_01 S2312L. S2312_02 S2312L. S2312_03 S2312L. S2312_04 S2312L. S2312_05 S2312L. S2312_06 S2312L. S2312_07 S2312L. S2312_08 S2312L. S2312_09 S2312L. S2312_10 S2312L. S2312_11 S2312L. S2312_12 S2312L. S2312_13 S2312L. S2312_14 S2312L. S2312_15 S2312L. S2312_16 S2312L. S2312_17 S2312L. S2312_18 S2312L. S2312_19 S2312L. S2312_20 S2312L. S2312_21 S2312L. S2312_22 S2312L. S2312_23 S2312L. S2312_24 S2312L. S2312_25 S2312L. S2312_26 S2312L. S2312_27 S2312L. S2312_28 S2312L. S2312_29 S2312L. S2312_30 S2312L. S2312_31 S2312L. S2312_32 S2312L. G1SRC1 G1SRC1L. G1SRC2 G1SRC2L. G1SRC3 G1SRC3L. G1SRC4 G1SRC4L. G1SRC5 G1SRC5L. G1SRC6 G1SRC6L. G1SRC7 G1SRC7L. G1SRC8 G1SRC8L. G1SRC9 G1SRC9L. G1SRC10 G1SRC10L. SSRECIN1 SSRECIN. SSRECIN2 SSRECIN. SSRECIN3 SSRECIN. SSRECIN4 SSRECIN. SSRECIN5 SSRECIN. SSRECIN6 SSRECIN. SSRECIN7 SSRECIN. SSRECIN8 SSRECIN. RRRECIN1 RRRECIN. RRRECIN2 RRRECIN. RRRECIN3 RRRECIN. RRRECIN4 RRRECIN. RRRECIN5 RRRECIN. RRRECIN6 RRRECIN. RRRECIN7 RRRECIN. RRRECIN8 RRRECIN. VET3060 VET3060L. AST1001 AST100L. AST1002 AST100L. AST1003 AST100L. AST1004 AST100L. AST1005 AST100L. AST1006 AST100L. AST1007 AST100L. AST1008 AST100L. AST1011 AST101L. AST1012 AST101L. AST1013 AST101L. AST1014 AST101L. AST1015 AST101L. AST1016 AST101L. AST1017 AST101L. AST1018 AST101L. AST1021 AST102L. AST1022 AST102L. AST1023 AST102L. AST1024 AST102L. AST1025 AST102L. AST1026 AST102L. AST1027 AST102L. AST1028 AST102L. AST1031 AST103L. AST1032 AST103L. AST1033 AST103L. AST1034 AST103L. AST1035 AST103L. AST1036 AST103L. AST1037 AST103L. AST1038 AST103L. AST1041 AST104L. AST1042 AST104L. AST1043 AST104L. AST1044 AST104L. AST1045 AST104L. AST1046 AST104L. AST1047 AST104L. AST1048 AST104L. AST1051 AST105L. AST1052 AST105L. AST1053 AST105L. AST1054 AST105L. AST1055 AST105L. AST1056 AST105L. AST1057 AST105L. AST1058 AST105L. AST1061 AST106L. AST1062 AST106L. AST1063 AST106L. AST1064 AST106L. AST1065 AST106L. AST1066 AST106L. AST1067 AST106L. AST1068 AST106L. AST1071 AST107L. AST1072 AST107L. AST1073 AST107L. AST1074 AST107L. AST1075 AST107L. AST1076 AST107L. AST1077 AST107L. AST1078 AST107L. AST1101 AST110L. AST1102 AST110L. AST1103 AST110L. AST1104 AST110L. AST1105 AST110L. AST1106 AST110L. AST1107 AST110L. AST1108 AST110L. RR_PID01 RR_PID. RR_PID02 RR_PID. RR_PID03 RR_PID. RR_PID04 RR_PID. RR_PID05 RR_PID. RR_PID06 RR_PID. RR_PID07 RR_PID. RR_PID08 RR_PID. RR_PID09 RR_PID. RR_PID10 RR_PID. RR_PID11 RR_PID. RR_PID12 RR_PID. RR_PID13 RR_PID. RR_PID14 RR_PID. RR_PID15 RR_PID. RR_PID16 RR_PID. RR_PID17 RR_PID. RR_PID18 RR_PID. RR_PID19 RR_PID. RR_PID20 RR_PID. RR_PID21 RR_PID. RR_PID22 RR_PID. RR_PID23 RR_PID. RR_PID24 RR_PID. RR_PID25 RR_PID. RR_PID26 RR_PID. RR_PID27 RR_PID. RR_PID28 RR_PID. RR_PID29 RR_PID. RR_PID30 RR_PID. RR_PID31 RR_PID. RR_PID32 RR_PID. VA_PID01 VA_PID. VA_PID02 VA_PID. VA_PID03 VA_PID. VA_PID04 VA_PID. VA_PID05 VA_PID. VA_PID06 VA_PID. VA_PID07 VA_PID. VA_PID08 VA_PID. VA_PID09 VA_PID. VA_PID10 VA_PID. VA_PID11 VA_PID. VA_PID12 VA_PID. VA_PID13 VA_PID. VA_PID14 VA_PID. VA_PID15 VA_PID. VA_PID16 VA_PID. VA_PID17 VA_PID. VA_PID18 VA_PID. VA_PID19 VA_PID. VA_PID20 VA_PID. VA_PID21 VA_PID. VA_PID22 VA_PID. VA_PID23 VA_PID. VA_PID24 VA_PID. VA_PID25 VA_PID. VA_PID26 VA_PID. VA_PID27 VA_PID. VA_PID28 VA_PID. VA_PID29 VA_PID. VA_PID30 VA_PID. VA_PID31 VA_PID. VA_PID32 VA_PID. AFDCPI01 AFDCPI. AFDCPI02 AFDCPI. AFDCPI03 AFDCPI. AFDCPI04 AFDCPI. AFDCPI05 AFDCPI. AFDCPI06 AFDCPI. AFDCPI07 AFDCPI. AFDCPI08 AFDCPI. AFDCPI09 AFDCPI. AFDCPI10 AFDCPI. AFDCPI11 AFDCPI. AFDCPI12 AFDCPI. AFDCPI13 AFDCPI. AFDCPI14 AFDCPI. AFDCPI15 AFDCPI. AFDCPI16 AFDCPI. AFDCPI17 AFDCPI. AFDCPI18 AFDCPI. AFDCPI19 AFDCPI. AFDCPI20 AFDCPI. AFDCPI21 AFDCPI. AFDCPI22 AFDCPI. AFDCPI23 AFDCPI. AFDCPI24 AFDCPI. AFDCPI25 AFDCPI. AFDCPI26 AFDCPI. AFDCPI27 AFDCPI. AFDCPI28 AFDCPI. AFDCPI29 AFDCPI. AFDCPI30 AFDCPI. AFDCPI31 AFDCPI. AFDCPI32 AFDCPI. GA_PID01 GA_PID. GA_PID02 GA_PID. GA_PID03 GA_PID. GA_PID04 GA_PID. GA_PID05 GA_PID. GA_PID06 GA_PID. GA_PID07 GA_PID. GA_PID08 GA_PID. GA_PID09 GA_PID. GA_PID10 GA_PID. GA_PID11 GA_PID. GA_PID12 GA_PID. GA_PID13 GA_PID. GA_PID14 GA_PID. GA_PID15 GA_PID. GA_PID16 GA_PID. GA_PID17 GA_PID. GA_PID18 GA_PID. GA_PID19 GA_PID. GA_PID20 GA_PID. GA_PID21 GA_PID. GA_PID22 GA_PID. GA_PID23 GA_PID. GA_PID24 GA_PID. GA_PID25 GA_PID. GA_PID26 GA_PID. GA_PID27 GA_PID. GA_PID28 GA_PID. GA_PID29 GA_PID. GA_PID30 GA_PID. GA_PID31 GA_PID. GA_PID32 GA_PID. FOSTPI01 FOSTPI. FOSTPI02 FOSTPI. FOSTPI03 FOSTPI. FOSTPI04 FOSTPI. FOSTPI05 FOSTPI. FOSTPI06 FOSTPI. FOSTPI07 FOSTPI. FOSTPI08 FOSTPI. FOSTPI09 FOSTPI. FOSTPI10 FOSTPI. FOSTPI11 FOSTPI. FOSTPI12 FOSTPI. FOSTPI13 FOSTPI. FOSTPI14 FOSTPI. FOSTPI15 FOSTPI. FOSTPI16 FOSTPI. FOSTPI17 FOSTPI. FOSTPI18 FOSTPI. FOSTPI19 FOSTPI. FOSTPI20 FOSTPI. FOSTPI21 FOSTPI. FOSTPI22 FOSTPI. FOSTPI23 FOSTPI. FOSTPI24 FOSTPI. FOSTPI25 FOSTPI. FOSTPI26 FOSTPI. FOSTPI27 FOSTPI. FOSTPI28 FOSTPI. FOSTPI29 FOSTPI. FOSTPI30 FOSTPI. FOSTPI31 FOSTPI. FOSTPI32 FOSTPI. OTH_PI01 OTH_PI. OTH_PI02 OTH_PI. OTH_PI03 OTH_PI. OTH_PI04 OTH_PI. OTH_PI05 OTH_PI. OTH_PI06 OTH_PI. OTH_PI07 OTH_PI. OTH_PI08 OTH_PI. OTH_PI09 OTH_PI. OTH_PI10 OTH_PI. OTH_PI11 OTH_PI. OTH_PI12 OTH_PI. OTH_PI13 OTH_PI. OTH_PI14 OTH_PI. OTH_PI15 OTH_PI. OTH_PI16 OTH_PI. OTH_PI17 OTH_PI. OTH_PI18 OTH_PI. OTH_PI19 OTH_PI. OTH_PI20 OTH_PI. OTH_PI21 OTH_PI. OTH_PI22 OTH_PI. OTH_PI23 OTH_PI. OTH_PI24 OTH_PI. OTH_PI25 OTH_PI. OTH_PI26 OTH_PI. OTH_PI27 OTH_PI. OTH_PI28 OTH_PI. OTH_PI29 OTH_PI. OTH_PI30 OTH_PI. OTH_PI31 OTH_PI. OTH_PI32 OTH_PI. WIC_PI01 WIC_PI. WIC_PI02 WIC_PI. WIC_PI03 WIC_PI. WIC_PI04 WIC_PI. WIC_PI05 WIC_PI. WIC_PI06 WIC_PI. WIC_PI07 WIC_PI. WIC_PI08 WIC_PI. WIC_PI09 WIC_PI. WIC_PI10 WIC_PI. WIC_PI11 WIC_PI. WIC_PI12 WIC_PI. WIC_PI13 WIC_PI. WIC_PI14 WIC_PI. WIC_PI15 WIC_PI. WIC_PI16 WIC_PI. WIC_PI17 WIC_PI. WIC_PI18 WIC_PI. WIC_PI19 WIC_PI. WIC_PI20 WIC_PI. WIC_PI21 WIC_PI. WIC_PI22 WIC_PI. WIC_PI23 WIC_PI. WIC_PI24 WIC_PI. WIC_PI25 WIC_PI. WIC_PI26 WIC_PI. WIC_PI27 WIC_PI. WIC_PI28 WIC_PI. WIC_PI29 WIC_PI. WIC_PI30 WIC_PI. WIC_PI31 WIC_PI. WIC_PI32 WIC_PI. FS_PID01 FS_PID. FS_PID02 FS_PID. FS_PID03 FS_PID. FS_PID04 FS_PID. FS_PID05 FS_PID. FS_PID06 FS_PID. FS_PID07 FS_PID. FS_PID08 FS_PID. FS_PID09 FS_PID. FS_PID10 FS_PID. FS_PID11 FS_PID. FS_PID12 FS_PID. FS_PID13 FS_PID. FS_PID14 FS_PID. FS_PID15 FS_PID. FS_PID16 FS_PID. FS_PID17 FS_PID. FS_PID18 FS_PID. FS_PID19 FS_PID. FS_PID20 FS_PID. FS_PID21 FS_PID. FS_PID22 FS_PID. FS_PID23 FS_PID. FS_PID24 FS_PID. FS_PID25 FS_PID. FS_PID26 FS_PID. FS_PID27 FS_PID. FS_PID28 FS_PID. FS_PID29 FS_PID. FS_PID30 FS_PID. FS_PID31 FS_PID. FS_PID32 FS_PID. WS1_IM01 WS1_IM. WS1_IM02 WS1_IM. WS1_IM03 WS1_IM. WS1_IM04 WS1_IM. WS1_IM05 WS1_IM. WS1_IM06 WS1_IM. WS1_IM07 WS1_IM. WS1_IM08 WS1_IM. WS1_IM09 WS1_IM. WS1_IM10 WS1_IM. WS1_IM11 WS1_IM. WS1_IM12 WS1_IM. WS1_IM13 WS1_IM. WS1_IM14 WS1_IM. WS1_IM15 WS1_IM. WS1_IM16 WS1_IM. WS1_IM17 WS1_IM. WS1_IM18 WS1_IM. WS1_IM19 WS1_IM. WS1_IM20 WS1_IM. WS1_IM21 WS1_IM. WS1_IM22 WS1_IM. WS1_IM23 WS1_IM. WS1_IM24 WS1_IM. WS1_IM25 WS1_IM. WS1_IM26 WS1_IM. WS1_IM27 WS1_IM. WS1_IM28 WS1_IM. WS1_IM29 WS1_IM. WS1_IM30 WS1_IM. WS1_IM31 WS1_IM. WS1_IM32 WS1_IM. WS2_IM01 WS2_IM. WS2_IM02 WS2_IM. WS2_IM03 WS2_IM. WS2_IM04 WS2_IM. WS2_IM05 WS2_IM. WS2_IM06 WS2_IM. WS2_IM07 WS2_IM. WS2_IM08 WS2_IM. WS2_IM09 WS2_IM. WS2_IM10 WS2_IM. WS2_IM11 WS2_IM. WS2_IM12 WS2_IM. WS2_IM13 WS2_IM. WS2_IM14 WS2_IM. WS2_IM15 WS2_IM. WS2_IM16 WS2_IM. WS2_IM17 WS2_IM. WS2_IM18 WS2_IM. WS2_IM19 WS2_IM. WS2_IM20 WS2_IM. WS2_IM21 WS2_IM. WS2_IM22 WS2_IM. WS2_IM23 WS2_IM. WS2_IM24 WS2_IM. WS2_IM25 WS2_IM. WS2_IM26 WS2_IM. WS2_IM27 WS2_IM. WS2_IM28 WS2_IM. WS2_IM29 WS2_IM. WS2_IM30 WS2_IM. WS2_IM31 WS2_IM. WS2_IM32 WS2_IM. SE1_IM01 SE1_IM. SE1_IM02 SE1_IM. SE1_IM03 SE1_IM. SE1_IM04 SE1_IM. SE1_IM05 SE1_IM. SE1_IM06 SE1_IM. SE1_IM07 SE1_IM. SE1_IM08 SE1_IM. SE1_IM09 SE1_IM. SE1_IM10 SE1_IM. SE1_IM11 SE1_IM. SE1_IM12 SE1_IM. SE1_IM13 SE1_IM. SE1_IM14 SE1_IM. SE1_IM15 SE1_IM. SE1_IM16 SE1_IM. SE1_IM17 SE1_IM. SE1_IM18 SE1_IM. SE1_IM19 SE1_IM. SE1_IM20 SE1_IM. SE1_IM21 SE1_IM. SE1_IM22 SE1_IM. SE1_IM23 SE1_IM. SE1_IM24 SE1_IM. SE1_IM25 SE1_IM. SE1_IM26 SE1_IM. SE1_IM27 SE1_IM. SE1_IM28 SE1_IM. SE1_IM29 SE1_IM. SE1_IM30 SE1_IM. SE1_IM31 SE1_IM. SE1_IM32 SE1_IM. SE2_IM01 SE2_IM. SE2_IM02 SE2_IM. SE2_IM03 SE2_IM. SE2_IM04 SE2_IM. SE2_IM05 SE2_IM. SE2_IM06 SE2_IM. SE2_IM07 SE2_IM. SE2_IM08 SE2_IM. SE2_IM09 SE2_IM. SE2_IM10 SE2_IM. SE2_IM11 SE2_IM. SE2_IM12 SE2_IM. SE2_IM13 SE2_IM. SE2_IM14 SE2_IM. SE2_IM15 SE2_IM. SE2_IM16 SE2_IM. SE2_IM17 SE2_IM. SE2_IM18 SE2_IM. SE2_IM19 SE2_IM. SE2_IM20 SE2_IM. SE2_IM21 SE2_IM. SE2_IM22 SE2_IM. SE2_IM23 SE2_IM. SE2_IM24 SE2_IM. SE2_IM25 SE2_IM. SE2_IM26 SE2_IM. SE2_IM27 SE2_IM. SE2_IM28 SE2_IM. SE2_IM29 SE2_IM. SE2_IM30 SE2_IM. SE2_IM31 SE2_IM. SE2_IM32 SE2_IM. G1_I1_01 G1_I1L. G1_I1_02 G1_I1L. G1_I1_03 G1_I1L. G1_I1_04 G1_I1L. G1_I1_05 G1_I1L. G1_I1_06 G1_I1L. G1_I1_07 G1_I1L. G1_I1_08 G1_I1L. G1_I1_09 G1_I1L. G1_I1_10 G1_I1L. G1_I1_11 G1_I1L. G1_I1_12 G1_I1L. G1_I1_13 G1_I1L. G1_I1_14 G1_I1L. G1_I1_15 G1_I1L. G1_I1_16 G1_I1L. G1_I1_17 G1_I1L. G1_I1_18 G1_I1L. G1_I1_19 G1_I1L. G1_I1_20 G1_I1L. G1_I1_21 G1_I1L. G1_I1_22 G1_I1L. G1_I1_23 G1_I1L. G1_I1_24 G1_I1L. G1_I1_25 G1_I1L. G1_I1_26 G1_I1L. G1_I1_27 G1_I1L. G1_I1_28 G1_I1L. G1_I1_29 G1_I1L. G1_I1_30 G1_I1L. G1_I1_31 G1_I1L. G1_I1_32 G1_I1L. G1_I2_01 G1_I2L. G1_I2_02 G1_I2L. G1_I2_03 G1_I2L. G1_I2_04 G1_I2L. G1_I2_05 G1_I2L. G1_I2_06 G1_I2L. G1_I2_07 G1_I2L. G1_I2_08 G1_I2L. G1_I2_09 G1_I2L. G1_I2_10 G1_I2L. G1_I2_11 G1_I2L. G1_I2_12 G1_I2L. G1_I2_13 G1_I2L. G1_I2_14 G1_I2L. G1_I2_15 G1_I2L. G1_I2_16 G1_I2L. G1_I2_17 G1_I2L. G1_I2_18 G1_I2L. G1_I2_19 G1_I2L. G1_I2_20 G1_I2L. G1_I2_21 G1_I2L. G1_I2_22 G1_I2L. G1_I2_23 G1_I2L. G1_I2_24 G1_I2L. G1_I2_25 G1_I2L. G1_I2_26 G1_I2L. G1_I2_27 G1_I2L. G1_I2_28 G1_I2L. G1_I2_29 G1_I2L. G1_I2_30 G1_I2L. G1_I2_31 G1_I2L. G1_I2_32 G1_I2L. G1_I3_01 G1_I3L. G1_I3_02 G1_I3L. G1_I3_03 G1_I3L. G1_I3_04 G1_I3L. G1_I3_05 G1_I3L. G1_I3_06 G1_I3L. G1_I3_07 G1_I3L. G1_I3_08 G1_I3L. G1_I3_09 G1_I3L. G1_I3_10 G1_I3L. G1_I3_11 G1_I3L. G1_I3_12 G1_I3L. G1_I3_13 G1_I3L. G1_I3_14 G1_I3L. G1_I3_15 G1_I3L. G1_I3_16 G1_I3L. G1_I3_17 G1_I3L. G1_I3_18 G1_I3L. G1_I3_19 G1_I3L. G1_I3_20 G1_I3L. G1_I3_21 G1_I3L. G1_I3_22 G1_I3L. G1_I3_23 G1_I3L. G1_I3_24 G1_I3L. G1_I3_25 G1_I3L. G1_I3_26 G1_I3L. G1_I3_27 G1_I3L. G1_I3_28 G1_I3L. G1_I3_29 G1_I3L. G1_I3_30 G1_I3L. G1_I3_31 G1_I3L. G1_I3_32 G1_I3L. G1_I4_01 G1_I4L. G1_I4_02 G1_I4L. G1_I4_03 G1_I4L. G1_I4_04 G1_I4L. G1_I4_05 G1_I4L. G1_I4_06 G1_I4L. G1_I4_07 G1_I4L. G1_I4_08 G1_I4L. G1_I4_09 G1_I4L. G1_I4_10 G1_I4L. G1_I4_11 G1_I4L. G1_I4_12 G1_I4L. G1_I4_13 G1_I4L. G1_I4_14 G1_I4L. G1_I4_15 G1_I4L. G1_I4_16 G1_I4L. G1_I4_17 G1_I4L. G1_I4_18 G1_I4L. G1_I4_19 G1_I4L. G1_I4_20 G1_I4L. G1_I4_21 G1_I4L. G1_I4_22 G1_I4L. G1_I4_23 G1_I4L. G1_I4_24 G1_I4L. G1_I4_25 G1_I4L. G1_I4_26 G1_I4L. G1_I4_27 G1_I4L. G1_I4_28 G1_I4L. G1_I4_29 G1_I4L. G1_I4_30 G1_I4L. G1_I4_31 G1_I4L. G1_I4_32 G1_I4L. G11_IM01 G11_IM. G11_IM02 G11_IM. G11_IM03 G11_IM. G11_IM04 G11_IM. G11_IM05 G11_IM. G11_IM06 G11_IM. G11_IM07 G11_IM. G11_IM08 G11_IM. G11_IM09 G11_IM. G11_IM10 G11_IM. G11_IM11 G11_IM. G11_IM12 G11_IM. G11_IM13 G11_IM. G11_IM14 G11_IM. G11_IM15 G11_IM. G11_IM16 G11_IM. G11_IM17 G11_IM. G11_IM18 G11_IM. G11_IM19 G11_IM. G11_IM20 G11_IM. G11_IM21 G11_IM. G11_IM22 G11_IM. G11_IM23 G11_IM. G11_IM24 G11_IM. G11_IM25 G11_IM. G11_IM26 G11_IM. G11_IM27 G11_IM. G11_IM28 G11_IM. G11_IM29 G11_IM. G11_IM30 G11_IM. G11_IM31 G11_IM. G11_IM32 G11_IM. G1_I6_01 G1_I6L. G1_I6_02 G1_I6L. G1_I6_03 G1_I6L. G1_I6_04 G1_I6L. G1_I6_05 G1_I6L. G1_I6_06 G1_I6L. G1_I6_07 G1_I6L. G1_I6_08 G1_I6L. G1_I6_09 G1_I6L. G1_I6_10 G1_I6L. G1_I6_11 G1_I6L. G1_I6_12 G1_I6L. G1_I6_13 G1_I6L. G1_I6_14 G1_I6L. G1_I6_15 G1_I6L. G1_I6_16 G1_I6L. G1_I6_17 G1_I6L. G1_I6_18 G1_I6L. G1_I6_19 G1_I6L. G1_I6_20 G1_I6L. G1_I6_21 G1_I6L. G1_I6_22 G1_I6L. G1_I6_23 G1_I6L. G1_I6_24 G1_I6L. G1_I6_25 G1_I6L. G1_I6_26 G1_I6L. G1_I6_27 G1_I6L. G1_I6_28 G1_I6L. G1_I6_29 G1_I6L. G1_I6_30 G1_I6L. G1_I6_31 G1_I6L. G1_I6_32 G1_I6L. G1_I7_01 G1_I7L. G1_I7_02 G1_I7L. G1_I7_03 G1_I7L. G1_I7_04 G1_I7L. G1_I7_05 G1_I7L. G1_I7_06 G1_I7L. G1_I7_07 G1_I7L. G1_I7_08 G1_I7L. G1_I7_09 G1_I7L. G1_I7_10 G1_I7L. G1_I7_11 G1_I7L. G1_I7_12 G1_I7L. G1_I7_13 G1_I7L. G1_I7_14 G1_I7L. G1_I7_15 G1_I7L. G1_I7_16 G1_I7L. G1_I7_17 G1_I7L. G1_I7_18 G1_I7L. G1_I7_19 G1_I7L. G1_I7_20 G1_I7L. G1_I7_21 G1_I7L. G1_I7_22 G1_I7L. G1_I7_23 G1_I7L. G1_I7_24 G1_I7L. G1_I7_25 G1_I7L. G1_I7_26 G1_I7L. G1_I7_27 G1_I7L. G1_I7_28 G1_I7L. G1_I7_29 G1_I7L. G1_I7_30 G1_I7L. G1_I7_31 G1_I7L. G1_I7_32 G1_I7L. G1_I8_01 G1_I8L. G1_I8_02 G1_I8L. G1_I8_03 G1_I8L. G1_I8_04 G1_I8L. G1_I8_05 G1_I8L. G1_I8_06 G1_I8L. G1_I8_07 G1_I8L. G1_I8_08 G1_I8L. G1_I8_09 G1_I8L. G1_I8_10 G1_I8L. G1_I8_11 G1_I8L. G1_I8_12 G1_I8L. G1_I8_13 G1_I8L. G1_I8_14 G1_I8L. G1_I8_15 G1_I8L. G1_I8_16 G1_I8L. G1_I8_17 G1_I8L. G1_I8_18 G1_I8L. G1_I8_19 G1_I8L. G1_I8_20 G1_I8L. G1_I8_21 G1_I8L. G1_I8_22 G1_I8L. G1_I8_23 G1_I8L. G1_I8_24 G1_I8L. G1_I8_25 G1_I8L. G1_I8_26 G1_I8L. G1_I8_27 G1_I8L. G1_I8_28 G1_I8L. G1_I8_29 G1_I8L. G1_I8_30 G1_I8L. G1_I8_31 G1_I8L. G1_I8_32 G1_I8L. G1_I9_01 G1_I9L. G1_I9_02 G1_I9L. G1_I9_03 G1_I9L. G1_I9_04 G1_I9L. G1_I9_05 G1_I9L. G1_I9_06 G1_I9L. G1_I9_07 G1_I9L. G1_I9_08 G1_I9L. G1_I9_09 G1_I9L. G1_I9_10 G1_I9L. G1_I9_11 G1_I9L. G1_I9_12 G1_I9L. G1_I9_13 G1_I9L. G1_I9_14 G1_I9L. G1_I9_15 G1_I9L. G1_I9_16 G1_I9L. G1_I9_17 G1_I9L. G1_I9_18 G1_I9L. G1_I9_19 G1_I9L. G1_I9_20 G1_I9L. G1_I9_21 G1_I9L. G1_I9_22 G1_I9L. G1_I9_23 G1_I9L. G1_I9_24 G1_I9L. G1_I9_25 G1_I9L. G1_I9_26 G1_I9L. G1_I9_27 G1_I9L. G1_I9_28 G1_I9L. G1_I9_29 G1_I9L. G1_I9_30 G1_I9L. G1_I9_31 G1_I9L. G1_I9_32 G1_I9L. G1_I1001 G1_I10L. G1_I1002 G1_I10L. G1_I1003 G1_I10L. G1_I1004 G1_I10L. G1_I1005 G1_I10L. G1_I1006 G1_I10L. G1_I1007 G1_I10L. G1_I1008 G1_I10L. G1_I1009 G1_I10L. G1_I1010 G1_I10L. G1_I1011 G1_I10L. G1_I1012 G1_I10L. G1_I1013 G1_I10L. G1_I1014 G1_I10L. G1_I1015 G1_I10L. G1_I1016 G1_I10L. G1_I1017 G1_I10L. G1_I1018 G1_I10L. G1_I1019 G1_I10L. G1_I1020 G1_I10L. G1_I1021 G1_I10L. G1_I1022 G1_I10L. G1_I1023 G1_I10L. G1_I1024 G1_I10L. G1_I1025 G1_I10L. G1_I1026 G1_I10L. G1_I1027 G1_I10L. G1_I1028 G1_I10L. G1_I1029 G1_I10L. G1_I1030 G1_I10L. G1_I1031 G1_I10L. G1_I1032 G1_I10L. G2I10001 G2I100L. G2I10002 G2I100L. G2I10003 G2I100L. G2I10004 G2I100L. G2I10005 G2I100L. G2I10006 G2I100L. G2I10007 G2I100L. G2I10008 G2I100L. G2I10009 G2I100L. G2I10010 G2I100L. G2I10011 G2I100L. G2I10012 G2I100L. G2I10013 G2I100L. G2I10014 G2I100L. G2I10015 G2I100L. G2I10016 G2I100L. G2I10017 G2I100L. G2I10018 G2I100L. G2I10019 G2I100L. G2I10020 G2I100L. G2I10021 G2I100L. G2I10022 G2I100L. G2I10023 G2I100L. G2I10024 G2I100L. G2I10025 G2I100L. G2I10026 G2I100L. G2I10027 G2I100L. G2I10028 G2I100L. G2I10029 G2I100L. G2I10030 G2I100L. G2I10031 G2I100L. G2I10032 G2I100L. G2I10401 G2I104L. G2I10402 G2I104L. G2I10403 G2I104L. G2I10404 G2I104L. G2I10405 G2I104L. G2I10406 G2I104L. G2I10407 G2I104L. G2I10408 G2I104L. G2I10409 G2I104L. G2I10410 G2I104L. G2I10411 G2I104L. G2I10412 G2I104L. G2I10413 G2I104L. G2I10414 G2I104L. G2I10415 G2I104L. G2I10416 G2I104L. G2I10417 G2I104L. G2I10418 G2I104L. G2I10419 G2I104L. G2I10420 G2I104L. G2I10421 G2I104L. G2I10422 G2I104L. G2I10423 G2I104L. G2I10424 G2I104L. G2I10425 G2I104L. G2I10426 G2I104L. G2I10427 G2I104L. G2I10428 G2I104L. G2I10429 G2I104L. G2I10430 G2I104L. G2I10431 G2I104L. G2I10432 G2I104L. G2I11001 G2I110L. G2I11002 G2I110L. G2I11003 G2I110L. G2I11004 G2I110L. G2I11005 G2I110L. G2I11006 G2I110L. G2I11007 G2I110L. G2I11008 G2I110L. G2I11009 G2I110L. G2I11010 G2I110L. G2I11011 G2I110L. G2I11012 G2I110L. G2I11013 G2I110L. G2I11014 G2I110L. G2I11015 G2I110L. G2I11016 G2I110L. G2I11017 G2I110L. G2I11018 G2I110L. G2I11019 G2I110L. G2I11020 G2I110L. G2I11021 G2I110L. G2I11022 G2I110L. G2I11023 G2I110L. G2I11024 G2I110L. G2I11025 G2I110L. G2I11026 G2I110L. G2I11027 G2I110L. G2I11028 G2I110L. G2I11029 G2I110L. G2I11030 G2I110L. G2I11031 G2I110L. G2I11032 G2I110L. G2I12001 G2I120L. G2I12002 G2I120L. G2I12003 G2I120L. G2I12004 G2I120L. G2I12005 G2I120L. G2I12006 G2I120L. G2I12007 G2I120L. G2I12008 G2I120L. G2I12009 G2I120L. G2I12010 G2I120L. G2I12011 G2I120L. G2I12012 G2I120L. G2I12013 G2I120L. G2I12014 G2I120L. G2I12015 G2I120L. G2I12016 G2I120L. G2I12017 G2I120L. G2I12018 G2I120L. G2I12019 G2I120L. G2I12020 G2I120L. G2I12021 G2I120L. G2I12022 G2I120L. G2I12023 G2I120L. G2I12024 G2I120L. G2I12025 G2I120L. G2I12026 G2I120L. G2I12027 G2I120L. G2I12028 G2I120L. G2I12029 G2I120L. G2I12030 G2I120L. G2I12031 G2I120L. G2I12032 G2I120L. G2I13001 G2I130L. G2I13002 G2I130L. G2I13003 G2I130L. G2I13004 G2I130L. G2I13005 G2I130L. G2I13006 G2I130L. G2I13007 G2I130L. G2I13008 G2I130L. G2I13009 G2I130L. G2I13010 G2I130L. G2I13011 G2I130L. G2I13012 G2I130L. G2I13013 G2I130L. G2I13014 G2I130L. G2I13015 G2I130L. G2I13016 G2I130L. G2I13017 G2I130L. G2I13018 G2I130L. G2I13019 G2I130L. G2I13020 G2I130L. G2I13021 G2I130L. G2I13022 G2I130L. G2I13023 G2I130L. G2I13024 G2I130L. G2I13025 G2I130L. G2I13026 G2I130L. G2I13027 G2I130L. G2I13028 G2I130L. G2I13029 G2I130L. G2I13030 G2I130L. G2I13031 G2I130L. G2I13032 G2I130L. G2I14001 G2I140L. G2I14002 G2I140L. G2I14003 G2I140L. G2I14004 G2I140L. G2I14005 G2I140L. G2I14006 G2I140L. G2I14007 G2I140L. G2I14008 G2I140L. G2I14009 G2I140L. G2I14010 G2I140L. G2I14011 G2I140L. G2I14012 G2I140L. G2I14013 G2I140L. G2I14014 G2I140L. G2I14015 G2I140L. G2I14016 G2I140L. G2I14017 G2I140L. G2I14018 G2I140L. G2I14019 G2I140L. G2I14020 G2I140L. G2I14021 G2I140L. G2I14022 G2I140L. G2I14023 G2I140L. G2I14024 G2I140L. G2I14025 G2I140L. G2I14026 G2I140L. G2I14027 G2I140L. G2I14028 G2I140L. G2I14029 G2I140L. G2I14030 G2I140L. G2I14031 G2I140L. G2I14032 G2I140L. ; proc contents data=library.sip86fp; /* Copyright 2004 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. */