diff --git a/DESCRIPTION b/DESCRIPTION index 1490380..beaaf10 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -6,7 +6,7 @@ Authors@R: c( person(given = "Kyle", family = "Walker", email="kyle@walker-data.com", role=c("aut", "cre")), person(given = "Matt", family = "Herman", email = "mfherman@gmail.com", role = "aut"), person(given = "Kris", family = "Eberwein", email = "eberwein@knights.ucf.edu", role = "ctb")) -Date: 2024-10-13 +Date: 2024-10-17 URL: https://walker-data.com/tidycensus/ BugReports: https://github.com/walkerke/tidycensus/issues Description: An integrated R interface to several United States Census Bureau diff --git a/R/load_data.R b/R/load_data.R index 4a810de..d131473 100644 --- a/R/load_data.R +++ b/R/load_data.R @@ -740,7 +740,7 @@ load_data_pums <- function(variables, state, puma, key, year, survey, # for which years is data dictionary available in pums_variables? # we'll use this a couple times later on - recode_years <- 2017:2022 + recode_years <- 2017:2023 base <- sprintf("https://api.census.gov/data/%s/acs/%s/pums", year, survey) @@ -846,7 +846,11 @@ load_data_pums <- function(variables, state, puma, key, year, survey, # If geo is NULL, state should be added back in here if (is.null(geo)) { - vars_to_get <- paste0(vars_to_get, ",ST") + if (year > 2022) { + vars_to_get <- paste0(vars_to_get, ",STATE") + } else { + vars_to_get <- paste0(vars_to_get, ",ST") + } } query <- list(get = vars_to_get, @@ -1022,7 +1026,7 @@ load_data_pums_vacant <- function(variables, state, puma, key, year, survey, # for which years is data dictionary available in pums_variables? # we'll use this a couple times later on - recode_years <- 2017:2022 + recode_years <- 2017:2023 base <- sprintf("https://api.census.gov/data/%s/acs/%s/pums", year, survey) @@ -1096,7 +1100,11 @@ load_data_pums_vacant <- function(variables, state, puma, key, year, survey, # If geo is NULL, state should be added back in here if (is.null(geo)) { - vars_to_get <- paste0(vars_to_get, ",ST") + if (year > 2022) { + vars_to_get <- paste0(vars_to_get, ",STATE") + } else { + vars_to_get <- paste0(vars_to_get, ",ST") + } } # Combine the default query with the variables filter query diff --git a/R/pums.R b/R/pums.R index 0ca1c92..ce77c0a 100644 --- a/R/pums.R +++ b/R/pums.R @@ -154,7 +154,13 @@ get_pums <- function(variables = NULL, # } # } - join_vars <- c("SERIALNO", "SPORDER", "WGTP", "PWGTP", "ST") + # As of 2023, `ST` is renamed to `STATE` + if (year < 2023) { + join_vars <- c("SERIALNO", "SPORDER", "WGTP", "PWGTP", "ST") + } else { + join_vars <- c("SERIALNO", "SPORDER", "WGTP", "PWGTP", "STATE") + } + variables <- variables[!variables %in% join_vars] diff --git a/data-raw/pums-dict_acs1-2023.csv b/data-raw/pums-dict_acs1-2023.csv new file mode 100644 index 0000000..e0b0fa6 --- /dev/null +++ b/data-raw/pums-dict_acs1-2023.csv @@ -0,0 +1,5986 @@ +NAME,RT,C,1,Record Type,, +VAL,RT,C,1,H,H,Housing Record or Group Quarters Unit +VAL,RT,C,1,P,P,Person Record +NAME,SERIALNO,C,13,Housing unit/GQ person serial number,, +VAL,SERIALNO,C,13,2023GQ0000001,2023GQ9999999,GQ Unique identifier +VAL,SERIALNO,C,13,2023HU0000001,2023HU9999999,HU Unique identifier +NAME,DIVISION,C,1,Division code based on 2020 Census definitions,, +VAL,DIVISION,C,1,0,0,Puerto Rico +VAL,DIVISION,C,1,1,1,New England (Northeast region) +VAL,DIVISION,C,1,2,2,Middle Atlantic (Northeast region) +VAL,DIVISION,C,1,3,3,East North Central (Midwest region) +VAL,DIVISION,C,1,4,4,West North Central (Midwest region) +VAL,DIVISION,C,1,5,5,South Atlantic (South region) +VAL,DIVISION,C,1,6,6,East South Central (South region) +VAL,DIVISION,C,1,7,7,West South Central (South Region) +VAL,DIVISION,C,1,8,8,Mountain (West region) +VAL,DIVISION,C,1,9,9,Pacific (West region) +NAME,PUMA,C,5,"Public use microdata area code (PUMA) based on 2020 Census definition (areas with population of 100,000 or more, use with STATE for unique code)",, +VAL,PUMA,C,5,00100,81003,Public use microdata area codes +NAME,REGION,C,1,Region code based on 2020 Census definitions,, +VAL,REGION,C,1,1,1,Northeast +VAL,REGION,C,1,2,2,Midwest +VAL,REGION,C,1,3,3,South +VAL,REGION,C,1,4,4,West +VAL,REGION,C,1,9,9,Puerto Rico +NAME,STATE,C,2,State Code based on 2020 Census definitions,, +VAL,STATE,C,2,01,01,Alabama/AL +VAL,STATE,C,2,02,02,Alaska/AK +VAL,STATE,C,2,04,04,Arizona/AZ +VAL,STATE,C,2,05,05,Arkansas/AR +VAL,STATE,C,2,06,06,California/CA +VAL,STATE,C,2,08,08,Colorado/CO +VAL,STATE,C,2,09,09,Connecticut/CT +VAL,STATE,C,2,10,10,Delaware/DE +VAL,STATE,C,2,11,11,District of Columbia/DC +VAL,STATE,C,2,12,12,Florida/FL +VAL,STATE,C,2,13,13,Georgia/GA +VAL,STATE,C,2,15,15,Hawaii/HI +VAL,STATE,C,2,16,16,Idaho/ID +VAL,STATE,C,2,17,17,Illinois/IL +VAL,STATE,C,2,18,18,Indiana/IN +VAL,STATE,C,2,19,19,Iowa/IA +VAL,STATE,C,2,20,20,Kansas/KS +VAL,STATE,C,2,21,21,Kentucky/KY +VAL,STATE,C,2,22,22,Louisiana/LA +VAL,STATE,C,2,23,23,Maine/ME +VAL,STATE,C,2,24,24,Maryland/MD +VAL,STATE,C,2,25,25,Massachusetts/MA +VAL,STATE,C,2,26,26,Michigan/MI +VAL,STATE,C,2,27,27,Minnesota/MN +VAL,STATE,C,2,28,28,Mississippi/MS +VAL,STATE,C,2,29,29,Missouri/MO +VAL,STATE,C,2,30,30,Montana/MT +VAL,STATE,C,2,31,31,Nebraska/NE +VAL,STATE,C,2,32,32,Nevada/NV +VAL,STATE,C,2,33,33,New Hampshire/NH +VAL,STATE,C,2,34,34,New Jersey/NJ +VAL,STATE,C,2,35,35,New Mexico/NM +VAL,STATE,C,2,36,36,New York/NY +VAL,STATE,C,2,37,37,North Carolina/NC +VAL,STATE,C,2,38,38,North Dakota/ND +VAL,STATE,C,2,39,39,Ohio/OH +VAL,STATE,C,2,40,40,Oklahoma/OK +VAL,STATE,C,2,41,41,Oregon/OR +VAL,STATE,C,2,42,42,Pennsylvania/PA +VAL,STATE,C,2,44,44,Rhode Island/RI +VAL,STATE,C,2,45,45,South Carolina/SC +VAL,STATE,C,2,46,46,South Dakota/SD +VAL,STATE,C,2,47,47,Tennessee/TN +VAL,STATE,C,2,48,48,Texas/TX +VAL,STATE,C,2,49,49,Utah/UT +VAL,STATE,C,2,50,50,Vermont/VT +VAL,STATE,C,2,51,51,Virginia/VA +VAL,STATE,C,2,53,53,Washington/WA +VAL,STATE,C,2,54,54,West Virginia/WV +VAL,STATE,C,2,55,55,Wisconsin/WI +VAL,STATE,C,2,56,56,Wyoming/WY +VAL,STATE,C,2,72,72,Puerto Rico/PR +NAME,ADJHSG,C,7,Adjustment factor for housing dollar amounts (6 implied decimal places),, +VAL,ADJHSG,C,7,1000000,1000000,2023 factor (1.000000) +NAME,ADJINC,C,7,Adjustment factor for income and earnings dollar amounts (6 implied decimal places),, +VAL,ADJINC,C,7,1019518,1019518,2023 factor (1.019518) +NAME,WGTP,N,5,Housing Unit Weight,, +VAL,WGTP,N,5,0,0,Group quarters place holder record +VAL,WGTP,N,5,1,9999,Integer weight of housing unit +NAME,NP,N,2,Number of persons in this household,, +VAL,NP,N,2,0,0,Vacant unit +VAL,NP,N,2,1,1,One person in household or any person in group quarters +VAL,NP,N,2,2,20,Number of persons in household +NAME,TYPEHUGQ,C,1,Type of unit,, +VAL,TYPEHUGQ,C,1,1,1,Housing unit +VAL,TYPEHUGQ,C,1,2,2,Institutional group quarters +VAL,TYPEHUGQ,C,1,3,3,Noninstitutional group quarters +NAME,ACCESSINET,C,1,Access to the Internet,, +VAL,ACCESSINET,C,1,b,b,N/A (GQ/vacant) +VAL,ACCESSINET,C,1,1,1,"Yes, by paying a cell phone company or Internet service provider" +VAL,ACCESSINET,C,1,2,2,"Yes, without paying a cell phone company or Internet service provider" +VAL,ACCESSINET,C,1,3,3,"No access to the Internet at this house, apartment, or mobile home" +NAME,ACR,C,1,Lot size,, +VAL,ACR,C,1,b,b,N/A (GQ/not a one-family house or mobile home) +VAL,ACR,C,1,1,1,House on less than one acre +VAL,ACR,C,1,2,2,House on one to less than ten acres +VAL,ACR,C,1,3,3,House on ten or more acres +NAME,AGS,C,1,"Sales of Agriculture Products (yearly sales, no adjustment factor is applied)",, +VAL,AGS,C,1,b,b,N/A (GQ/vacant/not a one family house or mobile home/less than 1 acre) +VAL,AGS,C,1,1,1,None +VAL,AGS,C,1,2,2,$ 1 - $ 999 +VAL,AGS,C,1,3,3,$ 1000 - $ 2499 +VAL,AGS,C,1,4,4,$ 2500 - $ 4999 +VAL,AGS,C,1,5,5,$ 5000 - $ 9999 +VAL,AGS,C,1,6,6,$10000+ +NAME,BATH,C,1,Bathtub or shower,, +VAL,BATH,C,1,b,b,N/A (GQ) +VAL,BATH,C,1,1,1,Yes +VAL,BATH,C,1,2,2,No +NAME,BDSP,N,2,Number of bedrooms,, +VAL,BDSP,N,2,bb,bb,N/A (GQ) +VAL,BDSP,N,2,0,99,0 to 99 bedrooms (Top-coded) +NAME,BLD,C,2,Units in structure,, +VAL,BLD,C,2,bb,bb,N/A (GQ) +VAL,BLD,C,2,01,01,Mobile home or trailer +VAL,BLD,C,2,02,02,One-family house detached +VAL,BLD,C,2,03,03,One-family house attached +VAL,BLD,C,2,04,04,2 Apartments +VAL,BLD,C,2,05,05,3-4 Apartments +VAL,BLD,C,2,06,06,5-9 Apartments +VAL,BLD,C,2,07,07,10-19 Apartments +VAL,BLD,C,2,08,08,20-49 Apartments +VAL,BLD,C,2,09,09,50 or more apartments +VAL,BLD,C,2,10,10,"Boat, RV, van, etc." +NAME,BROADBND,C,1,Cellular data plan for a smartphone or other mobile device,, +VAL,BROADBND,C,1,b,b,N/A (GQ/vacant/no paid access to the internet) +VAL,BROADBND,C,1,1,1,Yes +VAL,BROADBND,C,1,2,2,No +VAL,BROADBND,C,1,8,8,Suppressed for data year 2023 for select PUMAs +NAME,COMPOTHX,C,1,Other computer equipment,, +VAL,COMPOTHX,C,1,b,b,N/A (GQ/vacant) +VAL,COMPOTHX,C,1,1,1,Yes +VAL,COMPOTHX,C,1,2,2,No +NAME,CONP,N,4,"Condominium fee (monthly amount, use ADJHSG to adjust CONP to constant dollars)",, +VAL,CONP,N,4,bbbb,bbbb,N/A (GQ/vacant units/not owned or being bought) +VAL,CONP,N,4,0,9999,$0 - $9999 (Rounded and top-coded) +NAME,DIALUP,C,1,Dial-up service,, +VAL,DIALUP,C,1,b,b,N/A (GQ/vacant/no paid access to the internet) +VAL,DIALUP,C,1,1,1,Yes +VAL,DIALUP,C,1,2,2,No +VAL,DIALUP,C,1,8,8,Suppressed for data year 2023 for select PUMAs +NAME,ELEFP,C,1,Electricity cost flag variable,, +VAL,ELEFP,C,1,b,b,N/A (GQ/vacant) +VAL,ELEFP,C,1,1,1,Included in rent or in condo fee +VAL,ELEFP,C,1,2,2,No charge or electricity not used +VAL,ELEFP,C,1,3,3,Valid monthly electricity cost in ELEP +NAME,ELEP,N,4,"Electricity cost (monthly cost, use ADJHSG to adjust ELEP to constant dollars)",, +VAL,ELEP,N,4,bbbb,bbbb,N/A (GQ/vacant/included in rent or in condo fee/no charge or electricity not used) +VAL,ELEP,N,4,3,9999,$3 to $9999 (Rounded and top-coded) +NAME,FS,C,1,Yearly food stamp/Supplemental Nutrition Assistance Program (SNAP) recipiency,, +VAL,FS,C,1,b,b,N/A (vacant) +VAL,FS,C,1,1,1,Yes +VAL,FS,C,1,2,2,No +NAME,FULFP,C,1,Fuel cost flag variable,, +VAL,FULFP,C,1,b,b,N/A (GQ/vacant) +VAL,FULFP,C,1,1,1,Included in rent or in condo fee +VAL,FULFP,C,1,2,2,No charge or fuel other than gas or electricity not used +VAL,FULFP,C,1,3,3,Valid annual fuel cost in FULP +NAME,FULP,N,4,"Fuel cost (yearly cost for fuels other than gas and electricity, use ADJHSG to adjust FULP to constant dollars)",, +VAL,FULP,N,4,bbbb,bbbb,N/A (GQ/vacant/included in rent or in condo fee/no charge or fuel other than gas or electricity not used) +VAL,FULP,N,4,3,9999,$3 to $9999 (Rounded and top-coded) +NAME,GASFP,C,1,Gas cost flag variable,, +VAL,GASFP,C,1,b,b,N/A (GQ/vacant) +VAL,GASFP,C,1,1,1,Included in rent or in condo fee +VAL,GASFP,C,1,2,2,Included in electricity payment +VAL,GASFP,C,1,3,3,No charge or gas not used +VAL,GASFP,C,1,4,4,Valid monthly gas cost in GASP +NAME,GASP,N,4,"Gas cost (monthly cost, use ADJHSG to adjust GASP to constant dollars)",, +VAL,GASP,N,4,bbbb,bbbb,N/A (GQ/vacant/included in rent or in condo fee/included in electricity payment/no charge or gas not used) +VAL,GASP,N,4,4,9999,$4 to $9999 (Rounded and top-coded) +NAME,HFL,C,1,House heating fuel,, +VAL,HFL,C,1,b,b,N/A (GQ/vacant) +VAL,HFL,C,1,1,1,Utility gas +VAL,HFL,C,1,2,2,"Bottled, tank, or LP gas" +VAL,HFL,C,1,3,3,Electricity +VAL,HFL,C,1,4,4,"Fuel oil, kerosene, etc." +VAL,HFL,C,1,5,5,Coal or coke +VAL,HFL,C,1,6,6,Wood +VAL,HFL,C,1,7,7,Solar energy +VAL,HFL,C,1,8,8,Other fuel +VAL,HFL,C,1,9,9,No fuel used +NAME,HISPEED,C,1,"Broadband (high speed) Internet service such as cable, fiber optic, or DSL service",, +VAL,HISPEED,C,1,b,b,N/A (GQ/vacant/no paid access to the internet) +VAL,HISPEED,C,1,1,1,Yes +VAL,HISPEED,C,1,2,2,No +VAL,HISPEED,C,1,8,8,Suppressed for data year 2023 for select PUMAs +NAME,HOTWAT,C,1,Water heater (Puerto Rico only),, +VAL,HOTWAT,C,1,b,b,N/A (GQ) +VAL,HOTWAT,C,1,1,1,Yes +VAL,HOTWAT,C,1,2,2,No +VAL,HOTWAT,C,1,9,9,"Case is from the United States, HOTWAT not applicable" +NAME,INSP,N,5,"Fire/hazard/flood insurance (yearly amount, use ADJHSG to adjust INSP to constant dollars)",, +VAL,INSP,N,5,bbbbb,bbbbb,N/A (GQ/vacant/not owned or being bought) +VAL,INSP,N,5,0,0,None +VAL,INSP,N,5,1,10000,$1 to $10000 (Rounded and top-coded) +NAME,LAPTOP,C,1,Laptop or desktop,, +VAL,LAPTOP,C,1,b,b,N/A (GQ/vacant) +VAL,LAPTOP,C,1,1,1,Yes +VAL,LAPTOP,C,1,2,2,No +NAME,MHP,N,5,"Mobile home costs (yearly amount, use ADJHSG to adjust MHP to constant dollars)",, +VAL,MHP,N,5,bbbbb,bbbbb,N/A (GQ/vacant/not owned or being bought/ not mobile home) +VAL,MHP,N,5,0,0,None +VAL,MHP,N,5,1,99999,$1 to $99999 (Rounded and top-coded) +NAME,MRGI,C,1,First mortgage payment includes fire/hazard/flood insurance,, +VAL,MRGI,C,1,b,b,N/A (GQ/vacant/not owned or being bought/not mortgaged) +VAL,MRGI,C,1,1,1,"Yes, insurance included in payment" +VAL,MRGI,C,1,2,2,"No, insurance paid separately or no insurance" +NAME,MRGP,N,5,"First mortgage payment (monthly amount, use ADJHSG to adjust MRGP to constant dollars)",, +VAL,MRGP,N,5,bbbbb,bbbbb,N/A (GQ/vacant/not owned or being bought/not mortgaged) +VAL,MRGP,N,5,1,99999,$1 to $99999 (Rounded and top-coded) +NAME,MRGT,C,1,First mortgage payment includes real estate taxes,, +VAL,MRGT,C,1,b,b,N/A (GQ/vacant/not owned or being bought/not mortgaged) +VAL,MRGT,C,1,1,1,"Yes, taxes included in payment" +VAL,MRGT,C,1,2,2,"No, taxes paid separately or taxes not required" +NAME,MRGX,C,1,First mortgage status,, +VAL,MRGX,C,1,b,b,N/A (GQ/vacant/not owned or being bought) +VAL,MRGX,C,1,1,1,"Mortgage, deed of trust, or similar debt" +VAL,MRGX,C,1,2,2,Contract to purchase +VAL,MRGX,C,1,3,3,None +NAME,OTHSVCEX,C,1,Other Internet service,, +VAL,OTHSVCEX,C,1,b,b,N/A (GQ/vacant/no paid access to the internet) +VAL,OTHSVCEX,C,1,1,1,Yes +VAL,OTHSVCEX,C,1,2,2,No +VAL,OTHSVCEX,C,1,8,8,Suppressed for data year 2023 for select PUMAs +NAME,REFR,C,1,Refrigerator,, +VAL,REFR,C,1,b,b,N/A (GQ) +VAL,REFR,C,1,1,1,Yes +VAL,REFR,C,1,2,2,No +NAME,RMSP,N,2,Number of rooms,, +VAL,RMSP,N,2,bb,bb,N/A (GQ) +VAL,RMSP,N,2,1,99,Rooms (Top-coded) +NAME,RNTM,C,1,Meals included in rent,, +VAL,RNTM,C,1,b,b,"N/A (GQ/vacant units, except 'for rent' and 'rented, not occupied'/owned or being bought/occupied without rent payment)" +VAL,RNTM,C,1,1,1,Yes +VAL,RNTM,C,1,2,2,No +NAME,RNTP,N,5,Monthly rent (use ADJHSG to adjust RNTP to constant dollars),, +VAL,RNTP,N,5,bbbbb,bbbbb,"N/A (GQ/vacant units, except 'for rent' and 'rented, not occupied'/owned or being bought/occupied without rent payment)" +VAL,RNTP,N,5,1,99999,$1 to $99999 (Rounded and top-coded) +NAME,RWAT,C,1,Hot and cold running water,, +VAL,RWAT,C,1,b,b,N/A (GQ) +VAL,RWAT,C,1,1,1,Yes +VAL,RWAT,C,1,2,2,No +VAL,RWAT,C,1,9,9,"Case is from Puerto Rico, RWAT not applicable" +NAME,RWATPR,C,1,Running water,, +VAL,RWATPR,C,1,b,b,N/A (GQ) +VAL,RWATPR,C,1,1,1,Yes +VAL,RWATPR,C,1,2,2,No +VAL,RWATPR,C,1,9,9,"Case is from the United States, RWATPR not applicable" +NAME,SATELLITE,C,1,Satellite Internet service,, +VAL,SATELLITE,C,1,b,b,N/A (GQ/vacant/no paid access to the internet) +VAL,SATELLITE,C,1,1,1,Yes +VAL,SATELLITE,C,1,2,2,No +VAL,SATELLITE,C,1,8,8,Suppressed for data year 2023 for select PUMAs +NAME,SINK,C,1,Sink with a faucet,, +VAL,SINK,C,1,b,b,N/A (GQ) +VAL,SINK,C,1,1,1,Yes +VAL,SINK,C,1,2,2,No +NAME,SMARTPHONE,C,1,Smartphone,, +VAL,SMARTPHONE,C,1,b,b,N/A (GQ/vacant) +VAL,SMARTPHONE,C,1,1,1,Yes +VAL,SMARTPHONE,C,1,2,2,No +NAME,SMP,N,5,"Total payment on all second and junior mortgages and home equity loans (monthly amount, use ADJHSG to adjust SMP to constant dollars)",, +VAL,SMP,N,5,bbbbb,bbbbb,N/A (GQ/vacant/not owned or being bought/no second or junior mortgages or home equity loans) +VAL,SMP,N,5,0,0,No regular payment +VAL,SMP,N,5,1,99999,$1 to $99999 (Rounded and top-coded) +NAME,STOV,C,1,Stove or range,, +VAL,STOV,C,1,b,b,N/A (GQ) +VAL,STOV,C,1,1,1,Yes +VAL,STOV,C,1,2,2,No +NAME,TABLET,C,1,Tablet or other portable wireless computer,, +VAL,TABLET,C,1,b,b,N/A (GQ/vacant) +VAL,TABLET,C,1,1,1,Yes +VAL,TABLET,C,1,2,2,No +NAME,TEL,C,1,Telephone service,, +VAL,TEL,C,1,b,b,N/A (GQ/vacant) +VAL,TEL,C,1,1,1,Yes +VAL,TEL,C,1,2,2,No +NAME,TEN,C,1,Tenure,, +VAL,TEN,C,1,b,b,N/A (GQ/vacant) +VAL,TEN,C,1,1,1,Owned with mortgage or loan (include home equity loans) +VAL,TEN,C,1,2,2,Owned free and clear +VAL,TEN,C,1,3,3,Rented +VAL,TEN,C,1,4,4,Occupied without payment of rent +NAME,VACDUR,C,1,Vacancy duration,, +VAL,VACDUR,C,1,b,b,N/A (GQ/occupied) +VAL,VACDUR,C,1,1,1,Less than 1 month +VAL,VACDUR,C,1,2,2,1 up to 2 months +VAL,VACDUR,C,1,3,3,2 up to 4 months +VAL,VACDUR,C,1,4,4,4 up to 6 months +VAL,VACDUR,C,1,5,5,6 up to 12 months +VAL,VACDUR,C,1,6,6,12 up to 24 months +VAL,VACDUR,C,1,7,7,24 months or more +NAME,VACOTH,C,2,Other vacancy status,, +VAL,VACOTH,C,2,bb,bb,N/A (GQ/occupied/vacant with a response for VACS besides 'other vacant') +VAL,VACOTH,C,2,1,1,Foreclosure +VAL,VACOTH,C,2,2,2,Personal/family reasons +VAL,VACOTH,C,2,3,3,Legal proceedings +VAL,VACOTH,C,2,4,4,Preparing to rent/sell +VAL,VACOTH,C,2,5,5,Held for storage of household furniture +VAL,VACOTH,C,2,6,6,Needs repairs +VAL,VACOTH,C,2,7,7,Currently being repaired/renovated +VAL,VACOTH,C,2,8,8,Specific use housing +VAL,VACOTH,C,2,9,9,Extended absence +VAL,VACOTH,C,2,10,10,Abandoned/possibly to be demolished/possibly condemned +VAL,VACOTH,C,2,11,11,Other +NAME,VACS,C,1,Vacancy status,, +VAL,VACS,C,1,b,b,N/A (GQ/occupied) +VAL,VACS,C,1,1,1,For rent +VAL,VACS,C,1,2,2,"Rented, not occupied" +VAL,VACS,C,1,3,3,For sale only +VAL,VACS,C,1,4,4,"Sold, not occupied" +VAL,VACS,C,1,5,5,For seasonal/recreational/occasional use +VAL,VACS,C,1,6,6,For migrant workers +VAL,VACS,C,1,7,7,Other vacant +NAME,VALP,N,7,Property value,, +VAL,VALP,N,7,bbbbbbb,bbbbbbb,"N/A (GQ/vacant units, except 'for-sale-only' and 'sold, not occupied'/not owned or being bought)" +VAL,VALP,N,7,1,9999999,$1 to $9999999 (Rounded and top-coded) +NAME,VEH,C,1,Vehicles available (capacity of 1 ton or less),, +VAL,VEH,C,1,b,b,N/A (GQ/vacant) +VAL,VEH,C,1,0,0,No vehicles +VAL,VEH,C,1,1,1,1 vehicle +VAL,VEH,C,1,2,2,2 vehicles +VAL,VEH,C,1,3,3,3 vehicles +VAL,VEH,C,1,4,4,4 vehicles +VAL,VEH,C,1,5,5,5 vehicles +VAL,VEH,C,1,6,6,6 or more vehicles +NAME,WATFP,C,1,Water cost flag variable,, +VAL,WATFP,C,1,b,b,N/A (GQ/vacant) +VAL,WATFP,C,1,1,1,Included in rent or in condo fee +VAL,WATFP,C,1,2,2,No charge +VAL,WATFP,C,1,3,3,Valid annual water cost in WATP +NAME,WATP,N,4,"Water cost (yearly cost, use ADJHSG to adjust WATP to constant dollars)",, +VAL,WATP,N,4,bbbb,bbbb,N/A (GQ/vacant/included in rent or in condo fee/no charge) +VAL,WATP,N,4,3,9999,$3 to $9999 (Rounded and top-coded) +NAME,YRBLT,C,4,When structure first built,, +VAL,YRBLT,C,4,bbbb,bbbb,N/A (GQ) +VAL,YRBLT,C,4,1939,1939,1939 or earlier +VAL,YRBLT,C,4,1940,1940,1940 to 1949 +VAL,YRBLT,C,4,1950,1950,1950 to 1959 +VAL,YRBLT,C,4,1960,1960,1960 to 1969 +VAL,YRBLT,C,4,1970,1970,1970 to 1979 +VAL,YRBLT,C,4,1980,1980,1980 to 1989 +VAL,YRBLT,C,4,1990,1990,1990 to 1999 +VAL,YRBLT,C,4,2000,2000,2000 to 2009 +VAL,YRBLT,C,4,2010,2010,2010 to 2019 +VAL,YRBLT,C,4,2020,2020,2020 +VAL,YRBLT,C,4,2021,2021,2021 +VAL,YRBLT,C,4,2022,2022,2022 +VAL,YRBLT,C,4,2023,2023,2023 +NAME,CPLT,C,1,Couple Type,, +VAL,CPLT,C,1,b,b,N/A (GQ/vacant/non-couple households) +VAL,CPLT,C,1,1,1,Opposite-sex husband/wife/spouse household +VAL,CPLT,C,1,2,2,Same-sex husband/wife/spouse household +VAL,CPLT,C,1,3,3,Opposite-sex unmarried partner household +VAL,CPLT,C,1,4,4,Same-sex unmarried partner household +NAME,FINCP,N,7,"Family income (past 12 months, use ADJINC to adjust FINCP to constant dollars)",, +VAL,FINCP,N,7,bbbbbbb,bbbbbbb,N/A (GQ/vacant) +VAL,FINCP,N,7,0,0,No family income +VAL,FINCP,N,7,-59999,-59999,"Loss of -$59,999 or more" +VAL,FINCP,N,7,-59998,-1,"Loss of $1 to -$59,998" +VAL,FINCP,N,7,1,9999999,Total family income in dollars (Components are rounded) +NAME,FPARC,C,1,Family presence and age of related children,, +VAL,FPARC,C,1,b,b,N/A (GQ/vacant/not a family) +VAL,FPARC,C,1,1,1,With related children under 5 years only +VAL,FPARC,C,1,2,2,With related children 5 to 17 years only +VAL,FPARC,C,1,3,3,With related children under 5 years and 5 to 17 years +VAL,FPARC,C,1,4,4,No related children +NAME,GRNTP,N,5,"Gross rent (monthly amount, use ADJHSG to adjust GRNTP to constant dollars)",, +VAL,GRNTP,N,5,bbbbb,bbbbb,N/A (GQ/vacant/owned or being bought/occupied without rent payment) +VAL,GRNTP,N,5,1,99999,$1 - $99999 (Components are rounded) +NAME,GRPIP,N,3,Gross rent as a percentage of household income past 12 months,, +VAL,GRPIP,N,3,bbb,bbb,N/A (GQ/vacant/owned or being bought/occupied without rent payment/no household income) +VAL,GRPIP,N,3,1,100,1 percent to 100 percent +VAL,GRPIP,N,3,101,101,101 percent or more +NAME,HHL,C,1,Household language,, +VAL,HHL,C,1,b,b,N/A (GQ/vacant) +VAL,HHL,C,1,1,1,English only +VAL,HHL,C,1,2,2,Spanish +VAL,HHL,C,1,3,3,Other Indo-European languages +VAL,HHL,C,1,4,4,Asian and Pacific Island languages +VAL,HHL,C,1,5,5,Other language +NAME,HHLANP,C,4,Detailed household language,, +VAL,HHLANP,C,4,bbbb,bbbb,N/A (GQ/vacant) +VAL,HHLANP,C,4,1000,1000,Jamaican Creole English +VAL,HHLANP,C,4,1025,1025,Other English-based Creole languages +VAL,HHLANP,C,4,1055,1055,Haitian +VAL,HHLANP,C,4,1069,1069,Kabuverdianu +VAL,HHLANP,C,4,1110,1110,German +VAL,HHLANP,C,4,1120,1120,Swiss German +VAL,HHLANP,C,4,1125,1125,Pennsylvania German +VAL,HHLANP,C,4,1130,1130,Yiddish +VAL,HHLANP,C,4,1132,1132,Dutch +VAL,HHLANP,C,4,1134,1134,Afrikaans +VAL,HHLANP,C,4,1140,1140,Swedish +VAL,HHLANP,C,4,1141,1141,Danish +VAL,HHLANP,C,4,1142,1142,Norwegian +VAL,HHLANP,C,4,1155,1155,Italian +VAL,HHLANP,C,4,1170,1170,French +VAL,HHLANP,C,4,1175,1175,Cajun French +VAL,HHLANP,C,4,1200,1200,Spanish +VAL,HHLANP,C,4,1210,1210,Portuguese +VAL,HHLANP,C,4,1220,1220,Romanian +VAL,HHLANP,C,4,1231,1231,Irish +VAL,HHLANP,C,4,1235,1235,Greek +VAL,HHLANP,C,4,1242,1242,Albanian +VAL,HHLANP,C,4,1250,1250,Russian +VAL,HHLANP,C,4,1260,1260,Ukrainian +VAL,HHLANP,C,4,1262,1262,Czech +VAL,HHLANP,C,4,1263,1263,Slovak +VAL,HHLANP,C,4,1270,1270,Polish +VAL,HHLANP,C,4,1273,1273,Bulgarian +VAL,HHLANP,C,4,1274,1274,Macedonian +VAL,HHLANP,C,4,1275,1275,Serbocroatian +VAL,HHLANP,C,4,1276,1276,Bosnian +VAL,HHLANP,C,4,1277,1277,Croatian +VAL,HHLANP,C,4,1278,1278,Serbian +VAL,HHLANP,C,4,1281,1281,Lithuanian +VAL,HHLANP,C,4,1283,1283,Latvian +VAL,HHLANP,C,4,1288,1288,Armenian +VAL,HHLANP,C,4,1290,1290,Farsi +VAL,HHLANP,C,4,1292,1292,Dari +VAL,HHLANP,C,4,1315,1315,Kurdish +VAL,HHLANP,C,4,1327,1327,Pashto +VAL,HHLANP,C,4,1340,1340,India N.E.C. +VAL,HHLANP,C,4,1350,1350,Hindi +VAL,HHLANP,C,4,1360,1360,Urdu +VAL,HHLANP,C,4,1380,1380,Bengali +VAL,HHLANP,C,4,1420,1420,Punjabi +VAL,HHLANP,C,4,1435,1435,Konkani +VAL,HHLANP,C,4,1440,1440,Marathi +VAL,HHLANP,C,4,1450,1450,Gujarati +VAL,HHLANP,C,4,1500,1500,Nepali +VAL,HHLANP,C,4,1530,1530,Sinhala +VAL,HHLANP,C,4,1540,1540,Other Indo-Iranian languages +VAL,HHLANP,C,4,1564,1564,Other Indo-European languages +VAL,HHLANP,C,4,1565,1565,Finnish +VAL,HHLANP,C,4,1582,1582,Hungarian +VAL,HHLANP,C,4,1675,1675,Turkish +VAL,HHLANP,C,4,1690,1690,Mongolian +VAL,HHLANP,C,4,1730,1730,Telugu +VAL,HHLANP,C,4,1737,1737,Kannada +VAL,HHLANP,C,4,1750,1750,Malayalam +VAL,HHLANP,C,4,1765,1765,Tamil +VAL,HHLANP,C,4,1900,1900,Khmer +VAL,HHLANP,C,4,1960,1960,Vietnamese +VAL,HHLANP,C,4,1970,1970,Chinese +VAL,HHLANP,C,4,2000,2000,Mandarin +VAL,HHLANP,C,4,2030,2030,Min Nan Chinese +VAL,HHLANP,C,4,2050,2050,Cantonese +VAL,HHLANP,C,4,2100,2100,Tibetan +VAL,HHLANP,C,4,2160,2160,Burmese +VAL,HHLANP,C,4,2270,2270,Chin languages +VAL,HHLANP,C,4,2350,2350,Karen languages +VAL,HHLANP,C,4,2430,2430,Thai +VAL,HHLANP,C,4,2475,2475,Lao +VAL,HHLANP,C,4,2525,2525,Iu Mien +VAL,HHLANP,C,4,2535,2535,Hmong +VAL,HHLANP,C,4,2560,2560,Japanese +VAL,HHLANP,C,4,2575,2575,Korean +VAL,HHLANP,C,4,2715,2715,Malay +VAL,HHLANP,C,4,2770,2770,Indonesian +VAL,HHLANP,C,4,2850,2850,Other languages of Asia +VAL,HHLANP,C,4,2910,2910,Filipino +VAL,HHLANP,C,4,2920,2920,Tagalog +VAL,HHLANP,C,4,2950,2950,Cebuano +VAL,HHLANP,C,4,3150,3150,Ilocano +VAL,HHLANP,C,4,3190,3190,Other Philippine languages +VAL,HHLANP,C,4,3220,3220,Chamorro +VAL,HHLANP,C,4,3270,3270,Marshallese +VAL,HHLANP,C,4,3350,3350,Chuukese +VAL,HHLANP,C,4,3420,3420,Samoan +VAL,HHLANP,C,4,3500,3500,Tongan +VAL,HHLANP,C,4,3570,3570,Hawaiian +VAL,HHLANP,C,4,3600,3600,Other Eastern Malayo-Polynesian languages +VAL,HHLANP,C,4,4500,4500,Arabic +VAL,HHLANP,C,4,4545,4545,Hebrew +VAL,HHLANP,C,4,4560,4560,Assyrian Neo-Aramaic +VAL,HHLANP,C,4,4565,4565,Chaldean Neo-Aramaic +VAL,HHLANP,C,4,4590,4590,Amharic +VAL,HHLANP,C,4,4640,4640,Tigrinya +VAL,HHLANP,C,4,4830,4830,Oromo +VAL,HHLANP,C,4,4840,4840,Somali +VAL,HHLANP,C,4,4880,4880,Other Afro-Asiatic languages +VAL,HHLANP,C,4,4900,4900,Nilo-Saharan languages +VAL,HHLANP,C,4,5150,5150,Swahili +VAL,HHLANP,C,4,5345,5345,Ganda +VAL,HHLANP,C,4,5525,5525,Shona +VAL,HHLANP,C,4,5645,5645,Other Bantu languages +VAL,HHLANP,C,4,5845,5845,Manding languages +VAL,HHLANP,C,4,5900,5900,Other Mande languages +VAL,HHLANP,C,4,5940,5940,Fulah +VAL,HHLANP,C,4,5950,5950,Wolof +VAL,HHLANP,C,4,6120,6120,Akan (incl. Twi) +VAL,HHLANP,C,4,6205,6205,Ga +VAL,HHLANP,C,4,6230,6230,Gbe languages +VAL,HHLANP,C,4,6290,6290,Yoruba +VAL,HHLANP,C,4,6300,6300,Edoid languages +VAL,HHLANP,C,4,6370,6370,Igbo +VAL,HHLANP,C,4,6500,6500,Other Niger-Congo languages +VAL,HHLANP,C,4,6795,6795,Other languages of Africa +VAL,HHLANP,C,4,6800,6800,Aleut languages +VAL,HHLANP,C,4,6839,6839,Ojibwa +VAL,HHLANP,C,4,6930,6930,Apache languages +VAL,HHLANP,C,4,6933,6933,Navajo +VAL,HHLANP,C,4,7019,7019,Dakota languages +VAL,HHLANP,C,4,7032,7032,Muskogean languages +VAL,HHLANP,C,4,7050,7050,Cherokee +VAL,HHLANP,C,4,7060,7060,Uto-Aztecan languages +VAL,HHLANP,C,4,7124,7124,Other Native North American languages +VAL,HHLANP,C,4,7300,7300,Other Middle and South American languages +VAL,HHLANP,C,4,9500,9500,English only household +VAL,HHLANP,C,4,9999,9999,Other and unspecified languages +NAME,HHLDRAGEP,N,2,Age of the householder,, +VAL,HHLDRAGEP,N,2,bb,bb,N/A (GQ/vacant) +VAL,HHLDRAGEP,N,2,15,99,15 to 99 years (Top-coded) +NAME,HHLDRHISP,C,2,Recoded detailed Hispanic origin of the householder,, +VAL,HHLDRHISP,C,2,bb,bb,N/A (GQ/vacant) +VAL,HHLDRHISP,C,2,01,01,Not Spanish/Hispanic/Latino +VAL,HHLDRHISP,C,2,02,02,Mexican +VAL,HHLDRHISP,C,2,03,03,Puerto Rican +VAL,HHLDRHISP,C,2,04,04,Cuban +VAL,HHLDRHISP,C,2,05,05,Dominican +VAL,HHLDRHISP,C,2,06,06,Costa Rican +VAL,HHLDRHISP,C,2,07,07,Guatemalan +VAL,HHLDRHISP,C,2,08,08,Honduran +VAL,HHLDRHISP,C,2,09,09,Nicaraguan +VAL,HHLDRHISP,C,2,10,10,Panamanian +VAL,HHLDRHISP,C,2,11,11,Salvadoran +VAL,HHLDRHISP,C,2,12,12,Other Central American +VAL,HHLDRHISP,C,2,13,13,Argentinean +VAL,HHLDRHISP,C,2,14,14,Bolivian +VAL,HHLDRHISP,C,2,15,15,Chilean +VAL,HHLDRHISP,C,2,16,16,Colombian +VAL,HHLDRHISP,C,2,17,17,Ecuadorian +VAL,HHLDRHISP,C,2,18,18,Paraguayan +VAL,HHLDRHISP,C,2,19,19,Peruvian +VAL,HHLDRHISP,C,2,20,20,Uruguayan +VAL,HHLDRHISP,C,2,21,21,Venezuelan +VAL,HHLDRHISP,C,2,22,22,Other South American +VAL,HHLDRHISP,C,2,23,23,Spaniard +VAL,HHLDRHISP,C,2,24,24,All Other Spanish/Hispanic/Latino +NAME,HHLDRRAC1P,C,1,Recoded detailed race code of the householder,, +VAL,HHLDRRAC1P,C,1,b,b,N/A (GQ/vacant) +VAL,HHLDRRAC1P,C,1,1,1,White alone +VAL,HHLDRRAC1P,C,1,2,2,Black or African American alone +VAL,HHLDRRAC1P,C,1,3,3,American Indian alone +VAL,HHLDRRAC1P,C,1,4,4,Alaska Native alone +VAL,HHLDRRAC1P,C,1,5,5,"American Indian and Alaska Native tribes specified; or American Indian or Alaska Native, not specified and no other races" +VAL,HHLDRRAC1P,C,1,6,6,Asian alone +VAL,HHLDRRAC1P,C,1,7,7,Native Hawaiian and Other Pacific Islander alone +VAL,HHLDRRAC1P,C,1,8,8,Some Other Race alone +VAL,HHLDRRAC1P,C,1,9,9,Two or More Races +NAME,HHT,C,1,Household/family type,, +VAL,HHT,C,1,b,b,N/A (GQ/vacant) +VAL,HHT,C,1,1,1,Married couple household +VAL,HHT,C,1,2,2,"Other family household: Male householder, no spouse present" +VAL,HHT,C,1,3,3,"Other family household: Female householder, no spouse present" +VAL,HHT,C,1,4,4,Nonfamily household: Male householder: Living alone +VAL,HHT,C,1,5,5,Nonfamily household: Male householder: Not living alone +VAL,HHT,C,1,6,6,Nonfamily household: Female householder: Living alone +VAL,HHT,C,1,7,7,Nonfamily household: Female householder: Not living alone +NAME,HHT2,C,2,Household/family type (includes cohabiting),, +VAL,HHT2,C,2,bb,bb,N/A (GQ/vacant) +VAL,HHT2,C,2,01,01,Married couple household with children of the householder less than 18 +VAL,HHT2,C,2,02,02,"Married couple household, no children of the householder less than 18" +VAL,HHT2,C,2,03,03,Cohabiting couple household with children of the householder less than 18 +VAL,HHT2,C,2,04,04,"Cohabiting couple household, no children of the householder less than 18" +VAL,HHT2,C,2,05,05,"Female householder, no spouse/partner present, living alone" +VAL,HHT2,C,2,06,06,"Female householder, no spouse/partner present, with children of the householder less than 18" +VAL,HHT2,C,2,07,07,"Female householder, no spouse/partner present, with relatives, no children of the householder less than 18" +VAL,HHT2,C,2,08,08,"Female householder, no spouse/partner present, only nonrelatives present" +VAL,HHT2,C,2,09,09,"Male householder, no spouse/partner present, living alone" +VAL,HHT2,C,2,10,10,"Male householder, no spouse/partner present, with children of the householder less than 18" +VAL,HHT2,C,2,11,11,"Male householder, no spouse/partner present, with relatives, no children of the householder less than 18" +VAL,HHT2,C,2,12,12,"Male householder, no spouse/partner present, only nonrelatives present" +NAME,HINCP,N,7,"Household income (past 12 months, use ADJINC to adjust HINCP to constant dollars)",, +VAL,HINCP,N,7,bbbbbbb,bbbbbbb,N/A (GQ/vacant) +VAL,HINCP,N,7,0,0,No household income +VAL,HINCP,N,7,-59999,-59999,"Loss of -$59,999 or more" +VAL,HINCP,N,7,-59998,-1,"Loss of $1 to -$59,998" +VAL,HINCP,N,7,1,9999999,Total household income in dollars (Components are rounded) +NAME,HUGCL,C,1,Household with grandparent living with grandchildren,, +VAL,HUGCL,C,1,b,b,N/A (GQ/vacant) +VAL,HUGCL,C,1,0,0,Household without grandparent living with grandchildren +VAL,HUGCL,C,1,1,1,Household with grandparent living with grandchildren +NAME,HUPAC,C,1,HH presence and age of children,, +VAL,HUPAC,C,1,b,b,N/A (GQ/vacant) +VAL,HUPAC,C,1,1,1,With children under 6 years only +VAL,HUPAC,C,1,2,2,With children 6 to 17 years only +VAL,HUPAC,C,1,3,3,With children under 6 years and 6 to 17 years +VAL,HUPAC,C,1,4,4,No children +NAME,HUPAOC,C,1,HH presence and age of own children,, +VAL,HUPAOC,C,1,b,b,N/A (GQ/vacant) +VAL,HUPAOC,C,1,1,1,Presence of own children under 6 years only +VAL,HUPAOC,C,1,2,2,Presence of own children 6 to 17 years only +VAL,HUPAOC,C,1,3,3,Presence of own children under 6 years and 6 to 17 years +VAL,HUPAOC,C,1,4,4,No own children present +NAME,HUPARC,C,1,HH presence and age of related children,, +VAL,HUPARC,C,1,b,b,N/A (GQ/vacant) +VAL,HUPARC,C,1,1,1,Presence of related children under 6 years only +VAL,HUPARC,C,1,2,2,Presence of related children 6 to 17 years only +VAL,HUPARC,C,1,3,3,Presence of related children under 6 years and 6 to 17 years +VAL,HUPARC,C,1,4,4,No related children present +NAME,KIT,C,1,Complete kitchen facilities,, +VAL,KIT,C,1,b,b,N/A (GQ) +VAL,KIT,C,1,1,1,"Yes, has stove or range, refrigerator, and sink with a faucet" +VAL,KIT,C,1,2,2,No +NAME,LNGI,C,1,Limited English speaking household,, +VAL,LNGI,C,1,b,b,N/A (GQ/vacant) +VAL,LNGI,C,1,1,1,At least one person in the household 14 and over speaks English only or speaks English 'very well' +VAL,LNGI,C,1,2,2,No one in the household 14 and over speaks English only or speaks English 'very well' +NAME,MULTG,C,1,Multigenerational household,, +VAL,MULTG,C,1,b,b,N/A (GQ/Vacant) +VAL,MULTG,C,1,1,1,"No, not a multigenerational household" +VAL,MULTG,C,1,2,2,"Yes, is a multigenerational household" +NAME,MV,C,1,When moved into this house or apartment,, +VAL,MV,C,1,b,b,N/A (GQ/vacant) +VAL,MV,C,1,1,1,12 months or less +VAL,MV,C,1,2,2,13 to 23 months +VAL,MV,C,1,3,3,2 to 4 years +VAL,MV,C,1,4,4,5 to 9 years +VAL,MV,C,1,5,5,10 to 19 years +VAL,MV,C,1,6,6,20 to 29 years +VAL,MV,C,1,7,7,30 years or more +NAME,NOC,N,2,Number of own children in household (unweighted),, +VAL,NOC,N,2,bb,bb,N/A (GQ/vacant) +VAL,NOC,N,2,0,0,No own children +VAL,NOC,N,2,1,19,Number of own children in household +NAME,NPF,N,2,Number of persons in family (unweighted),, +VAL,NPF,N,2,bb,bb,N/A (GQ/vacant/non-family household) +VAL,NPF,N,2,2,20,Number of persons in family +NAME,NPP,C,1,Grandparent headed household with no parent present,, +VAL,NPP,C,1,b,b,N/A (GQ/vacant) +VAL,NPP,C,1,0,0,Not a grandparent headed household with no parent present +VAL,NPP,C,1,1,1,Grandparent headed household with no parent present +NAME,NR,C,1,Presence of nonrelative in household,, +VAL,NR,C,1,b,b,N/A (GQ/vacant) +VAL,NR,C,1,0,0,None +VAL,NR,C,1,1,1,1 or more nonrelatives +NAME,NRC,N,2,Number of related children in household (unweighted),, +VAL,NRC,N,2,bb,bb,N/A (GQ/vacant) +VAL,NRC,N,2,0,0,No related children +VAL,NRC,N,2,1,19,Number of related children in household +NAME,OCPIP,N,3,Selected monthly owner costs as a percentage of household income during the past 12 months,, +VAL,OCPIP,N,3,bbb,bbb,N/A (GQ/vacant/not owned or being bought/ no household income) +VAL,OCPIP,N,3,1,100,1 percent to 100 percent +VAL,OCPIP,N,3,101,101,101 percent or more +NAME,PARTNER,C,1,Unmarried partner household,, +VAL,PARTNER,C,1,b,b,N/A (GQ/vacant) +VAL,PARTNER,C,1,0,0,No unmarried partner in household +VAL,PARTNER,C,1,1,1,"Male householder, male partner" +VAL,PARTNER,C,1,2,2,"Male householder, female partner" +VAL,PARTNER,C,1,3,3,"Female householder, female partner" +VAL,PARTNER,C,1,4,4,"Female householder, male partner" +NAME,PLM,C,1,Complete plumbing facilities,, +VAL,PLM,C,1,b,b,N/A (GQ) +VAL,PLM,C,1,1,1,"Yes, has hot and cold running water, and a bathtub or shower" +VAL,PLM,C,1,2,2,No +VAL,PLM,C,1,9,9,"Case is from Puerto Rico, PLM recode not applicable" +NAME,PLMPRP,C,1,Complete plumbing facilities for Puerto Rico,, +VAL,PLMPRP,C,1,b,b,N/A (GQ) +VAL,PLMPRP,C,1,1,1,"Yes, has running water, and a bathtub or shower" +VAL,PLMPRP,C,1,2,2,No +VAL,PLMPRP,C,1,9,9,"Case is from the United States, PLMPRP not applicable" +NAME,PSF,C,1,Presence of subfamilies in household,, +VAL,PSF,C,1,b,b,N/A (GQ/vacant) +VAL,PSF,C,1,0,0,No subfamilies +VAL,PSF,C,1,1,1,1 or more subfamilies +NAME,R18,C,1,Presence of persons under 18 years in household (unweighted),, +VAL,R18,C,1,b,b,N/A (GQ/vacant) +VAL,R18,C,1,0,0,No person under 18 in household +VAL,R18,C,1,1,1,1 or more persons under 18 in household +NAME,R60,C,1,Presence of persons 60 years and over in household (unweighted),, +VAL,R60,C,1,b,b,N/A (GQ/vacant) +VAL,R60,C,1,0,0,No person 60 and over +VAL,R60,C,1,1,1,1 person 60 and over +VAL,R60,C,1,2,2,2 or more persons 60 and over +NAME,R65,C,1,Presence of persons 65 years and over in household (unweighted),, +VAL,R65,C,1,b,b,N/A (GQ/vacant) +VAL,R65,C,1,0,0,No person 65 and over +VAL,R65,C,1,1,1,1 person 65 and over +VAL,R65,C,1,2,2,2 or more persons 65 and over +NAME,RESMODE,C,1,Response mode,, +VAL,RESMODE,C,1,b,b,N/A (GQ) +VAL,RESMODE,C,1,1,1,Mail +VAL,RESMODE,C,1,2,2,CATI/CAPI +VAL,RESMODE,C,1,3,3,Internet +NAME,SMOCP,N,5,Selected monthly owner costs (use ADJHSG to adjust SMOCP to constant dollars),, +VAL,SMOCP,N,5,bbbbb,bbbbb,N/A (GQ/vacant/not owned or being bought) +VAL,SMOCP,N,5,0,0,None +VAL,SMOCP,N,5,1,99999,$1 - $99999 (Components are rounded) +NAME,SMX,C,1,Second or junior mortgage or home equity loan status,, +VAL,SMX,C,1,b,b,N/A (GQ/vacant/not owned or being bought) +VAL,SMX,C,1,1,1,"Yes, a second mortgage" +VAL,SMX,C,1,2,2,"Yes, a home equity loan" +VAL,SMX,C,1,3,3,No +VAL,SMX,C,1,4,4,Both a second mortgage and a home equity loan +NAME,SRNT,C,1,Specified rental unit,, +VAL,SRNT,C,1,b,b,"N/A (GQ/vacant units, except 'for-rent-only' and 'rented, not occupied'/owned or being bought)" +VAL,SRNT,C,1,0,0,A single-family home on 10 or more acres. +VAL,SRNT,C,1,1,1,"A single-family home on less than 10 acres or any other type of building, including mobile homes, with no regard to acreage." +NAME,SVAL,C,1,Specified owner unit,, +VAL,SVAL,C,1,b,b,"N/A (GQ/ vacant units, except 'for-sale-only' and 'sold, not occupied'/not owned or being bought)" +VAL,SVAL,C,1,0,0,"A single family home on 10 or more acres or any other type of building, including mobile homes, with no regard to acreage." +VAL,SVAL,C,1,1,1,A single family home on less than 10 acres. +NAME,TAXAMT,N,5,Property taxes (yearly real estate taxes),, +VAL,TAXAMT,N,5,bbbbb,bbbbb,N/A (GQ/vacant/not owned or being bought) +VAL,TAXAMT,N,5,0,57500,$0 to $57500 (rounded and top-coded) +NAME,WIF,C,1,Workers in family during the past 12 months,, +VAL,WIF,C,1,b,b,N/A (GQ/vacant/non-family household) +VAL,WIF,C,1,0,0,No workers +VAL,WIF,C,1,1,1,1 worker +VAL,WIF,C,1,2,2,2 workers +VAL,WIF,C,1,3,3,3 or more workers in family +NAME,WKEXREL,C,2,Work experience of householder and spouse,, +VAL,WKEXREL,C,2,bb,bb,N/A (GQ/vacant/not a family) +VAL,WKEXREL,C,2,01,01,Householder and spouse worked FT +VAL,WKEXREL,C,2,02,02,Householder worked FT; spouse worked less than FT +VAL,WKEXREL,C,2,03,03,Householder worked FT; spouse did not work +VAL,WKEXREL,C,2,04,04,Householder worked less than FT; spouse worked FT +VAL,WKEXREL,C,2,05,05,Householder worked less than FT; spouse worked less than FT +VAL,WKEXREL,C,2,06,06,Householder worked less than FT; spouse did not work +VAL,WKEXREL,C,2,07,07,Householder did not work; spouse worked FT +VAL,WKEXREL,C,2,08,08,Householder did not work; spouse worked less than FT +VAL,WKEXREL,C,2,09,09,Householder did not work; spouse did not work +VAL,WKEXREL,C,2,10,10,Male householder worked FT; no spouse present +VAL,WKEXREL,C,2,11,11,Male householder worked less than FT; no spouse present +VAL,WKEXREL,C,2,12,12,Male householder did not work; no spouse present +VAL,WKEXREL,C,2,13,13,Female householder worked FT; no spouse present +VAL,WKEXREL,C,2,14,14,Female householder worked less than FT; no spouse present +VAL,WKEXREL,C,2,15,15,Female householder did not work; no spouse present +NAME,WORKSTAT,C,2,Work status of householder or spouse in family households,, +VAL,WORKSTAT,C,2,bb,bb,N/A (GQ/not a family household/same-sex married-couple families) +VAL,WORKSTAT,C,2,01,01,"Husband and wife both in labor force, both employed or in Armed Forces" +VAL,WORKSTAT,C,2,02,02,"Husband and wife both in labor force, husband employed or in Armed Forces, wife unemployed" +VAL,WORKSTAT,C,2,03,03,"Husband in labor force and wife not in labor force, husband employed or in Armed Forces" +VAL,WORKSTAT,C,2,04,04,"Husband and wife both in labor force, husband unemployed, wife employed or in Armed Forces" +VAL,WORKSTAT,C,2,05,05,"Husband and wife both in labor force, husband unemployed, wife unemployed" +VAL,WORKSTAT,C,2,06,06,"Husband in labor force, husband unemployed, wife not in labor force" +VAL,WORKSTAT,C,2,07,07,"Husband not in labor force, wife in labor force, wife employed or in Armed Forces" +VAL,WORKSTAT,C,2,08,08,"Husband not in labor force, wife in labor force, wife unemployed" +VAL,WORKSTAT,C,2,09,09,Neither husband nor wife in labor force +VAL,WORKSTAT,C,2,10,10,"Male householder with no wife present, householder in labor force, employed or in Armed Forces" +VAL,WORKSTAT,C,2,11,11,"Male householder with no wife present, householder in labor force and unemployed" +VAL,WORKSTAT,C,2,12,12,"Male householder with no wife present, householder not in labor force" +VAL,WORKSTAT,C,2,13,13,"Female householder with no husband present, householder in labor force, employed or in Armed Forces" +VAL,WORKSTAT,C,2,14,14,"Female householder with no husband present, householder in labor force and unemployed" +VAL,WORKSTAT,C,2,15,15,"Female householder with no husband present, householder not in labor force" +NAME,FACCESSP,C,1,Access to the Internet allocation flag,, +VAL,FACCESSP,C,1,b,b,N/A (GQ) +VAL,FACCESSP,C,1,0,0,No +VAL,FACCESSP,C,1,1,1,Yes +NAME,FACRP,C,1,Lot size allocation flag,, +VAL,FACRP,C,1,b,b,N/A (GQ) +VAL,FACRP,C,1,0,0,No +VAL,FACRP,C,1,1,1,Yes +NAME,FAGSP,C,1,Sales of Agricultural Products allocation flag,, +VAL,FAGSP,C,1,b,b,N/A (GQ) +VAL,FAGSP,C,1,0,0,No +VAL,FAGSP,C,1,1,1,Yes +NAME,FBATHP,C,1,Bathtub or shower allocation flag,, +VAL,FBATHP,C,1,b,b,N/A (GQ) +VAL,FBATHP,C,1,0,0,No +VAL,FBATHP,C,1,1,1,Yes +NAME,FBDSP,C,1,Number of bedrooms allocation flag,, +VAL,FBDSP,C,1,b,b,N/A (GQ) +VAL,FBDSP,C,1,0,0,No +VAL,FBDSP,C,1,1,1,Yes +NAME,FBLDP,C,1,Units in structure allocation flag,, +VAL,FBLDP,C,1,b,b,N/A (GQ) +VAL,FBLDP,C,1,0,0,No +VAL,FBLDP,C,1,1,1,Yes +NAME,FBROADBNDP,C,1,Cellular data plan for a smartphone or other mobile device allocation flag,, +VAL,FBROADBNDP,C,1,b,b,N/A (GQ) +VAL,FBROADBNDP,C,1,0,0,No +VAL,FBROADBNDP,C,1,1,1,Yes +NAME,FCOMPOTHXP,C,1,Other computer equipment allocation flag,, +VAL,FCOMPOTHXP,C,1,b,b,N/A (GQ) +VAL,FCOMPOTHXP,C,1,0,0,No +VAL,FCOMPOTHXP,C,1,1,1,Yes +NAME,FCONP,C,1,Condominium fee (monthly amount) allocation flag,, +VAL,FCONP,C,1,b,b,N/A (GQ) +VAL,FCONP,C,1,0,0,No +VAL,FCONP,C,1,1,1,Yes +NAME,FDIALUPP,C,1,Dial-up service allocation flag,, +VAL,FDIALUPP,C,1,b,b,N/A (GQ) +VAL,FDIALUPP,C,1,0,0,No +VAL,FDIALUPP,C,1,1,1,Yes +NAME,FELEP,C,1,Electricity cost (monthly cost) allocation flag,, +VAL,FELEP,C,1,b,b,N/A (GQ) +VAL,FELEP,C,1,0,0,No +VAL,FELEP,C,1,1,1,Yes +NAME,FFINCP,C,1,Family income (past 12 months) allocation flag,, +VAL,FFINCP,C,1,b,b,N/A (GQ) +VAL,FFINCP,C,1,0,0,No +VAL,FFINCP,C,1,1,1,Yes +NAME,FFSP,C,1,Yearly food stamp/Supplemental Nutrition Assistance Program (SNAP) recipiency allocation flag,, +VAL,FFSP,C,1,0,0,No +VAL,FFSP,C,1,1,1,Yes +NAME,FFULP,C,1,Fuel cost (yearly cost for fuels other than gas and electricity) allocation flag,, +VAL,FFULP,C,1,b,b,N/A (GQ) +VAL,FFULP,C,1,0,0,No +VAL,FFULP,C,1,1,1,Yes +NAME,FGASP,C,1,Gas cost (monthly cost) allocation flag,, +VAL,FGASP,C,1,b,b,N/A (GQ) +VAL,FGASP,C,1,0,0,No +VAL,FGASP,C,1,1,1,Yes +NAME,FGRNTP,C,1,Gross rent (monthly amount) allocation flag,, +VAL,FGRNTP,C,1,b,b,N/A (GQ) +VAL,FGRNTP,C,1,0,0,No +VAL,FGRNTP,C,1,1,1,Yes +NAME,FHFLP,C,1,House heating fuel allocation flag,, +VAL,FHFLP,C,1,b,b,N/A (GQ) +VAL,FHFLP,C,1,0,0,No +VAL,FHFLP,C,1,1,1,Yes +NAME,FHINCP,C,1,Household income (past 12 months) allocation flag,, +VAL,FHINCP,C,1,b,b,N/A (GQ) +VAL,FHINCP,C,1,0,0,No +VAL,FHINCP,C,1,1,1,Yes +NAME,FHISPEEDP,C,1,"Broadband (high speed) Internet service such as cable, fiber optic, or DSL service allocation flag",, +VAL,FHISPEEDP,C,1,b,b,N/A (GQ) +VAL,FHISPEEDP,C,1,0,0,No +VAL,FHISPEEDP,C,1,1,1,Yes +NAME,FHOTWATP,C,1,Water heater allocation flag (Puerto Rico only),, +VAL,FHOTWATP,C,1,b,b,N/A (GQ) +VAL,FHOTWATP,C,1,0,0,No +VAL,FHOTWATP,C,1,1,1,Yes +NAME,FINSP,C,1,"Fire, hazard, flood insurance (yearly amount) allocation flag",, +VAL,FINSP,C,1,b,b,N/A (GQ) +VAL,FINSP,C,1,0,0,No +VAL,FINSP,C,1,1,1,Yes +NAME,FKITP,C,1,Complete kitchen facilities allocation flag,, +VAL,FKITP,C,1,b,b,N/A (GQ) +VAL,FKITP,C,1,0,0,No +VAL,FKITP,C,1,1,1,Yes +NAME,FLAPTOPP,C,1,Laptop or desktop allocation flag,, +VAL,FLAPTOPP,C,1,b,b,N/A (GQ) +VAL,FLAPTOPP,C,1,0,0,No +VAL,FLAPTOPP,C,1,1,1,Yes +NAME,FMHP,C,1,Mobile home costs (yearly amount) allocation flag,, +VAL,FMHP,C,1,b,b,N/A (GQ) +VAL,FMHP,C,1,0,0,No +VAL,FMHP,C,1,1,1,Yes +NAME,FMRGIP,C,1,"First mortgage payment includes fire, hazard, flood insurance allocation flag",, +VAL,FMRGIP,C,1,b,b,N/A (GQ) +VAL,FMRGIP,C,1,0,0,No +VAL,FMRGIP,C,1,1,1,Yes +NAME,FMRGP,C,1,First mortgage payment (monthly amount) allocation flag,, +VAL,FMRGP,C,1,b,b,N/A (GQ) +VAL,FMRGP,C,1,0,0,No +VAL,FMRGP,C,1,1,1,Yes +NAME,FMRGTP,C,1,First mortgage payment includes real estate taxes allocation flag,, +VAL,FMRGTP,C,1,b,b,N/A (GQ) +VAL,FMRGTP,C,1,0,0,No +VAL,FMRGTP,C,1,1,1,Yes +NAME,FMRGXP,C,1,First mortgage status allocation flag,, +VAL,FMRGXP,C,1,b,b,N/A (GQ) +VAL,FMRGXP,C,1,0,0,No +VAL,FMRGXP,C,1,1,1,Yes +NAME,FMVP,C,1,When moved into this house or apartment allocation flag,, +VAL,FMVP,C,1,b,b,N/A (GQ) +VAL,FMVP,C,1,0,0,No +VAL,FMVP,C,1,1,1,Yes +NAME,FOTHSVCEXP,C,1,Other Internet service allocation flag,, +VAL,FOTHSVCEXP,C,1,b,b,N/A (GQ) +VAL,FOTHSVCEXP,C,1,0,0,No +VAL,FOTHSVCEXP,C,1,1,1,Yes +NAME,FPLMP,C,1,Complete plumbing facilities allocation flag,, +VAL,FPLMP,C,1,b,b,N/A (GQ) +VAL,FPLMP,C,1,0,0,No +VAL,FPLMP,C,1,1,1,Yes +NAME,FPLMPRP,C,1,Complete plumbing facilities allocation flag for Puerto Rico,, +VAL,FPLMPRP,C,1,b,b,N/A (GQ) +VAL,FPLMPRP,C,1,0,0,No +VAL,FPLMPRP,C,1,1,1,Yes +NAME,FREFRP,C,1,Refrigerator allocation flag,, +VAL,FREFRP,C,1,b,b,N/A (GQ) +VAL,FREFRP,C,1,0,0,No +VAL,FREFRP,C,1,1,1,Yes +NAME,FRMSP,C,1,Number of rooms allocation flag,, +VAL,FRMSP,C,1,b,b,N/A (GQ) +VAL,FRMSP,C,1,0,0,No +VAL,FRMSP,C,1,1,1,Yes +NAME,FRNTMP,C,1,Meals included in rent allocation flag,, +VAL,FRNTMP,C,1,b,b,N/A (GQ) +VAL,FRNTMP,C,1,0,0,No +VAL,FRNTMP,C,1,1,1,Yes +NAME,FRNTP,C,1,Monthly rent allocation flag,, +VAL,FRNTP,C,1,b,b,N/A (GQ) +VAL,FRNTP,C,1,0,0,No +VAL,FRNTP,C,1,1,1,Yes +NAME,FRWATP,C,1,Hot and cold running water allocation flag,, +VAL,FRWATP,C,1,b,b,N/A (GQ) +VAL,FRWATP,C,1,0,0,No +VAL,FRWATP,C,1,1,1,Yes +NAME,FRWATPRP,C,1,Running water allocation flag for Puerto Rico,, +VAL,FRWATPRP,C,1,b,b,N/A (GQ) +VAL,FRWATPRP,C,1,0,0,No +VAL,FRWATPRP,C,1,1,1,Yes +NAME,FSATELLITEP,C,1,Satellite Internet service allocation flag,, +VAL,FSATELLITEP,C,1,b,b,N/A (GQ) +VAL,FSATELLITEP,C,1,0,0,No +VAL,FSATELLITEP,C,1,1,1,Yes +NAME,FSINKP,C,1,Sink with a faucet allocation flag,, +VAL,FSINKP,C,1,b,b,N/A (GQ) +VAL,FSINKP,C,1,0,0,No +VAL,FSINKP,C,1,1,1,Yes +NAME,FSMARTPHONP,C,1,Smartphone allocation flag,, +VAL,FSMARTPHONP,C,1,b,b,N/A (GQ) +VAL,FSMARTPHONP,C,1,0,0,No +VAL,FSMARTPHONP,C,1,1,1,Yes +NAME,FSMOCP,C,1,Selected monthly owner cost allocation flag,, +VAL,FSMOCP,C,1,b,b,N/A (GQ) +VAL,FSMOCP,C,1,0,0,No +VAL,FSMOCP,C,1,1,1,Yes +NAME,FSMP,C,1,Total payment on second and junior mortgages and home equity loans (monthly amount) allocation flag,, +VAL,FSMP,C,1,b,b,N/A (GQ) +VAL,FSMP,C,1,0,0,No +VAL,FSMP,C,1,1,1,Yes +NAME,FSMXHP,C,1,Home equity loan status allocation flag,, +VAL,FSMXHP,C,1,b,b,N/A (GQ) +VAL,FSMXHP,C,1,0,0,No +VAL,FSMXHP,C,1,1,1,Yes +NAME,FSMXSP,C,1,Second mortgage status allocation flag,, +VAL,FSMXSP,C,1,b,b,N/A (GQ) +VAL,FSMXSP,C,1,0,0,No +VAL,FSMXSP,C,1,1,1,Yes +NAME,FSTOVP,C,1,Stove or range allocation flag,, +VAL,FSTOVP,C,1,b,b,N/A (GQ) +VAL,FSTOVP,C,1,0,0,No +VAL,FSTOVP,C,1,1,1,Yes +NAME,FTABLETP,C,1,Tablet or other portable wireless computer allocation flag,, +VAL,FTABLETP,C,1,b,b,N/A (GQ) +VAL,FTABLETP,C,1,0,0,No +VAL,FTABLETP,C,1,1,1,Yes +NAME,FTAXP,C,1,Property taxes (yearly amount) allocation flag,, +VAL,FTAXP,C,1,b,b,N/A (GQ) +VAL,FTAXP,C,1,0,0,No +VAL,FTAXP,C,1,1,1,Yes +NAME,FTELP,C,1,Telephone service allocation flag,, +VAL,FTELP,C,1,b,b,N/A (GQ) +VAL,FTELP,C,1,0,0,No +VAL,FTELP,C,1,1,1,Yes +NAME,FTENP,C,1,Tenure allocation flag,, +VAL,FTENP,C,1,b,b,N/A (GQ) +VAL,FTENP,C,1,0,0,No +VAL,FTENP,C,1,1,1,Yes +NAME,FVACDURP,C,1,Vacancy duration allocation flag,, +VAL,FVACDURP,C,1,b,b,N/A (GQ) +VAL,FVACDURP,C,1,0,0,No +VAL,FVACDURP,C,1,1,1,Yes +NAME,FVACOTHP,C,1,Other vacancy allocation flag,, +VAL,FVACOTHP,C,1,b,b,N/A (GQ) +VAL,FVACOTHP,C,1,0,0,No +VAL,FVACOTHP,C,1,1,1,Yes +NAME,FVACSP,C,1,Vacancy status allocation flag,, +VAL,FVACSP,C,1,b,b,N/A (GQ) +VAL,FVACSP,C,1,0,0,No +VAL,FVACSP,C,1,1,1,Yes +NAME,FVALP,C,1,Property value allocation flag,, +VAL,FVALP,C,1,b,b,N/A (GQ) +VAL,FVALP,C,1,0,0,No +VAL,FVALP,C,1,1,1,Yes +NAME,FVEHP,C,1,Vehicles available allocation flag,, +VAL,FVEHP,C,1,b,b,N/A (GQ) +VAL,FVEHP,C,1,0,0,No +VAL,FVEHP,C,1,1,1,Yes +NAME,FWATP,C,1,Water cost (yearly cost) allocation flag,, +VAL,FWATP,C,1,b,b,N/A (GQ) +VAL,FWATP,C,1,0,0,No +VAL,FWATP,C,1,1,1,Yes +NAME,FYRBLTP,C,1,When structure first built allocation flag,, +VAL,FYRBLTP,C,1,b,b,N/A (GQ) +VAL,FYRBLTP,C,1,0,0,No +VAL,FYRBLTP,C,1,1,1,Yes +NAME,WGTP1,N,5,Housing Weight replicate 1,, +VAL,WGTP1,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP2,N,5,Housing Weight replicate 2,, +VAL,WGTP2,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP3,N,5,Housing Weight replicate 3,, +VAL,WGTP3,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP4,N,5,Housing Weight replicate 4,, +VAL,WGTP4,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP5,N,5,Housing Weight replicate 5,, +VAL,WGTP5,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP6,N,5,Housing Weight replicate 6,, +VAL,WGTP6,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP7,N,5,Housing Weight replicate 7,, +VAL,WGTP7,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP8,N,5,Housing Weight replicate 8,, +VAL,WGTP8,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP9,N,5,Housing Weight replicate 9,, +VAL,WGTP9,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP10,N,5,Housing Weight replicate 10,, +VAL,WGTP10,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP11,N,5,Housing Weight replicate 11,, +VAL,WGTP11,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP12,N,5,Housing Weight replicate 12,, +VAL,WGTP12,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP13,N,5,Housing Weight replicate 13,, +VAL,WGTP13,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP14,N,5,Housing Weight replicate 14,, +VAL,WGTP14,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP15,N,5,Housing Weight replicate 15,, +VAL,WGTP15,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP16,N,5,Housing Weight replicate 16,, +VAL,WGTP16,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP17,N,5,Housing Weight replicate 17,, +VAL,WGTP17,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP18,N,5,Housing Weight replicate 18,, +VAL,WGTP18,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP19,N,5,Housing Weight replicate 19,, +VAL,WGTP19,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP20,N,5,Housing Weight replicate 20,, +VAL,WGTP20,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP21,N,5,Housing Weight replicate 21,, +VAL,WGTP21,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP22,N,5,Housing Weight replicate 22,, +VAL,WGTP22,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP23,N,5,Housing Weight replicate 23,, +VAL,WGTP23,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP24,N,5,Housing Weight replicate 24,, +VAL,WGTP24,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP25,N,5,Housing Weight replicate 25,, +VAL,WGTP25,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP26,N,5,Housing Weight replicate 26,, +VAL,WGTP26,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP27,N,5,Housing Weight replicate 27,, +VAL,WGTP27,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP28,N,5,Housing Weight replicate 28,, +VAL,WGTP28,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP29,N,5,Housing Weight replicate 29,, +VAL,WGTP29,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP30,N,5,Housing Weight replicate 30,, +VAL,WGTP30,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP31,N,5,Housing Weight replicate 31,, +VAL,WGTP31,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP32,N,5,Housing Weight replicate 32,, +VAL,WGTP32,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP33,N,5,Housing Weight replicate 33,, +VAL,WGTP33,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP34,N,5,Housing Weight replicate 34,, +VAL,WGTP34,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP35,N,5,Housing Weight replicate 35,, +VAL,WGTP35,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP36,N,5,Housing Weight replicate 36,, +VAL,WGTP36,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP37,N,5,Housing Weight replicate 37,, +VAL,WGTP37,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP38,N,5,Housing Weight replicate 38,, +VAL,WGTP38,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP39,N,5,Housing Weight replicate 39,, +VAL,WGTP39,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP40,N,5,Housing Weight replicate 40,, +VAL,WGTP40,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP41,N,5,Housing Weight replicate 41,, +VAL,WGTP41,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP42,N,5,Housing Weight replicate 42,, +VAL,WGTP42,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP43,N,5,Housing Weight replicate 43,, +VAL,WGTP43,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP44,N,5,Housing Weight replicate 44,, +VAL,WGTP44,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP45,N,5,Housing Weight replicate 45,, +VAL,WGTP45,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP46,N,5,Housing Weight replicate 46,, +VAL,WGTP46,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP47,N,5,Housing Weight replicate 47,, +VAL,WGTP47,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP48,N,5,Housing Weight replicate 48,, +VAL,WGTP48,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP49,N,5,Housing Weight replicate 49,, +VAL,WGTP49,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP50,N,5,Housing Weight replicate 50,, +VAL,WGTP50,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP51,N,5,Housing Weight replicate 51,, +VAL,WGTP51,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP52,N,5,Housing Weight replicate 52,, +VAL,WGTP52,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP53,N,5,Housing Weight replicate 53,, +VAL,WGTP53,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP54,N,5,Housing Weight replicate 54,, +VAL,WGTP54,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP55,N,5,Housing Weight replicate 55,, +VAL,WGTP55,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP56,N,5,Housing Weight replicate 56,, +VAL,WGTP56,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP57,N,5,Housing Weight replicate 57,, +VAL,WGTP57,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP58,N,5,Housing Weight replicate 58,, +VAL,WGTP58,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP59,N,5,Housing Weight replicate 59,, +VAL,WGTP59,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP60,N,5,Housing Weight replicate 60,, +VAL,WGTP60,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP61,N,5,Housing Weight replicate 61,, +VAL,WGTP61,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP62,N,5,Housing Weight replicate 62,, +VAL,WGTP62,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP63,N,5,Housing Weight replicate 63,, +VAL,WGTP63,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP64,N,5,Housing Weight replicate 64,, +VAL,WGTP64,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP65,N,5,Housing Weight replicate 65,, +VAL,WGTP65,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP66,N,5,Housing Weight replicate 66,, +VAL,WGTP66,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP67,N,5,Housing Weight replicate 67,, +VAL,WGTP67,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP68,N,5,Housing Weight replicate 68,, +VAL,WGTP68,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP69,N,5,Housing Weight replicate 69,, +VAL,WGTP69,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP70,N,5,Housing Weight replicate 70,, +VAL,WGTP70,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP71,N,5,Housing Weight replicate 71,, +VAL,WGTP71,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP72,N,5,Housing Weight replicate 72,, +VAL,WGTP72,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP73,N,5,Housing Weight replicate 73,, +VAL,WGTP73,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP74,N,5,Housing Weight replicate 74,, +VAL,WGTP74,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP75,N,5,Housing Weight replicate 75,, +VAL,WGTP75,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP76,N,5,Housing Weight replicate 76,, +VAL,WGTP76,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP77,N,5,Housing Weight replicate 77,, +VAL,WGTP77,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP78,N,5,Housing Weight replicate 78,, +VAL,WGTP78,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP79,N,5,Housing Weight replicate 79,, +VAL,WGTP79,N,5,-9999,9999,Integer weight of housing unit +NAME,WGTP80,N,5,Housing Weight replicate 80,, +VAL,WGTP80,N,5,-9999,9999,Integer weight of housing unit +NAME,RT,C,1,Record Type,, +VAL,RT,C,1,H,H,Housing Record or Group Quarters Unit +VAL,RT,C,1,P,P,Person Record +NAME,SERIALNO,C,13,Housing unit/GQ person serial number,, +VAL,SERIALNO,C,13,2023GQ0000001,2023GQ9999999,GQ Unique identifier +VAL,SERIALNO,C,13,2023HU0000001,2023HU9999999,HU Unique identifier +NAME,DIVISION,C,1,Division code based on 2020 Census definitions,, +VAL,DIVISION,C,1,0,0,Puerto Rico +VAL,DIVISION,C,1,1,1,New England (Northeast region) +VAL,DIVISION,C,1,2,2,Middle Atlantic (Northeast region) +VAL,DIVISION,C,1,3,3,East North Central (Midwest region) +VAL,DIVISION,C,1,4,4,West North Central (Midwest region) +VAL,DIVISION,C,1,5,5,South Atlantic (South region) +VAL,DIVISION,C,1,6,6,East South Central (South region) +VAL,DIVISION,C,1,7,7,West South Central (South Region) +VAL,DIVISION,C,1,8,8,Mountain (West region) +VAL,DIVISION,C,1,9,9,Pacific (West region) +NAME,SPORDER,N,2,Person number,, +VAL,SPORDER,N,2,01,20,Person number +NAME,PUMA,C,5,"Public use microdata area code (PUMA) based on 2020 Census definition (areas with population of 100,000 or more, use with STATE for unique code)",, +VAL,PUMA,C,5,00100,81003,Public use microdata area codes +NAME,REGION,C,1,Region code based on 2020 Census definitions,, +VAL,REGION,C,1,1,1,Northeast +VAL,REGION,C,1,2,2,Midwest +VAL,REGION,C,1,3,3,South +VAL,REGION,C,1,4,4,West +VAL,REGION,C,1,9,9,Puerto Rico +NAME,STATE,C,2,State Code based on 2020 Census definitions,, +VAL,STATE,C,2,01,01,Alabama/AL +VAL,STATE,C,2,02,02,Alaska/AK +VAL,STATE,C,2,04,04,Arizona/AZ +VAL,STATE,C,2,05,05,Arkansas/AR +VAL,STATE,C,2,06,06,California/CA +VAL,STATE,C,2,08,08,Colorado/CO +VAL,STATE,C,2,09,09,Connecticut/CT +VAL,STATE,C,2,10,10,Delaware/DE +VAL,STATE,C,2,11,11,District of Columbia/DC +VAL,STATE,C,2,12,12,Florida/FL +VAL,STATE,C,2,13,13,Georgia/GA +VAL,STATE,C,2,15,15,Hawaii/HI +VAL,STATE,C,2,16,16,Idaho/ID +VAL,STATE,C,2,17,17,Illinois/IL +VAL,STATE,C,2,18,18,Indiana/IN +VAL,STATE,C,2,19,19,Iowa/IA +VAL,STATE,C,2,20,20,Kansas/KS +VAL,STATE,C,2,21,21,Kentucky/KY +VAL,STATE,C,2,22,22,Louisiana/LA +VAL,STATE,C,2,23,23,Maine/ME +VAL,STATE,C,2,24,24,Maryland/MD +VAL,STATE,C,2,25,25,Massachusetts/MA +VAL,STATE,C,2,26,26,Michigan/MI +VAL,STATE,C,2,27,27,Minnesota/MN +VAL,STATE,C,2,28,28,Mississippi/MS +VAL,STATE,C,2,29,29,Missouri/MO +VAL,STATE,C,2,30,30,Montana/MT +VAL,STATE,C,2,31,31,Nebraska/NE +VAL,STATE,C,2,32,32,Nevada/NV +VAL,STATE,C,2,33,33,New Hampshire/NH +VAL,STATE,C,2,34,34,New Jersey/NJ +VAL,STATE,C,2,35,35,New Mexico/NM +VAL,STATE,C,2,36,36,New York/NY +VAL,STATE,C,2,37,37,North Carolina/NC +VAL,STATE,C,2,38,38,North Dakota/ND +VAL,STATE,C,2,39,39,Ohio/OH +VAL,STATE,C,2,40,40,Oklahoma/OK +VAL,STATE,C,2,41,41,Oregon/OR +VAL,STATE,C,2,42,42,Pennsylvania/PA +VAL,STATE,C,2,44,44,Rhode Island/RI +VAL,STATE,C,2,45,45,South Carolina/SC +VAL,STATE,C,2,46,46,South Dakota/SD +VAL,STATE,C,2,47,47,Tennessee/TN +VAL,STATE,C,2,48,48,Texas/TX +VAL,STATE,C,2,49,49,Utah/UT +VAL,STATE,C,2,50,50,Vermont/VT +VAL,STATE,C,2,51,51,Virginia/VA +VAL,STATE,C,2,53,53,Washington/WA +VAL,STATE,C,2,54,54,West Virginia/WV +VAL,STATE,C,2,55,55,Wisconsin/WI +VAL,STATE,C,2,56,56,Wyoming/WY +VAL,STATE,C,2,72,72,Puerto Rico/PR +NAME,ADJINC,C,7,Adjustment factor for income and earnings dollar amounts (6 implied decimal places),, +VAL,ADJINC,C,7,1019518,1019518,2023 factor (1.019518) +NAME,PWGTP,N,5,Person's weight,, +VAL,PWGTP,N,5,1,9999,Integer weight of person +NAME,AGEP,N,2,Age,, +VAL,AGEP,N,2,0,0,Under 1 year +VAL,AGEP,N,2,1,99,1 to 99 years (Top-coded) +NAME,CIT,C,1,Citizenship status,, +VAL,CIT,C,1,1,1,Born in the United States +VAL,CIT,C,1,2,2,"Born in Puerto Rico, Guam, the U.S. Virgin Islands, or Northern Marianas" +VAL,CIT,C,1,3,3,Born abroad of U.S. citizen parent or parents +VAL,CIT,C,1,4,4,U.S. citizen by naturalization +VAL,CIT,C,1,5,5,Not a U.S. citizen +NAME,CITWP,N,4,Year of naturalization write-in,, +VAL,CITWP,N,4,bbbb,bbbb,N/A (Not eligible - not naturalized) +VAL,CITWP,N,4,1947,1947,1947 or earlier (Bottom-coded) +VAL,CITWP,N,4,1948,1948,1948 - 1949 +VAL,CITWP,N,4,1950,1950,1950 - 1951 +VAL,CITWP,N,4,1952,1952,1952 +VAL,CITWP,N,4,1953,1953,1953 +VAL,CITWP,N,4,1954,1954,1954 +VAL,CITWP,N,4,1955,1955,1955 +VAL,CITWP,N,4,1956,1956,1956 +VAL,CITWP,N,4,1957,1957,1957 +VAL,CITWP,N,4,1958,1958,1958 +VAL,CITWP,N,4,1959,1959,1959 +VAL,CITWP,N,4,1960,1960,1960 +VAL,CITWP,N,4,1961,1961,1961 +VAL,CITWP,N,4,1962,1962,1962 +VAL,CITWP,N,4,1963,1963,1963 +VAL,CITWP,N,4,1964,1964,1964 +VAL,CITWP,N,4,1965,1965,1965 +VAL,CITWP,N,4,1966,1966,1966 +VAL,CITWP,N,4,1967,1967,1967 +VAL,CITWP,N,4,1968,1968,1968 +VAL,CITWP,N,4,1969,1969,1969 +VAL,CITWP,N,4,1970,1970,1970 +VAL,CITWP,N,4,1971,1971,1971 +VAL,CITWP,N,4,1972,1972,1972 +VAL,CITWP,N,4,1973,1973,1973 +VAL,CITWP,N,4,1974,1974,1974 +VAL,CITWP,N,4,1975,1975,1975 +VAL,CITWP,N,4,1976,1976,1976 +VAL,CITWP,N,4,1977,1977,1977 +VAL,CITWP,N,4,1978,1978,1978 +VAL,CITWP,N,4,1979,1979,1979 +VAL,CITWP,N,4,1980,1980,1980 +VAL,CITWP,N,4,1981,1981,1981 +VAL,CITWP,N,4,1982,1982,1982 +VAL,CITWP,N,4,1983,1983,1983 +VAL,CITWP,N,4,1984,1984,1984 +VAL,CITWP,N,4,1985,1985,1985 +VAL,CITWP,N,4,1986,1986,1986 +VAL,CITWP,N,4,1987,1987,1987 +VAL,CITWP,N,4,1988,1988,1988 +VAL,CITWP,N,4,1989,1989,1989 +VAL,CITWP,N,4,1990,1990,1990 +VAL,CITWP,N,4,1991,1991,1991 +VAL,CITWP,N,4,1992,1992,1992 +VAL,CITWP,N,4,1993,1993,1993 +VAL,CITWP,N,4,1994,1994,1994 +VAL,CITWP,N,4,1995,1995,1995 +VAL,CITWP,N,4,1996,1996,1996 +VAL,CITWP,N,4,1997,1997,1997 +VAL,CITWP,N,4,1998,1998,1998 +VAL,CITWP,N,4,1999,1999,1999 +VAL,CITWP,N,4,2000,2000,2000 +VAL,CITWP,N,4,2001,2001,2001 +VAL,CITWP,N,4,2002,2002,2002 +VAL,CITWP,N,4,2003,2003,2003 +VAL,CITWP,N,4,2004,2004,2004 +VAL,CITWP,N,4,2005,2005,2005 +VAL,CITWP,N,4,2006,2006,2006 +VAL,CITWP,N,4,2007,2007,2007 +VAL,CITWP,N,4,2008,2008,2008 +VAL,CITWP,N,4,2009,2009,2009 +VAL,CITWP,N,4,2010,2010,2010 +VAL,CITWP,N,4,2011,2011,2011 +VAL,CITWP,N,4,2012,2012,2012 +VAL,CITWP,N,4,2013,2013,2013 +VAL,CITWP,N,4,2014,2014,2014 +VAL,CITWP,N,4,2015,2015,2015 +VAL,CITWP,N,4,2016,2016,2016 +VAL,CITWP,N,4,2017,2017,2017 +VAL,CITWP,N,4,2018,2018,2018 +VAL,CITWP,N,4,2019,2019,2019 +VAL,CITWP,N,4,2020,2020,2020 +VAL,CITWP,N,4,2021,2021,2021 +VAL,CITWP,N,4,2022,2022,2022 +VAL,CITWP,N,4,2023,2023,2023 +NAME,COW,C,1,Class of worker,, +VAL,COW,C,1,b,b,N/A (less than 16 years old/NILF who last worked more than 5 years ago or never worked) +VAL,COW,C,1,1,1,"Employee of a private for-profit company or business, or of an individual, for wages, salary, or commissions" +VAL,COW,C,1,2,2,"Employee of a private not-for-profit, tax-exempt, or charitable organization" +VAL,COW,C,1,3,3,"Local government employee (city, county, etc.)" +VAL,COW,C,1,4,4,State government employee +VAL,COW,C,1,5,5,Federal government employee +VAL,COW,C,1,6,6,"Self-employed in own not incorporated business, professional practice, or farm" +VAL,COW,C,1,7,7,"Self-employed in own incorporated business, professional practice or farm" +VAL,COW,C,1,8,8,Working without pay in family business or farm +VAL,COW,C,1,9,9,Unemployed and last worked 5 years ago or earlier or never worked +NAME,DDRS,C,1,Self-care difficulty,, +VAL,DDRS,C,1,b,b,N/A (Less than 5 years old) +VAL,DDRS,C,1,1,1,Yes +VAL,DDRS,C,1,2,2,No +NAME,DEAR,C,1,Hearing difficulty,, +VAL,DEAR,C,1,1,1,Yes +VAL,DEAR,C,1,2,2,No +NAME,DEYE,C,1,Vision difficulty,, +VAL,DEYE,C,1,1,1,Yes +VAL,DEYE,C,1,2,2,No +NAME,DOUT,C,1,Independent living difficulty,, +VAL,DOUT,C,1,b,b,N/A (Less than 15 years old) +VAL,DOUT,C,1,1,1,Yes +VAL,DOUT,C,1,2,2,No +NAME,DPHY,C,1,Ambulatory difficulty,, +VAL,DPHY,C,1,b,b,N/A (Less than 5 years old) +VAL,DPHY,C,1,1,1,Yes +VAL,DPHY,C,1,2,2,No +NAME,DRAT,C,1,Veteran service-connected disability rating (percentage),, +VAL,DRAT,C,1,b,b,N/A (No service-connected disability/never served in military) +VAL,DRAT,C,1,1,1,0 percent +VAL,DRAT,C,1,2,2,10 or 20 percent +VAL,DRAT,C,1,3,3,30 or 40 percent +VAL,DRAT,C,1,4,4,50 or 60 percent +VAL,DRAT,C,1,5,5,"70, 80, 90, or 100 percent" +VAL,DRAT,C,1,6,6,Not reported +NAME,DRATX,C,1,Veteran service-connected disability rating (checkbox),, +VAL,DRATX,C,1,b,b,N/A (Less than 17 years old/never served in military) +VAL,DRATX,C,1,1,1,Yes +VAL,DRATX,C,1,2,2,No +NAME,DREM,C,1,Cognitive difficulty,, +VAL,DREM,C,1,b,b,N/A (Less than 5 years old) +VAL,DREM,C,1,1,1,Yes +VAL,DREM,C,1,2,2,No +NAME,ENG,C,1,Ability to speak English,, +VAL,ENG,C,1,b,b,N/A (less than 5 years old/speaks only English) +VAL,ENG,C,1,1,1,Very well +VAL,ENG,C,1,2,2,Well +VAL,ENG,C,1,3,3,Not well +VAL,ENG,C,1,4,4,Not at all +NAME,FER,C,1,Gave birth to child within the past 12 months,, +VAL,FER,C,1,b,b,N/A (less than 15 years/greater than 50 years/ male) +VAL,FER,C,1,1,1,Yes +VAL,FER,C,1,2,2,No +NAME,GCL,C,1,Grandparents living with grandchildren,, +VAL,GCL,C,1,b,b,N/A (less than 30 years/institutional GQ) +VAL,GCL,C,1,1,1,Yes +VAL,GCL,C,1,2,2,No +NAME,GCM,C,1,Length of time responsible for grandchildren,, +VAL,GCM,C,1,b,b,N/A (less than 30 years/grandparent not responsible for grandchild/institutional GQ) +VAL,GCM,C,1,1,1,Less than 6 months +VAL,GCM,C,1,2,2,6 to 11 months +VAL,GCM,C,1,3,3,1 or 2 years +VAL,GCM,C,1,4,4,3 or 4 years +VAL,GCM,C,1,5,5,5 or more years +NAME,GCR,C,1,Grandparents responsible for grandchildren,, +VAL,GCR,C,1,b,b,N/A (less than 30 years/institutional GQ/grandparent not living with grandchild) +VAL,GCR,C,1,1,1,Yes +VAL,GCR,C,1,2,2,No +NAME,HIMRKS,C,1,Subsidized Marketplace Coverage,, +VAL,HIMRKS,C,1,0,0,Categorically ineligible for subsidy +VAL,HIMRKS,C,1,1,1,"Direct purchase coverage, with premium subsidy" +VAL,HIMRKS,C,1,2,2,"Direct purchase coverage, without a premium subsidy" +NAME,HINS1,C,1,Insurance through a current or former employer or union,, +VAL,HINS1,C,1,1,1,Yes +VAL,HINS1,C,1,2,2,No +NAME,HINS2,C,1,Insurance purchased directly from an insurance company,, +VAL,HINS2,C,1,1,1,Yes +VAL,HINS2,C,1,2,2,No +NAME,HINS3,C,1,"Medicare, for people 65 and older, or people with certain disabilities",, +VAL,HINS3,C,1,1,1,Yes +VAL,HINS3,C,1,2,2,No +NAME,HINS4,C,1,"Medicaid, Medical Assistance, or any kind of government-assistance plan for those with low incomes or a disability",, +VAL,HINS4,C,1,1,1,Yes +VAL,HINS4,C,1,2,2,No +NAME,HINS5,C,1,TRICARE or other military health care,, +VAL,HINS5,C,1,1,1,Yes +VAL,HINS5,C,1,2,2,No +NAME,HINS6,C,1,VA (enrolled for VA health care),, +VAL,HINS6,C,1,1,1,Yes +VAL,HINS6,C,1,2,2,No +NAME,HINS7,C,1,Indian Health Service,, +VAL,HINS7,C,1,1,1,Yes +VAL,HINS7,C,1,2,2,No +NAME,INTP,N,6,"Interest, dividends, and net rental income past 12 months (use ADJINC to adjust to constant dollars)",, +VAL,INTP,N,6,bbbbbb,bbbbbb,N/A (less than 15 years old) +VAL,INTP,N,6,0,0,None +VAL,INTP,N,6,-10000,-4,Loss of $4 to $10000 (Rounded and bottom-coded) +VAL,INTP,N,6,4,999999,$4 to $999999 (Rounded and top-coded) +NAME,JWMNP,N,3,Travel time to work,, +VAL,JWMNP,N,3,bbb,bbb,N/A (not a worker or worker who worked at home) +VAL,JWMNP,N,3,1,200,1 to 200 minutes to get to work (Top-coded) +VAL,JWMNP,N,3,888,888,Suppressed for data year 2023 for select PUMAs +NAME,JWRIP,N,2,Vehicle occupancy,, +VAL,JWRIP,N,2,bb,bb,"N/A (not a worker or worker whose means of transportation to work was not car, truck, or van)" +VAL,JWRIP,N,2,1,1,Drove alone +VAL,JWRIP,N,2,2,2,In 2-person carpool +VAL,JWRIP,N,2,3,3,In 3-person carpool +VAL,JWRIP,N,2,4,4,In 4-person carpool +VAL,JWRIP,N,2,5,5,In 5-person carpool +VAL,JWRIP,N,2,6,6,In 6-person carpool +VAL,JWRIP,N,2,7,7,In 7-person carpool +VAL,JWRIP,N,2,8,8,In 8-person carpool +VAL,JWRIP,N,2,9,9,In 9-person carpool +VAL,JWRIP,N,2,10,10,In 10-person or more carpool (Top-coded) +NAME,JWTRNS,C,2,Means of transportation to work,, +VAL,JWTRNS,C,2,bb,bb,"N/A (not a worker-not in the labor force, including persons under 16 years; unemployed; employed, with a job but not at work; Armed Forces, with a job but not at work)" +VAL,JWTRNS,C,2,01,01,"Car, truck, or van" +VAL,JWTRNS,C,2,02,02,Bus +VAL,JWTRNS,C,2,03,03,Subway or elevated rail +VAL,JWTRNS,C,2,04,04,Long-distance train or commuter rail +VAL,JWTRNS,C,2,05,05,"Light rail, streetcar, or trolley" +VAL,JWTRNS,C,2,06,06,Ferryboat +VAL,JWTRNS,C,2,07,07,Taxicab +VAL,JWTRNS,C,2,08,08,Motorcycle +VAL,JWTRNS,C,2,09,09,Bicycle +VAL,JWTRNS,C,2,10,10,Walked +VAL,JWTRNS,C,2,11,11,Worked from home +VAL,JWTRNS,C,2,12,12,Other method +NAME,LANX,C,1,Language other than English spoken at home,, +VAL,LANX,C,1,b,b,N/A (less than 5 years old) +VAL,LANX,C,1,1,1,"Yes, speaks another language" +VAL,LANX,C,1,2,2,"No, speaks only English" +NAME,MAR,C,1,Marital status,, +VAL,MAR,C,1,1,1,Married +VAL,MAR,C,1,2,2,Widowed +VAL,MAR,C,1,3,3,Divorced +VAL,MAR,C,1,4,4,Separated +VAL,MAR,C,1,5,5,Never married or under 15 years old +NAME,MARHD,C,1,Divorced in the past 12 months,, +VAL,MARHD,C,1,b,b,N/A (age less than 15 years; never married) +VAL,MARHD,C,1,1,1,Yes +VAL,MARHD,C,1,2,2,No +NAME,MARHM,C,1,Married in the past 12 months,, +VAL,MARHM,C,1,b,b,N/A (age less than 15 years; never married) +VAL,MARHM,C,1,1,1,Yes +VAL,MARHM,C,1,2,2,No +NAME,MARHT,C,1,Number of times married,, +VAL,MARHT,C,1,b,b,N/A (age less than 15 years; never married) +VAL,MARHT,C,1,1,1,One time +VAL,MARHT,C,1,2,2,Two times +VAL,MARHT,C,1,3,3,Three or more times +NAME,MARHW,C,1,Widowed in the past 12 months,, +VAL,MARHW,C,1,b,b,N/A (age less than 15 years; never married) +VAL,MARHW,C,1,1,1,Yes +VAL,MARHW,C,1,2,2,No +NAME,MARHYP,N,4,Year last married,, +VAL,MARHYP,N,4,bbbb,bbbb,N/A (age less than 15 years; never married) +VAL,MARHYP,N,4,1944,1944,1944 or earlier (Bottom-coded) +VAL,MARHYP,N,4,1945,1945,1945 +VAL,MARHYP,N,4,1946,1946,1946 +VAL,MARHYP,N,4,1947,1947,1947 +VAL,MARHYP,N,4,1948,1948,1948 +VAL,MARHYP,N,4,1949,1949,1949 +VAL,MARHYP,N,4,1950,1950,1950 +VAL,MARHYP,N,4,1951,1951,1951 +VAL,MARHYP,N,4,1952,1952,1952 +VAL,MARHYP,N,4,1953,1953,1953 +VAL,MARHYP,N,4,1954,1954,1954 +VAL,MARHYP,N,4,1955,1955,1955 +VAL,MARHYP,N,4,1956,1956,1956 +VAL,MARHYP,N,4,1957,1957,1957 +VAL,MARHYP,N,4,1958,1958,1958 +VAL,MARHYP,N,4,1959,1959,1959 +VAL,MARHYP,N,4,1960,1960,1960 +VAL,MARHYP,N,4,1961,1961,1961 +VAL,MARHYP,N,4,1962,1962,1962 +VAL,MARHYP,N,4,1963,1963,1963 +VAL,MARHYP,N,4,1964,1964,1964 +VAL,MARHYP,N,4,1965,1965,1965 +VAL,MARHYP,N,4,1966,1966,1966 +VAL,MARHYP,N,4,1967,1967,1967 +VAL,MARHYP,N,4,1968,1968,1968 +VAL,MARHYP,N,4,1969,1969,1969 +VAL,MARHYP,N,4,1970,1970,1970 +VAL,MARHYP,N,4,1971,1971,1971 +VAL,MARHYP,N,4,1972,1972,1972 +VAL,MARHYP,N,4,1973,1973,1973 +VAL,MARHYP,N,4,1974,1974,1974 +VAL,MARHYP,N,4,1975,1975,1975 +VAL,MARHYP,N,4,1976,1976,1976 +VAL,MARHYP,N,4,1977,1977,1977 +VAL,MARHYP,N,4,1978,1978,1978 +VAL,MARHYP,N,4,1979,1979,1979 +VAL,MARHYP,N,4,1980,1980,1980 +VAL,MARHYP,N,4,1981,1981,1981 +VAL,MARHYP,N,4,1982,1982,1982 +VAL,MARHYP,N,4,1983,1983,1983 +VAL,MARHYP,N,4,1984,1984,1984 +VAL,MARHYP,N,4,1985,1985,1985 +VAL,MARHYP,N,4,1986,1986,1986 +VAL,MARHYP,N,4,1987,1987,1987 +VAL,MARHYP,N,4,1988,1988,1988 +VAL,MARHYP,N,4,1989,1989,1989 +VAL,MARHYP,N,4,1990,1990,1990 +VAL,MARHYP,N,4,1991,1991,1991 +VAL,MARHYP,N,4,1992,1992,1992 +VAL,MARHYP,N,4,1993,1993,1993 +VAL,MARHYP,N,4,1994,1994,1994 +VAL,MARHYP,N,4,1995,1995,1995 +VAL,MARHYP,N,4,1996,1996,1996 +VAL,MARHYP,N,4,1997,1997,1997 +VAL,MARHYP,N,4,1998,1998,1998 +VAL,MARHYP,N,4,1999,1999,1999 +VAL,MARHYP,N,4,2000,2000,2000 +VAL,MARHYP,N,4,2001,2001,2001 +VAL,MARHYP,N,4,2002,2002,2002 +VAL,MARHYP,N,4,2003,2003,2003 +VAL,MARHYP,N,4,2004,2004,2004 +VAL,MARHYP,N,4,2005,2005,2005 +VAL,MARHYP,N,4,2006,2006,2006 +VAL,MARHYP,N,4,2007,2007,2007 +VAL,MARHYP,N,4,2008,2008,2008 +VAL,MARHYP,N,4,2009,2009,2009 +VAL,MARHYP,N,4,2010,2010,2010 +VAL,MARHYP,N,4,2011,2011,2011 +VAL,MARHYP,N,4,2012,2012,2012 +VAL,MARHYP,N,4,2013,2013,2013 +VAL,MARHYP,N,4,2014,2014,2014 +VAL,MARHYP,N,4,2015,2015,2015 +VAL,MARHYP,N,4,2016,2016,2016 +VAL,MARHYP,N,4,2017,2017,2017 +VAL,MARHYP,N,4,2018,2018,2018 +VAL,MARHYP,N,4,2019,2019,2019 +VAL,MARHYP,N,4,2020,2020,2020 +VAL,MARHYP,N,4,2021,2021,2021 +VAL,MARHYP,N,4,2022,2022,2022 +VAL,MARHYP,N,4,2023,2023,2023 +NAME,MIG,C,1,Mobility status (lived here 1 year ago),, +VAL,MIG,C,1,b,b,N/A (less than 1 year old) +VAL,MIG,C,1,1,1,"Yes, same house (nonmovers)" +VAL,MIG,C,1,2,2,"No, outside US and Puerto Rico" +VAL,MIG,C,1,3,3,"No, different house in US or Puerto Rico" +NAME,MIL,C,1,Military service,, +VAL,MIL,C,1,b,b,N/A (less than 17 years old) +VAL,MIL,C,1,1,1,Now on active duty +VAL,MIL,C,1,2,2,"On active duty in the past, but not now" +VAL,MIL,C,1,3,3,Only on active duty for training in Reserves/National Guard +VAL,MIL,C,1,4,4,Never served in the military +NAME,MLPA,C,1,Served September 2001 or later,, +VAL,MLPA,C,1,b,b,N/A (less than 17 years old/no active duty) +VAL,MLPA,C,1,0,0,Did not serve this period +VAL,MLPA,C,1,1,1,Served this period +NAME,MLPB,C,1,Served August 1990 - August 2001 (including Persian Gulf War),, +VAL,MLPB,C,1,b,b,N/A (less than 17 years old/no active duty) +VAL,MLPB,C,1,0,0,Did not serve this period +VAL,MLPB,C,1,1,1,Served this period +NAME,MLPCD,C,1,Served May 1975 - July 1990,, +VAL,MLPCD,C,1,b,b,N/A (less than 17 years old/no active duty) +VAL,MLPCD,C,1,0,0,Did not serve this period +VAL,MLPCD,C,1,1,1,Served this period +NAME,MLPE,C,1,Served Vietnam era (August 1964 - April 1975),, +VAL,MLPE,C,1,b,b,N/A (less than 17 years old/no active duty) +VAL,MLPE,C,1,0,0,Did not serve this period +VAL,MLPE,C,1,1,1,Served this period +NAME,MLPFG,C,1,Served February 1955 - July 1964,, +VAL,MLPFG,C,1,b,b,N/A (less than 17 years old/no active duty) +VAL,MLPFG,C,1,0,0,Did not serve this period +VAL,MLPFG,C,1,1,1,Served this period +NAME,MLPH,C,1,Served Korean War (July 1950 - January 1955),, +VAL,MLPH,C,1,b,b,N/A (less than 17 years old/no active duty) +VAL,MLPH,C,1,0,0,Did not serve this period +VAL,MLPH,C,1,1,1,Served this period +NAME,MLPIK,C,1,Peacetime service before July 1950,, +VAL,MLPIK,C,1,b,b,N/A (less than 17 years old/no active duty) +VAL,MLPIK,C,1,0,0,Did not serve this period +VAL,MLPIK,C,1,1,1,Served this period +NAME,MLPJ,C,1,Served World War II (December 1941 - December 1946),, +VAL,MLPJ,C,1,b,b,N/A (less than 17 years old/no active duty) +VAL,MLPJ,C,1,0,0,Did not serve this period +VAL,MLPJ,C,1,1,1,Served this period +NAME,NWAB,C,1,Temporary absence from work (UNEDITED - See 'Employment Status Recode' (ESR)),, +VAL,NWAB,C,1,b,b,N/A (less than 16 years old/at work/on layoff) +VAL,NWAB,C,1,1,1,Yes +VAL,NWAB,C,1,2,2,No +VAL,NWAB,C,1,3,3,Did not report +NAME,NWAV,C,1,Available for work (UNEDITED - See 'Employment Status Recode' (ESR)),, +VAL,NWAV,C,1,b,b,N/A (less than 16 years/at work/not looking) +VAL,NWAV,C,1,1,1,Yes +VAL,NWAV,C,1,2,2,"No, temporarily ill" +VAL,NWAV,C,1,3,3,"No, other reasons" +VAL,NWAV,C,1,4,4,"No, unspecified" +VAL,NWAV,C,1,5,5,Did not report +NAME,NWLA,C,1,On layoff from work (UNEDITED - See 'Employment Status Recode' (ESR)),, +VAL,NWLA,C,1,b,b,N/A (less than 16 years old/at work) +VAL,NWLA,C,1,1,1,Yes +VAL,NWLA,C,1,2,2,No +VAL,NWLA,C,1,3,3,Did not report +NAME,NWLK,C,1,Looking for work (UNEDITED - See 'Employment Status Recode' (ESR)),, +VAL,NWLK,C,1,b,b,N/A (less than 16 years old/at work/temporarily absent/informed of recall) +VAL,NWLK,C,1,1,1,Yes +VAL,NWLK,C,1,2,2,No +VAL,NWLK,C,1,3,3,Did not report +NAME,NWRE,C,1,Informed of recall (UNEDITED - See 'Employment Status Recode' (ESR)),, +VAL,NWRE,C,1,b,b,N/A (less than 16 years old/at work/not on layoff) +VAL,NWRE,C,1,1,1,Yes +VAL,NWRE,C,1,2,2,No +VAL,NWRE,C,1,3,3,Did not report +NAME,OIP,N,5,All other income past 12 months (use ADJINC to adjust to constant dollars),, +VAL,OIP,N,5,bbbbb,bbbbb,N/A (less than 15 years old) +VAL,OIP,N,5,0,0,None +VAL,OIP,N,5,4,99999,$4 to $99999 (Rounded and top-coded) +NAME,PAP,N,5,Public assistance income past 12 months (use ADJINC to adjust to constant dollars),, +VAL,PAP,N,5,bbbbb,bbbbb,N/A (less than 15 years old) +VAL,PAP,N,5,0,0,None +VAL,PAP,N,5,4,30000,$4 to $30000 (Rounded and top-coded) +NAME,RELSHIPP,C,2,Relationship,, +VAL,RELSHIPP,C,2,20,20,Reference person +VAL,RELSHIPP,C,2,21,21,Opposite-sex husband/wife/spouse +VAL,RELSHIPP,C,2,22,22,Opposite-sex unmarried partner +VAL,RELSHIPP,C,2,23,23,Same-sex husband/wife/spouse +VAL,RELSHIPP,C,2,24,24,Same-sex unmarried partner +VAL,RELSHIPP,C,2,25,25,Biological son or daughter +VAL,RELSHIPP,C,2,26,26,Adopted son or daughter +VAL,RELSHIPP,C,2,27,27,Stepson or stepdaughter +VAL,RELSHIPP,C,2,28,28,Brother or sister +VAL,RELSHIPP,C,2,29,29,Father or mother +VAL,RELSHIPP,C,2,30,30,Grandchild +VAL,RELSHIPP,C,2,31,31,Parent-in-law +VAL,RELSHIPP,C,2,32,32,Son-in-law or daughter-in-law +VAL,RELSHIPP,C,2,33,33,Other relative +VAL,RELSHIPP,C,2,34,34,Roommate or housemate +VAL,RELSHIPP,C,2,35,35,Foster child +VAL,RELSHIPP,C,2,36,36,Other nonrelative +VAL,RELSHIPP,C,2,37,37,Institutionalized group quarters population +VAL,RELSHIPP,C,2,38,38,Noninstitutionalized group quarters population +NAME,RETP,N,6,Retirement income past 12 months (use ADJINC to adjust to constant dollars),, +VAL,RETP,N,6,bbbbbb,bbbbbb,N/A (less than 15 years old) +VAL,RETP,N,6,0,0,None +VAL,RETP,N,6,4,999999,$4 to $999999 (Rounded and top-coded) +NAME,SCH,C,1,School enrollment,, +VAL,SCH,C,1,b,b,N/A (less than 3 years old) +VAL,SCH,C,1,1,1,"No, has not attended in the last 3 months" +VAL,SCH,C,1,2,2,"Yes, public school or public college" +VAL,SCH,C,1,3,3,"Yes, private school or college or home school" +NAME,SCHG,C,2,Grade level attending,, +VAL,SCHG,C,2,bb,bb,N/A (not attending school) +VAL,SCHG,C,2,01,01,Nursery school/preschool +VAL,SCHG,C,2,02,02,Kindergarten +VAL,SCHG,C,2,03,03,Grade 1 +VAL,SCHG,C,2,04,04,Grade 2 +VAL,SCHG,C,2,05,05,Grade 3 +VAL,SCHG,C,2,06,06,Grade 4 +VAL,SCHG,C,2,07,07,Grade 5 +VAL,SCHG,C,2,08,08,Grade 6 +VAL,SCHG,C,2,09,09,Grade 7 +VAL,SCHG,C,2,10,10,Grade 8 +VAL,SCHG,C,2,11,11,Grade 9 +VAL,SCHG,C,2,12,12,Grade 10 +VAL,SCHG,C,2,13,13,Grade 11 +VAL,SCHG,C,2,14,14,Grade 12 +VAL,SCHG,C,2,15,15,College undergraduate years (freshman to senior) +VAL,SCHG,C,2,16,16,Graduate or professional school beyond a bachelor's degree +NAME,SCHL,C,2,Educational attainment,, +VAL,SCHL,C,2,bb,bb,N/A (less than 3 years old) +VAL,SCHL,C,2,01,01,No schooling completed +VAL,SCHL,C,2,02,02,"Nursery school, preschool" +VAL,SCHL,C,2,03,03,Kindergarten +VAL,SCHL,C,2,04,04,Grade 1 +VAL,SCHL,C,2,05,05,Grade 2 +VAL,SCHL,C,2,06,06,Grade 3 +VAL,SCHL,C,2,07,07,Grade 4 +VAL,SCHL,C,2,08,08,Grade 5 +VAL,SCHL,C,2,09,09,Grade 6 +VAL,SCHL,C,2,10,10,Grade 7 +VAL,SCHL,C,2,11,11,Grade 8 +VAL,SCHL,C,2,12,12,Grade 9 +VAL,SCHL,C,2,13,13,Grade 10 +VAL,SCHL,C,2,14,14,Grade 11 +VAL,SCHL,C,2,15,15,12th grade - no diploma +VAL,SCHL,C,2,16,16,Regular high school diploma +VAL,SCHL,C,2,17,17,GED or alternative credential +VAL,SCHL,C,2,18,18,"Some college, but less than 1 year" +VAL,SCHL,C,2,19,19,"1 or more years of college credit, no degree" +VAL,SCHL,C,2,20,20,Associate's degree +VAL,SCHL,C,2,21,21,Bachelor's degree +VAL,SCHL,C,2,22,22,Master's degree +VAL,SCHL,C,2,23,23,Professional degree beyond a bachelor's degree +VAL,SCHL,C,2,24,24,Doctorate degree +NAME,SEMP,N,6,Self-employment income past 12 months (use ADJINC to adjust SEMP to constant dollars),, +VAL,SEMP,N,6,bbbbbb,bbbbbb,N/A (less than 15 years old) +VAL,SEMP,N,6,0,0,None +VAL,SEMP,N,6,-10000,-4,Loss of $4 to $10000 (Rounded and bottom-coded) +VAL,SEMP,N,6,4,999999,$ 4 to $999999 (Rounded and top-coded) +NAME,SEX,C,1,Sex,, +VAL,SEX,C,1,1,1,Male +VAL,SEX,C,1,2,2,Female +NAME,SSIP,N,5,Supplementary Security Income past 12 months (use ADJINC to adjust SSIP to constant dollars),, +VAL,SSIP,N,5,bbbbb,bbbbb,N/A (less than 15 years old) +VAL,SSIP,N,5,0,0,None +VAL,SSIP,N,5,4,30000,$4 to $30000 (Rounded and top-coded) +NAME,SSP,N,5,Social Security income past 12 months (use ADJINC to adjust SSP to constant dollars),, +VAL,SSP,N,5,bbbbb,bbbbb,N/A (less than 15 years old) +VAL,SSP,N,5,0,0,None +VAL,SSP,N,5,4,55000,$4 to $55000 (Rounded and top-coded) +NAME,WAGP,N,6,Wages or salary income past 12 months (use ADJINC to adjust WAGP to constant dollars),, +VAL,WAGP,N,6,bbbbbb,bbbbbb,N/A (less than 15 years old) +VAL,WAGP,N,6,0,0,None +VAL,WAGP,N,6,4,999999,$4 to 999999 (Rounded and top-coded) +NAME,WKHP,N,2,Usual hours worked per week past 12 months,, +VAL,WKHP,N,2,bb,bb,N/A (less than 16 years old/did not work during the past 12 months) +VAL,WKHP,N,2,1,98,1 to 98 usual hours +VAL,WKHP,N,2,99,99,99 or more usual hours +NAME,WKL,C,1,When last worked,, +VAL,WKL,C,1,b,b,N/A (less than 16 years old) +VAL,WKL,C,1,1,1,Within the past 12 months +VAL,WKL,C,1,2,2,1-5 years ago +VAL,WKL,C,1,3,3,Over 5 years ago or never worked +NAME,WKWN,N,2,Weeks worked during past 12 months,, +VAL,WKWN,N,2,bb,bb,N/A (less than 16 years old/did not work during the past 12 months) +VAL,WKWN,N,2,1,52,1 to 52 weeks worked during past 12 months +NAME,WRK,C,1,Worked last week,, +VAL,WRK,C,1,b,b,N/A (not reported) +VAL,WRK,C,1,1,1,Worked +VAL,WRK,C,1,2,2,Did not work +NAME,YOEP,N,4,Year of entry,, +VAL,YOEP,N,4,bbbb,bbbb,N/A (Not eligible - Born in the US) +VAL,YOEP,N,4,1938,1938,1938 or earlier (Bottom-coded) +VAL,YOEP,N,4,1939,1939,1939 - 1942 +VAL,YOEP,N,4,1943,1943,1943 - 1944 +VAL,YOEP,N,4,1945,1945,1945 +VAL,YOEP,N,4,1946,1946,1946 +VAL,YOEP,N,4,1947,1947,1947 +VAL,YOEP,N,4,1948,1948,1948 +VAL,YOEP,N,4,1949,1949,1949 +VAL,YOEP,N,4,1950,1950,1950 +VAL,YOEP,N,4,1951,1951,1951 +VAL,YOEP,N,4,1952,1952,1952 +VAL,YOEP,N,4,1953,1953,1953 +VAL,YOEP,N,4,1954,1954,1954 +VAL,YOEP,N,4,1955,1955,1955 +VAL,YOEP,N,4,1956,1956,1956 +VAL,YOEP,N,4,1957,1957,1957 +VAL,YOEP,N,4,1958,1958,1958 +VAL,YOEP,N,4,1959,1959,1959 +VAL,YOEP,N,4,1960,1960,1960 +VAL,YOEP,N,4,1961,1961,1961 +VAL,YOEP,N,4,1962,1962,1962 +VAL,YOEP,N,4,1963,1963,1963 +VAL,YOEP,N,4,1964,1964,1964 +VAL,YOEP,N,4,1965,1965,1965 +VAL,YOEP,N,4,1966,1966,1966 +VAL,YOEP,N,4,1967,1967,1967 +VAL,YOEP,N,4,1968,1968,1968 +VAL,YOEP,N,4,1969,1969,1969 +VAL,YOEP,N,4,1970,1970,1970 +VAL,YOEP,N,4,1971,1971,1971 +VAL,YOEP,N,4,1972,1972,1972 +VAL,YOEP,N,4,1973,1973,1973 +VAL,YOEP,N,4,1974,1974,1974 +VAL,YOEP,N,4,1975,1975,1975 +VAL,YOEP,N,4,1976,1976,1976 +VAL,YOEP,N,4,1977,1977,1977 +VAL,YOEP,N,4,1978,1978,1978 +VAL,YOEP,N,4,1979,1979,1979 +VAL,YOEP,N,4,1980,1980,1980 +VAL,YOEP,N,4,1981,1981,1981 +VAL,YOEP,N,4,1982,1982,1982 +VAL,YOEP,N,4,1983,1983,1983 +VAL,YOEP,N,4,1984,1984,1984 +VAL,YOEP,N,4,1985,1985,1985 +VAL,YOEP,N,4,1986,1986,1986 +VAL,YOEP,N,4,1987,1987,1987 +VAL,YOEP,N,4,1988,1988,1988 +VAL,YOEP,N,4,1989,1989,1989 +VAL,YOEP,N,4,1990,1990,1990 +VAL,YOEP,N,4,1991,1991,1991 +VAL,YOEP,N,4,1992,1992,1992 +VAL,YOEP,N,4,1993,1993,1993 +VAL,YOEP,N,4,1994,1994,1994 +VAL,YOEP,N,4,1995,1995,1995 +VAL,YOEP,N,4,1996,1996,1996 +VAL,YOEP,N,4,1997,1997,1997 +VAL,YOEP,N,4,1998,1998,1998 +VAL,YOEP,N,4,1999,1999,1999 +VAL,YOEP,N,4,2000,2000,2000 +VAL,YOEP,N,4,2001,2001,2001 +VAL,YOEP,N,4,2002,2002,2002 +VAL,YOEP,N,4,2003,2003,2003 +VAL,YOEP,N,4,2004,2004,2004 +VAL,YOEP,N,4,2005,2005,2005 +VAL,YOEP,N,4,2006,2006,2006 +VAL,YOEP,N,4,2007,2007,2007 +VAL,YOEP,N,4,2008,2008,2008 +VAL,YOEP,N,4,2009,2009,2009 +VAL,YOEP,N,4,2010,2010,2010 +VAL,YOEP,N,4,2011,2011,2011 +VAL,YOEP,N,4,2012,2012,2012 +VAL,YOEP,N,4,2013,2013,2013 +VAL,YOEP,N,4,2014,2014,2014 +VAL,YOEP,N,4,2015,2015,2015 +VAL,YOEP,N,4,2016,2016,2016 +VAL,YOEP,N,4,2017,2017,2017 +VAL,YOEP,N,4,2018,2018,2018 +VAL,YOEP,N,4,2019,2019,2019 +VAL,YOEP,N,4,2020,2020,2020 +VAL,YOEP,N,4,2021,2021,2021 +VAL,YOEP,N,4,2022,2022,2022 +VAL,YOEP,N,4,2023,2023,2023 +NAME,ANC,C,1,Ancestry recode,, +VAL,ANC,C,1,1,1,Single +VAL,ANC,C,1,2,2,Multiple +VAL,ANC,C,1,3,3,Unclassified +VAL,ANC,C,1,4,4,Not reported +NAME,ANC1P,C,3,Recoded Detailed Ancestry - first entry,, +VAL,ANC1P,C,3,001,001,Alsatian +VAL,ANC1P,C,3,003,003,Austrian +VAL,ANC1P,C,3,005,005,Basque +VAL,ANC1P,C,3,008,008,Belgian +VAL,ANC1P,C,3,009,009,Flemish +VAL,ANC1P,C,3,011,011,British +VAL,ANC1P,C,3,012,012,British Isles +VAL,ANC1P,C,3,020,020,Danish +VAL,ANC1P,C,3,021,021,Dutch +VAL,ANC1P,C,3,022,022,English +VAL,ANC1P,C,3,024,024,Finnish +VAL,ANC1P,C,3,026,026,French +VAL,ANC1P,C,3,032,032,German +VAL,ANC1P,C,3,040,040,Prussian +VAL,ANC1P,C,3,046,046,Greek +VAL,ANC1P,C,3,049,049,Icelander +VAL,ANC1P,C,3,050,050,Irish +VAL,ANC1P,C,3,051,051,Italian +VAL,ANC1P,C,3,068,068,Sicilian +VAL,ANC1P,C,3,077,077,Luxembourger +VAL,ANC1P,C,3,078,078,Maltese +VAL,ANC1P,C,3,082,082,Norwegian +VAL,ANC1P,C,3,084,084,Portuguese +VAL,ANC1P,C,3,087,087,Scotch Irish +VAL,ANC1P,C,3,088,088,Scottish +VAL,ANC1P,C,3,089,089,Swedish +VAL,ANC1P,C,3,091,091,Swiss +VAL,ANC1P,C,3,094,094,Irish Scotch +VAL,ANC1P,C,3,097,097,Welsh +VAL,ANC1P,C,3,098,098,Scandinavian +VAL,ANC1P,C,3,099,099,Celtic +VAL,ANC1P,C,3,100,100,Albanian +VAL,ANC1P,C,3,102,102,Belorussian +VAL,ANC1P,C,3,103,103,Bulgarian +VAL,ANC1P,C,3,109,109,Croatian +VAL,ANC1P,C,3,111,111,Czech +VAL,ANC1P,C,3,112,112,Bohemian +VAL,ANC1P,C,3,114,114,Czechoslovakian +VAL,ANC1P,C,3,115,115,Estonian +VAL,ANC1P,C,3,122,122,German Russian +VAL,ANC1P,C,3,124,124,Rom +VAL,ANC1P,C,3,125,125,Hungarian +VAL,ANC1P,C,3,128,128,Latvian +VAL,ANC1P,C,3,129,129,Lithuanian +VAL,ANC1P,C,3,130,130,Macedonian +VAL,ANC1P,C,3,131,131,Montenegrin +VAL,ANC1P,C,3,142,142,Polish +VAL,ANC1P,C,3,144,144,Romanian +VAL,ANC1P,C,3,146,146,Moldavian +VAL,ANC1P,C,3,148,148,Russian +VAL,ANC1P,C,3,152,152,Serbian +VAL,ANC1P,C,3,153,153,Slovak +VAL,ANC1P,C,3,154,154,Slovene +VAL,ANC1P,C,3,168,168,Turkestani +VAL,ANC1P,C,3,169,169,Uzbeg +VAL,ANC1P,C,3,170,170,Georgia CIS +VAL,ANC1P,C,3,171,171,Ukrainian +VAL,ANC1P,C,3,176,176,Yugoslavian +VAL,ANC1P,C,3,177,177,Bosnian and Herzegovinian +VAL,ANC1P,C,3,178,178,Slavic +VAL,ANC1P,C,3,181,181,Central European +VAL,ANC1P,C,3,183,183,Northern European +VAL,ANC1P,C,3,185,185,Southern European +VAL,ANC1P,C,3,187,187,Western European +VAL,ANC1P,C,3,190,190,Eastern European +VAL,ANC1P,C,3,194,194,Germanic +VAL,ANC1P,C,3,195,195,European +VAL,ANC1P,C,3,200,200,Spaniard +VAL,ANC1P,C,3,210,210,Mexican +VAL,ANC1P,C,3,211,211,Mexican American +VAL,ANC1P,C,3,212,212,Mexicano +VAL,ANC1P,C,3,213,213,Chicano +VAL,ANC1P,C,3,215,215,Mexican American Indian +VAL,ANC1P,C,3,218,218,Mexican State +VAL,ANC1P,C,3,219,219,Mexican Indian +VAL,ANC1P,C,3,221,221,Costa Rican +VAL,ANC1P,C,3,222,222,Guatemalan +VAL,ANC1P,C,3,223,223,Honduran +VAL,ANC1P,C,3,224,224,Nicaraguan +VAL,ANC1P,C,3,225,225,Panamanian +VAL,ANC1P,C,3,226,226,Salvadoran +VAL,ANC1P,C,3,227,227,Central American +VAL,ANC1P,C,3,231,231,Argentinean +VAL,ANC1P,C,3,232,232,Bolivian +VAL,ANC1P,C,3,233,233,Chilean +VAL,ANC1P,C,3,234,234,Colombian +VAL,ANC1P,C,3,235,235,Ecuadorian +VAL,ANC1P,C,3,236,236,Paraguayan +VAL,ANC1P,C,3,237,237,Peruvian +VAL,ANC1P,C,3,238,238,Uruguayan +VAL,ANC1P,C,3,239,239,Venezuelan +VAL,ANC1P,C,3,249,249,South American +VAL,ANC1P,C,3,250,250,Latin American +VAL,ANC1P,C,3,251,251,Latin +VAL,ANC1P,C,3,252,252,Latino +VAL,ANC1P,C,3,261,261,Puerto Rican +VAL,ANC1P,C,3,271,271,Cuban +VAL,ANC1P,C,3,275,275,Dominican +VAL,ANC1P,C,3,290,290,Hispanic +VAL,ANC1P,C,3,291,291,Spanish +VAL,ANC1P,C,3,295,295,Spanish American +VAL,ANC1P,C,3,300,300,Bahamian +VAL,ANC1P,C,3,301,301,Barbadian +VAL,ANC1P,C,3,302,302,Belizean +VAL,ANC1P,C,3,308,308,Jamaican +VAL,ANC1P,C,3,310,310,Dutch West Indian +VAL,ANC1P,C,3,314,314,Trinidadian Tobagonian +VAL,ANC1P,C,3,322,322,British West Indian +VAL,ANC1P,C,3,325,325,Antigua and Barbuda +VAL,ANC1P,C,3,329,329,Grenadian +VAL,ANC1P,C,3,330,330,Vincent-Grenadine Islander +VAL,ANC1P,C,3,331,331,St Lucia Islander +VAL,ANC1P,C,3,335,335,West Indian +VAL,ANC1P,C,3,336,336,Haitian +VAL,ANC1P,C,3,359,359,Other West Indian +VAL,ANC1P,C,3,360,360,Brazilian +VAL,ANC1P,C,3,370,370,Guyanese +VAL,ANC1P,C,3,400,400,Algerian +VAL,ANC1P,C,3,402,402,Egyptian +VAL,ANC1P,C,3,404,404,Libyan +VAL,ANC1P,C,3,406,406,Moroccan +VAL,ANC1P,C,3,411,411,North African +VAL,ANC1P,C,3,416,416,Iranian +VAL,ANC1P,C,3,417,417,Iraqi +VAL,ANC1P,C,3,419,419,Israeli +VAL,ANC1P,C,3,421,421,Jordanian +VAL,ANC1P,C,3,425,425,Lebanese +VAL,ANC1P,C,3,427,427,Saudi Arabian +VAL,ANC1P,C,3,429,429,Syrian +VAL,ANC1P,C,3,431,431,Armenian +VAL,ANC1P,C,3,434,434,Turkish +VAL,ANC1P,C,3,435,435,Yemeni +VAL,ANC1P,C,3,442,442,Kurdish +VAL,ANC1P,C,3,465,465,Palestinian +VAL,ANC1P,C,3,483,483,Assyrian +VAL,ANC1P,C,3,484,484,Chaldean +VAL,ANC1P,C,3,490,490,Mideast +VAL,ANC1P,C,3,495,495,Arab +VAL,ANC1P,C,3,496,496,Arabic +VAL,ANC1P,C,3,499,499,Other Arab +VAL,ANC1P,C,3,508,508,Cameroonian +VAL,ANC1P,C,3,510,510,Cape Verdean +VAL,ANC1P,C,3,515,515,Congolese +VAL,ANC1P,C,3,522,522,Ethiopian +VAL,ANC1P,C,3,523,523,Eritrean +VAL,ANC1P,C,3,527,527,Gambian +VAL,ANC1P,C,3,529,529,Ghanaian +VAL,ANC1P,C,3,530,530,Guinean +VAL,ANC1P,C,3,534,534,Kenyan +VAL,ANC1P,C,3,541,541,Liberian +VAL,ANC1P,C,3,553,553,Nigerian +VAL,ANC1P,C,3,564,564,Senegalese +VAL,ANC1P,C,3,566,566,Sierra Leonean +VAL,ANC1P,C,3,568,568,Somali +VAL,ANC1P,C,3,570,570,South African +VAL,ANC1P,C,3,576,576,Sudanese +VAL,ANC1P,C,3,586,586,Togo +VAL,ANC1P,C,3,587,587,Other Subsaharan African +VAL,ANC1P,C,3,588,588,Ugandan +VAL,ANC1P,C,3,593,593,Zimbabwean +VAL,ANC1P,C,3,598,598,Western African +VAL,ANC1P,C,3,599,599,African +VAL,ANC1P,C,3,600,600,Afghan +VAL,ANC1P,C,3,603,603,Bangladeshi +VAL,ANC1P,C,3,607,607,Bhutanese +VAL,ANC1P,C,3,609,609,Nepali +VAL,ANC1P,C,3,615,615,Asian Indian +VAL,ANC1P,C,3,618,618,Bengali +VAL,ANC1P,C,3,620,620,East Indian +VAL,ANC1P,C,3,650,650,Punjabi +VAL,ANC1P,C,3,680,680,Pakistani +VAL,ANC1P,C,3,690,690,Sri Lankan +VAL,ANC1P,C,3,700,700,Burmese +VAL,ANC1P,C,3,703,703,Cambodian +VAL,ANC1P,C,3,706,706,Chinese +VAL,ANC1P,C,3,707,707,Cantonese +VAL,ANC1P,C,3,712,712,Mongolian +VAL,ANC1P,C,3,714,714,Tibetan +VAL,ANC1P,C,3,716,716,Hong Kong +VAL,ANC1P,C,3,720,720,Filipino +VAL,ANC1P,C,3,730,730,Indonesian +VAL,ANC1P,C,3,740,740,Japanese +VAL,ANC1P,C,3,748,748,Okinawan +VAL,ANC1P,C,3,750,750,Korean +VAL,ANC1P,C,3,765,765,Laotian +VAL,ANC1P,C,3,768,768,Hmong +VAL,ANC1P,C,3,770,770,Malaysian +VAL,ANC1P,C,3,776,776,Thai +VAL,ANC1P,C,3,782,782,Taiwanese +VAL,ANC1P,C,3,785,785,Vietnamese +VAL,ANC1P,C,3,795,795,Asian +VAL,ANC1P,C,3,799,799,Other Asian +VAL,ANC1P,C,3,800,800,Australian +VAL,ANC1P,C,3,803,803,New Zealander +VAL,ANC1P,C,3,808,808,Polynesian +VAL,ANC1P,C,3,811,811,Hawaiian +VAL,ANC1P,C,3,814,814,Samoan +VAL,ANC1P,C,3,815,815,Tongan +VAL,ANC1P,C,3,820,820,Micronesian +VAL,ANC1P,C,3,821,821,Guamanian +VAL,ANC1P,C,3,822,822,Chamorro +VAL,ANC1P,C,3,825,825,Marshallese +VAL,ANC1P,C,3,841,841,Fijian +VAL,ANC1P,C,3,850,850,Pacific Islander +VAL,ANC1P,C,3,899,899,Other Pacific +VAL,ANC1P,C,3,900,900,Afro American +VAL,ANC1P,C,3,901,901,Afro +VAL,ANC1P,C,3,902,902,African American +VAL,ANC1P,C,3,903,903,Black +VAL,ANC1P,C,3,904,904,Negro +VAL,ANC1P,C,3,907,907,Creole +VAL,ANC1P,C,3,913,913,Central American Indian +VAL,ANC1P,C,3,914,914,South American Indian +VAL,ANC1P,C,3,917,917,Native American +VAL,ANC1P,C,3,918,918,Indian +VAL,ANC1P,C,3,919,919,Cherokee +VAL,ANC1P,C,3,920,920,American Indian +VAL,ANC1P,C,3,922,922,Eskimo +VAL,ANC1P,C,3,924,924,White +VAL,ANC1P,C,3,925,925,Anglo +VAL,ANC1P,C,3,927,927,Appalachian +VAL,ANC1P,C,3,929,929,Pennsylvania German +VAL,ANC1P,C,3,931,931,Canadian +VAL,ANC1P,C,3,935,935,French Canadian +VAL,ANC1P,C,3,937,937,Cajun +VAL,ANC1P,C,3,939,939,American +VAL,ANC1P,C,3,940,940,United States +VAL,ANC1P,C,3,983,983,Texas +VAL,ANC1P,C,3,994,994,North American +VAL,ANC1P,C,3,995,995,Mixture +VAL,ANC1P,C,3,996,996,Uncodable entries +VAL,ANC1P,C,3,997,997,Other groups +VAL,ANC1P,C,3,998,998,Other responses +VAL,ANC1P,C,3,999,999,Not reported +NAME,ANC2P,C,3,Recoded Detailed Ancestry - second entry,, +VAL,ANC2P,C,3,001,001,Alsatian +VAL,ANC2P,C,3,003,003,Austrian +VAL,ANC2P,C,3,005,005,Basque +VAL,ANC2P,C,3,008,008,Belgian +VAL,ANC2P,C,3,009,009,Flemish +VAL,ANC2P,C,3,011,011,British +VAL,ANC2P,C,3,012,012,British Isles +VAL,ANC2P,C,3,020,020,Danish +VAL,ANC2P,C,3,021,021,Dutch +VAL,ANC2P,C,3,022,022,English +VAL,ANC2P,C,3,024,024,Finnish +VAL,ANC2P,C,3,026,026,French +VAL,ANC2P,C,3,032,032,German +VAL,ANC2P,C,3,040,040,Prussian +VAL,ANC2P,C,3,046,046,Greek +VAL,ANC2P,C,3,049,049,Icelander +VAL,ANC2P,C,3,050,050,Irish +VAL,ANC2P,C,3,051,051,Italian +VAL,ANC2P,C,3,068,068,Sicilian +VAL,ANC2P,C,3,077,077,Luxembourger +VAL,ANC2P,C,3,078,078,Maltese +VAL,ANC2P,C,3,082,082,Norwegian +VAL,ANC2P,C,3,084,084,Portuguese +VAL,ANC2P,C,3,087,087,Scotch Irish +VAL,ANC2P,C,3,088,088,Scottish +VAL,ANC2P,C,3,089,089,Swedish +VAL,ANC2P,C,3,091,091,Swiss +VAL,ANC2P,C,3,094,094,Irish Scotch +VAL,ANC2P,C,3,097,097,Welsh +VAL,ANC2P,C,3,098,098,Scandinavian +VAL,ANC2P,C,3,099,099,Celtic +VAL,ANC2P,C,3,100,100,Albanian +VAL,ANC2P,C,3,102,102,Belorussian +VAL,ANC2P,C,3,103,103,Bulgarian +VAL,ANC2P,C,3,109,109,Croatian +VAL,ANC2P,C,3,111,111,Czech +VAL,ANC2P,C,3,112,112,Bohemian +VAL,ANC2P,C,3,114,114,Czechoslovakian +VAL,ANC2P,C,3,115,115,Estonian +VAL,ANC2P,C,3,122,122,German Russian +VAL,ANC2P,C,3,124,124,Rom +VAL,ANC2P,C,3,125,125,Hungarian +VAL,ANC2P,C,3,128,128,Latvian +VAL,ANC2P,C,3,129,129,Lithuanian +VAL,ANC2P,C,3,130,130,Macedonian +VAL,ANC2P,C,3,131,131,Montenegrin +VAL,ANC2P,C,3,142,142,Polish +VAL,ANC2P,C,3,144,144,Romanian +VAL,ANC2P,C,3,146,146,Moldavian +VAL,ANC2P,C,3,148,148,Russian +VAL,ANC2P,C,3,152,152,Serbian +VAL,ANC2P,C,3,153,153,Slovak +VAL,ANC2P,C,3,154,154,Slovene +VAL,ANC2P,C,3,168,168,Turkestani +VAL,ANC2P,C,3,169,169,Uzbeg +VAL,ANC2P,C,3,170,170,Georgia CIS +VAL,ANC2P,C,3,171,171,Ukrainian +VAL,ANC2P,C,3,176,176,Yugoslavian +VAL,ANC2P,C,3,177,177,Bosnian and Herzegovinian +VAL,ANC2P,C,3,178,178,Slavic +VAL,ANC2P,C,3,181,181,Central European +VAL,ANC2P,C,3,183,183,Northern European +VAL,ANC2P,C,3,185,185,Southern European +VAL,ANC2P,C,3,187,187,Western European +VAL,ANC2P,C,3,190,190,Eastern European +VAL,ANC2P,C,3,194,194,Germanic +VAL,ANC2P,C,3,195,195,European +VAL,ANC2P,C,3,200,200,Spaniard +VAL,ANC2P,C,3,210,210,Mexican +VAL,ANC2P,C,3,211,211,Mexican American +VAL,ANC2P,C,3,212,212,Mexicano +VAL,ANC2P,C,3,213,213,Chicano +VAL,ANC2P,C,3,215,215,Mexican American Indian +VAL,ANC2P,C,3,218,218,Mexican State +VAL,ANC2P,C,3,219,219,Mexican Indian +VAL,ANC2P,C,3,221,221,Costa Rican +VAL,ANC2P,C,3,222,222,Guatemalan +VAL,ANC2P,C,3,223,223,Honduran +VAL,ANC2P,C,3,224,224,Nicaraguan +VAL,ANC2P,C,3,225,225,Panamanian +VAL,ANC2P,C,3,226,226,Salvadoran +VAL,ANC2P,C,3,227,227,Central American +VAL,ANC2P,C,3,231,231,Argentinean +VAL,ANC2P,C,3,232,232,Bolivian +VAL,ANC2P,C,3,233,233,Chilean +VAL,ANC2P,C,3,234,234,Colombian +VAL,ANC2P,C,3,235,235,Ecuadorian +VAL,ANC2P,C,3,236,236,Paraguayan +VAL,ANC2P,C,3,237,237,Peruvian +VAL,ANC2P,C,3,238,238,Uruguayan +VAL,ANC2P,C,3,239,239,Venezuelan +VAL,ANC2P,C,3,249,249,South American +VAL,ANC2P,C,3,250,250,Latin American +VAL,ANC2P,C,3,251,251,Latin +VAL,ANC2P,C,3,252,252,Latino +VAL,ANC2P,C,3,261,261,Puerto Rican +VAL,ANC2P,C,3,271,271,Cuban +VAL,ANC2P,C,3,275,275,Dominican +VAL,ANC2P,C,3,290,290,Hispanic +VAL,ANC2P,C,3,291,291,Spanish +VAL,ANC2P,C,3,295,295,Spanish American +VAL,ANC2P,C,3,300,300,Bahamian +VAL,ANC2P,C,3,301,301,Barbadian +VAL,ANC2P,C,3,302,302,Belizean +VAL,ANC2P,C,3,308,308,Jamaican +VAL,ANC2P,C,3,310,310,Dutch West Indian +VAL,ANC2P,C,3,314,314,Trinidadian Tobagonian +VAL,ANC2P,C,3,322,322,British West Indian +VAL,ANC2P,C,3,325,325,Antigua and Barbuda +VAL,ANC2P,C,3,329,329,Grenadian +VAL,ANC2P,C,3,330,330,Vincent-Grenadine Islander +VAL,ANC2P,C,3,331,331,St Lucia Islander +VAL,ANC2P,C,3,335,335,West Indian +VAL,ANC2P,C,3,336,336,Haitian +VAL,ANC2P,C,3,359,359,Other West Indian +VAL,ANC2P,C,3,360,360,Brazilian +VAL,ANC2P,C,3,370,370,Guyanese +VAL,ANC2P,C,3,400,400,Algerian +VAL,ANC2P,C,3,402,402,Egyptian +VAL,ANC2P,C,3,404,404,Libyan +VAL,ANC2P,C,3,406,406,Moroccan +VAL,ANC2P,C,3,411,411,North African +VAL,ANC2P,C,3,416,416,Iranian +VAL,ANC2P,C,3,417,417,Iraqi +VAL,ANC2P,C,3,419,419,Israeli +VAL,ANC2P,C,3,421,421,Jordanian +VAL,ANC2P,C,3,425,425,Lebanese +VAL,ANC2P,C,3,427,427,Saudi Arabian +VAL,ANC2P,C,3,429,429,Syrian +VAL,ANC2P,C,3,431,431,Armenian +VAL,ANC2P,C,3,434,434,Turkish +VAL,ANC2P,C,3,435,435,Yemeni +VAL,ANC2P,C,3,442,442,Kurdish +VAL,ANC2P,C,3,465,465,Palestinian +VAL,ANC2P,C,3,483,483,Assyrian +VAL,ANC2P,C,3,484,484,Chaldean +VAL,ANC2P,C,3,490,490,Mideast +VAL,ANC2P,C,3,495,495,Arab +VAL,ANC2P,C,3,496,496,Arabic +VAL,ANC2P,C,3,499,499,Other Arab +VAL,ANC2P,C,3,508,508,Cameroonian +VAL,ANC2P,C,3,510,510,Cape Verdean +VAL,ANC2P,C,3,515,515,Congolese +VAL,ANC2P,C,3,522,522,Ethiopian +VAL,ANC2P,C,3,523,523,Eritrean +VAL,ANC2P,C,3,527,527,Gambian +VAL,ANC2P,C,3,529,529,Ghanaian +VAL,ANC2P,C,3,530,530,Guinean +VAL,ANC2P,C,3,534,534,Kenyan +VAL,ANC2P,C,3,541,541,Liberian +VAL,ANC2P,C,3,553,553,Nigerian +VAL,ANC2P,C,3,564,564,Senegalese +VAL,ANC2P,C,3,566,566,Sierra Leonean +VAL,ANC2P,C,3,568,568,Somali +VAL,ANC2P,C,3,570,570,South African +VAL,ANC2P,C,3,576,576,Sudanese +VAL,ANC2P,C,3,586,586,Togo +VAL,ANC2P,C,3,587,587,Other Subsaharan African +VAL,ANC2P,C,3,588,588,Ugandan +VAL,ANC2P,C,3,593,593,Zimbabwean +VAL,ANC2P,C,3,598,598,Western African +VAL,ANC2P,C,3,599,599,African +VAL,ANC2P,C,3,600,600,Afghan +VAL,ANC2P,C,3,603,603,Bangladeshi +VAL,ANC2P,C,3,607,607,Bhutanese +VAL,ANC2P,C,3,609,609,Nepali +VAL,ANC2P,C,3,615,615,Asian Indian +VAL,ANC2P,C,3,618,618,Bengali +VAL,ANC2P,C,3,620,620,East Indian +VAL,ANC2P,C,3,650,650,Punjabi +VAL,ANC2P,C,3,680,680,Pakistani +VAL,ANC2P,C,3,690,690,Sri Lankan +VAL,ANC2P,C,3,700,700,Burmese +VAL,ANC2P,C,3,703,703,Cambodian +VAL,ANC2P,C,3,706,706,Chinese +VAL,ANC2P,C,3,707,707,Cantonese +VAL,ANC2P,C,3,712,712,Mongolian +VAL,ANC2P,C,3,714,714,Tibetan +VAL,ANC2P,C,3,716,716,Hong Kong +VAL,ANC2P,C,3,720,720,Filipino +VAL,ANC2P,C,3,730,730,Indonesian +VAL,ANC2P,C,3,740,740,Japanese +VAL,ANC2P,C,3,748,748,Okinawan +VAL,ANC2P,C,3,750,750,Korean +VAL,ANC2P,C,3,765,765,Laotian +VAL,ANC2P,C,3,768,768,Hmong +VAL,ANC2P,C,3,770,770,Malaysian +VAL,ANC2P,C,3,776,776,Thai +VAL,ANC2P,C,3,782,782,Taiwanese +VAL,ANC2P,C,3,785,785,Vietnamese +VAL,ANC2P,C,3,795,795,Asian +VAL,ANC2P,C,3,799,799,Other Asian +VAL,ANC2P,C,3,800,800,Australian +VAL,ANC2P,C,3,803,803,New Zealander +VAL,ANC2P,C,3,808,808,Polynesian +VAL,ANC2P,C,3,811,811,Hawaiian +VAL,ANC2P,C,3,814,814,Samoan +VAL,ANC2P,C,3,815,815,Tongan +VAL,ANC2P,C,3,820,820,Micronesian +VAL,ANC2P,C,3,821,821,Guamanian +VAL,ANC2P,C,3,822,822,Chamorro +VAL,ANC2P,C,3,825,825,Marshallese +VAL,ANC2P,C,3,841,841,Fijian +VAL,ANC2P,C,3,850,850,Pacific Islander +VAL,ANC2P,C,3,899,899,Other Pacific +VAL,ANC2P,C,3,900,900,Afro American +VAL,ANC2P,C,3,901,901,Afro +VAL,ANC2P,C,3,902,902,African American +VAL,ANC2P,C,3,903,903,Black +VAL,ANC2P,C,3,904,904,Negro +VAL,ANC2P,C,3,907,907,Creole +VAL,ANC2P,C,3,913,913,Central American Indian +VAL,ANC2P,C,3,914,914,South American Indian +VAL,ANC2P,C,3,917,917,Native American +VAL,ANC2P,C,3,918,918,Indian +VAL,ANC2P,C,3,919,919,Cherokee +VAL,ANC2P,C,3,920,920,American Indian +VAL,ANC2P,C,3,922,922,Eskimo +VAL,ANC2P,C,3,924,924,White +VAL,ANC2P,C,3,925,925,Anglo +VAL,ANC2P,C,3,927,927,Appalachian +VAL,ANC2P,C,3,929,929,Pennsylvania German +VAL,ANC2P,C,3,931,931,Canadian +VAL,ANC2P,C,3,935,935,French Canadian +VAL,ANC2P,C,3,937,937,Cajun +VAL,ANC2P,C,3,939,939,American +VAL,ANC2P,C,3,940,940,United States +VAL,ANC2P,C,3,983,983,Texas +VAL,ANC2P,C,3,994,994,North American +VAL,ANC2P,C,3,995,995,Mixture +VAL,ANC2P,C,3,996,996,Uncodable entries +VAL,ANC2P,C,3,997,997,Other groups +VAL,ANC2P,C,3,998,998,Other responses +VAL,ANC2P,C,3,999,999,Not reported +NAME,DECADE,C,1,Decade of entry,, +VAL,DECADE,C,1,b,b,N/A (Born in the US) +VAL,DECADE,C,1,1,1,Before 1950 +VAL,DECADE,C,1,2,2,1950 - 1959 +VAL,DECADE,C,1,3,3,1960 - 1969 +VAL,DECADE,C,1,4,4,1970 - 1979 +VAL,DECADE,C,1,5,5,1980 - 1989 +VAL,DECADE,C,1,6,6,1990 - 1999 +VAL,DECADE,C,1,7,7,2000 - 2009 +VAL,DECADE,C,1,8,8,2010 or later +NAME,DIS,C,1,Disability recode,, +VAL,DIS,C,1,1,1,With a disability +VAL,DIS,C,1,2,2,Without a disability +NAME,DRIVESP,C,1,Number of vehicles calculated from JWRI,, +VAL,DRIVESP,C,1,b,b,N/A (Nonworker or worker who does not drive to work) +VAL,DRIVESP,C,1,1,1,1.000 vehicles (Drove alone) +VAL,DRIVESP,C,1,2,2,0.500 vehicles (In a 2-person carpool) +VAL,DRIVESP,C,1,3,3,0.333 vehicles (In a 3-person carpool) +VAL,DRIVESP,C,1,4,4,0.250 vehicles (In a 4-person carpool) +VAL,DRIVESP,C,1,5,5,0.200 vehicles (In a 5- or 6-person carpool) +VAL,DRIVESP,C,1,6,6,0.143 vehicles (In a 7-or-more person carpool) +NAME,ESP,C,1,Employment status of parents,, +VAL,ESP,C,1,b,b,"N/A (not own child of householder, and not child in subfamily)" +VAL,ESP,C,1,1,1,Living with two parents: Both parents in labor force +VAL,ESP,C,1,2,2,Living with two parents: Father only in labor force +VAL,ESP,C,1,3,3,Living with two parents: Mother only in labor force +VAL,ESP,C,1,4,4,Living with two parents: Neither parent in labor force +VAL,ESP,C,1,5,5,Living with father: In labor force +VAL,ESP,C,1,6,6,Living with father: Not in labor force +VAL,ESP,C,1,7,7,Living with mother: In labor force +VAL,ESP,C,1,8,8,Living with mother: Not in labor force +NAME,ESR,C,1,Employment status recode,, +VAL,ESR,C,1,b,b,N/A (less than 16 years old) +VAL,ESR,C,1,1,1,"Civilian employed, at work" +VAL,ESR,C,1,2,2,"Civilian employed, with a job but not at work" +VAL,ESR,C,1,3,3,Unemployed +VAL,ESR,C,1,4,4,"Armed forces, at work" +VAL,ESR,C,1,5,5,"Armed forces, with a job but not at work" +VAL,ESR,C,1,6,6,Not in labor force +NAME,FOD1P,C,4,Recoded field of degree - first entry,, +VAL,FOD1P,C,4,bbbb,bbbb,N/A (less than bachelor's degree) +VAL,FOD1P,C,4,1100,1100,General Agriculture +VAL,FOD1P,C,4,1101,1101,Agriculture Production And Management +VAL,FOD1P,C,4,1102,1102,Agricultural Economics +VAL,FOD1P,C,4,1103,1103,Animal Sciences +VAL,FOD1P,C,4,1104,1104,Food Science +VAL,FOD1P,C,4,1105,1105,Plant Science And Agronomy +VAL,FOD1P,C,4,1106,1106,Soil Science +VAL,FOD1P,C,4,1107,1107,Veterinary Medicine +VAL,FOD1P,C,4,1199,1199,Miscellaneous Agriculture +VAL,FOD1P,C,4,1301,1301,Environmental Science +VAL,FOD1P,C,4,1302,1302,Forestry +VAL,FOD1P,C,4,1303,1303,Natural Resources Management +VAL,FOD1P,C,4,1401,1401,Architecture +VAL,FOD1P,C,4,1501,1501,Area Ethnic And Civilization Studies +VAL,FOD1P,C,4,1901,1901,Communications +VAL,FOD1P,C,4,1902,1902,Journalism +VAL,FOD1P,C,4,1903,1903,Mass Media +VAL,FOD1P,C,4,1904,1904,Advertising And Public Relations +VAL,FOD1P,C,4,2001,2001,Communication Technologies +VAL,FOD1P,C,4,2100,2100,Computer And Information Systems +VAL,FOD1P,C,4,2101,2101,Computer Programming And Data Processing +VAL,FOD1P,C,4,2102,2102,Computer Science +VAL,FOD1P,C,4,2105,2105,Information Sciences +VAL,FOD1P,C,4,2106,2106,Computer Administration Management And Security +VAL,FOD1P,C,4,2107,2107,Computer Networking And Telecommunications +VAL,FOD1P,C,4,2201,2201,Cosmetology Services And Culinary Arts +VAL,FOD1P,C,4,2300,2300,General Education +VAL,FOD1P,C,4,2301,2301,Educational Administration And Supervision +VAL,FOD1P,C,4,2303,2303,School Student Counseling +VAL,FOD1P,C,4,2304,2304,Elementary Education +VAL,FOD1P,C,4,2305,2305,Mathematics Teacher Education +VAL,FOD1P,C,4,2306,2306,Physical And Health Education Teaching +VAL,FOD1P,C,4,2307,2307,Early Childhood Education +VAL,FOD1P,C,4,2308,2308,Science And Computer Teacher Education +VAL,FOD1P,C,4,2309,2309,Secondary Teacher Education +VAL,FOD1P,C,4,2310,2310,Special Needs Education +VAL,FOD1P,C,4,2311,2311,Social Science Or History Teacher Education +VAL,FOD1P,C,4,2312,2312,Teacher Education: Multiple Levels +VAL,FOD1P,C,4,2313,2313,Language And Drama Education +VAL,FOD1P,C,4,2314,2314,Art And Music Education +VAL,FOD1P,C,4,2399,2399,Miscellaneous Education +VAL,FOD1P,C,4,2400,2400,General Engineering +VAL,FOD1P,C,4,2401,2401,Aerospace Engineering +VAL,FOD1P,C,4,2402,2402,Biological Engineering +VAL,FOD1P,C,4,2403,2403,Architectural Engineering +VAL,FOD1P,C,4,2404,2404,Biomedical Engineering +VAL,FOD1P,C,4,2405,2405,Chemical Engineering +VAL,FOD1P,C,4,2406,2406,Civil Engineering +VAL,FOD1P,C,4,2407,2407,Computer Engineering +VAL,FOD1P,C,4,2408,2408,Electrical Engineering +VAL,FOD1P,C,4,2409,2409,Engineering Mechanics Physics And Science +VAL,FOD1P,C,4,2410,2410,Environmental Engineering +VAL,FOD1P,C,4,2411,2411,Geological And Geophysical Engineering +VAL,FOD1P,C,4,2412,2412,Industrial And Manufacturing Engineering +VAL,FOD1P,C,4,2413,2413,Materials Engineering And Materials Science +VAL,FOD1P,C,4,2414,2414,Mechanical Engineering +VAL,FOD1P,C,4,2415,2415,Metallurgical Engineering +VAL,FOD1P,C,4,2416,2416,Mining And Mineral Engineering +VAL,FOD1P,C,4,2417,2417,Naval Architecture And Marine Engineering +VAL,FOD1P,C,4,2418,2418,Nuclear Engineering +VAL,FOD1P,C,4,2419,2419,Petroleum Engineering +VAL,FOD1P,C,4,2499,2499,Miscellaneous Engineering +VAL,FOD1P,C,4,2500,2500,Engineering Technologies +VAL,FOD1P,C,4,2501,2501,Engineering And Industrial Management +VAL,FOD1P,C,4,2502,2502,Electrical Engineering Technology +VAL,FOD1P,C,4,2503,2503,Industrial Production Technologies +VAL,FOD1P,C,4,2504,2504,Mechanical Engineering Related Technologies +VAL,FOD1P,C,4,2599,2599,Miscellaneous Engineering Technologies +VAL,FOD1P,C,4,2601,2601,Linguistics And Comparative Language And Literature +VAL,FOD1P,C,4,2602,2602,French German Latin And Other Common Foreign Language Studies +VAL,FOD1P,C,4,2603,2603,Other Foreign Languages +VAL,FOD1P,C,4,2901,2901,Family And Consumer Sciences +VAL,FOD1P,C,4,3202,3202,Pre-Law And Legal Studies +VAL,FOD1P,C,4,3301,3301,English Language And Literature +VAL,FOD1P,C,4,3302,3302,Composition And Rhetoric +VAL,FOD1P,C,4,3401,3401,Liberal Arts +VAL,FOD1P,C,4,3402,3402,Humanities +VAL,FOD1P,C,4,3501,3501,Library Science +VAL,FOD1P,C,4,3600,3600,Biology +VAL,FOD1P,C,4,3601,3601,Biochemical Sciences +VAL,FOD1P,C,4,3602,3602,Botany +VAL,FOD1P,C,4,3603,3603,Molecular Biology +VAL,FOD1P,C,4,3604,3604,Ecology +VAL,FOD1P,C,4,3605,3605,Genetics +VAL,FOD1P,C,4,3606,3606,Microbiology +VAL,FOD1P,C,4,3607,3607,Pharmacology +VAL,FOD1P,C,4,3608,3608,Physiology +VAL,FOD1P,C,4,3609,3609,Zoology +VAL,FOD1P,C,4,3611,3611,Neuroscience +VAL,FOD1P,C,4,3699,3699,Miscellaneous Biology +VAL,FOD1P,C,4,3700,3700,Mathematics +VAL,FOD1P,C,4,3701,3701,Applied Mathematics +VAL,FOD1P,C,4,3702,3702,Statistics And Decision Science +VAL,FOD1P,C,4,3801,3801,Military Technologies +VAL,FOD1P,C,4,4000,4000,Multi/Interdisciplinary Studies +VAL,FOD1P,C,4,4001,4001,Intercultural And International Studies +VAL,FOD1P,C,4,4002,4002,Nutrition Sciences +VAL,FOD1P,C,4,4005,4005,Mathematics And Computer Science +VAL,FOD1P,C,4,4006,4006,Cognitive Science And Biopsychology +VAL,FOD1P,C,4,4007,4007,Interdisciplinary Social Sciences +VAL,FOD1P,C,4,4009,4009,Data Science and Data Analytics +VAL,FOD1P,C,4,4101,4101,Physical Fitness Parks Recreation And Leisure +VAL,FOD1P,C,4,4801,4801,Philosophy And Religious Studies +VAL,FOD1P,C,4,4901,4901,Theology And Religious Vocations +VAL,FOD1P,C,4,5000,5000,Physical Sciences +VAL,FOD1P,C,4,5001,5001,Astronomy And Astrophysics +VAL,FOD1P,C,4,5002,5002,Atmospheric Sciences And Meteorology +VAL,FOD1P,C,4,5003,5003,Chemistry +VAL,FOD1P,C,4,5004,5004,Geology And Earth Science +VAL,FOD1P,C,4,5005,5005,Geosciences +VAL,FOD1P,C,4,5006,5006,Oceanography +VAL,FOD1P,C,4,5007,5007,Physics +VAL,FOD1P,C,4,5008,5008,Materials Science +VAL,FOD1P,C,4,5098,5098,Multi-Disciplinary Or General Science +VAL,FOD1P,C,4,5102,5102,"Nuclear, Industrial Radiology, And Biological Technologies" +VAL,FOD1P,C,4,5200,5200,Psychology +VAL,FOD1P,C,4,5201,5201,Educational Psychology +VAL,FOD1P,C,4,5202,5202,Clinical Psychology +VAL,FOD1P,C,4,5203,5203,Counseling Psychology +VAL,FOD1P,C,4,5205,5205,Industrial And Organizational Psychology +VAL,FOD1P,C,4,5206,5206,Social Psychology +VAL,FOD1P,C,4,5299,5299,Miscellaneous Psychology +VAL,FOD1P,C,4,5301,5301,Criminal Justice And Fire Protection +VAL,FOD1P,C,4,5401,5401,Public Administration +VAL,FOD1P,C,4,5402,5402,Public Policy +VAL,FOD1P,C,4,5403,5403,Human Services And Community Organization +VAL,FOD1P,C,4,5404,5404,Social Work +VAL,FOD1P,C,4,5500,5500,General Social Sciences +VAL,FOD1P,C,4,5501,5501,Economics +VAL,FOD1P,C,4,5502,5502,Anthropology And Archeology +VAL,FOD1P,C,4,5503,5503,Criminology +VAL,FOD1P,C,4,5504,5504,Geography +VAL,FOD1P,C,4,5505,5505,International Relations +VAL,FOD1P,C,4,5506,5506,Political Science And Government +VAL,FOD1P,C,4,5507,5507,Sociology +VAL,FOD1P,C,4,5599,5599,Miscellaneous Social Sciences +VAL,FOD1P,C,4,5601,5601,Construction Services +VAL,FOD1P,C,4,5701,5701,"Electrical, Mechanical, And Precision Technologies And Production" +VAL,FOD1P,C,4,5901,5901,Transportation Sciences And Technologies +VAL,FOD1P,C,4,6000,6000,Fine Arts +VAL,FOD1P,C,4,6001,6001,Drama And Theater Arts +VAL,FOD1P,C,4,6002,6002,Music +VAL,FOD1P,C,4,6003,6003,Visual And Performing Arts +VAL,FOD1P,C,4,6004,6004,Commercial Art And Graphic Design +VAL,FOD1P,C,4,6005,6005,Film Video And Photographic Arts +VAL,FOD1P,C,4,6006,6006,Art History And Criticism +VAL,FOD1P,C,4,6007,6007,Studio Arts +VAL,FOD1P,C,4,6099,6099,Miscellaneous Fine Arts +VAL,FOD1P,C,4,6100,6100,General Medical And Health Services +VAL,FOD1P,C,4,6102,6102,Communication Disorders Sciences And Services +VAL,FOD1P,C,4,6103,6103,Health And Medical Administrative Services +VAL,FOD1P,C,4,6104,6104,Medical Assisting Services +VAL,FOD1P,C,4,6105,6105,Medical Technologies Technicians +VAL,FOD1P,C,4,6106,6106,Health And Medical Preparatory Programs +VAL,FOD1P,C,4,6107,6107,Nursing +VAL,FOD1P,C,4,6108,6108,Pharmacy Pharmaceutical Sciences And Administration +VAL,FOD1P,C,4,6109,6109,Treatment Therapy Professions +VAL,FOD1P,C,4,6110,6110,Community And Public Health +VAL,FOD1P,C,4,6199,6199,Miscellaneous Health Medical Professions +VAL,FOD1P,C,4,6200,6200,General Business +VAL,FOD1P,C,4,6201,6201,Accounting +VAL,FOD1P,C,4,6202,6202,Actuarial Science +VAL,FOD1P,C,4,6203,6203,Business Management And Administration +VAL,FOD1P,C,4,6204,6204,Operations Logistics And E-Commerce +VAL,FOD1P,C,4,6205,6205,Business Economics +VAL,FOD1P,C,4,6206,6206,Marketing And Marketing Research +VAL,FOD1P,C,4,6207,6207,Finance +VAL,FOD1P,C,4,6209,6209,Human Resources And Personnel Management +VAL,FOD1P,C,4,6210,6210,International Business +VAL,FOD1P,C,4,6211,6211,Hospitality Management +VAL,FOD1P,C,4,6212,6212,Management Information Systems And Statistics +VAL,FOD1P,C,4,6299,6299,Miscellaneous Business And Medical Administration +VAL,FOD1P,C,4,6402,6402,History +VAL,FOD1P,C,4,6403,6403,United States History +NAME,FOD2P,C,4,Recoded field of degree - second entry,, +VAL,FOD2P,C,4,bbbb,bbbb,N/A (less than bachelor's degree) +VAL,FOD2P,C,4,1100,1100,General Agriculture +VAL,FOD2P,C,4,1101,1101,Agriculture Production And Management +VAL,FOD2P,C,4,1102,1102,Agricultural Economics +VAL,FOD2P,C,4,1103,1103,Animal Sciences +VAL,FOD2P,C,4,1104,1104,Food Science +VAL,FOD2P,C,4,1105,1105,Plant Science And Agronomy +VAL,FOD2P,C,4,1106,1106,Soil Science +VAL,FOD2P,C,4,1107,1107,Veterinary Medicine +VAL,FOD2P,C,4,1199,1199,Miscellaneous Agriculture +VAL,FOD2P,C,4,1301,1301,Environmental Science +VAL,FOD2P,C,4,1302,1302,Forestry +VAL,FOD2P,C,4,1303,1303,Natural Resources Management +VAL,FOD2P,C,4,1401,1401,Architecture +VAL,FOD2P,C,4,1501,1501,Area Ethnic And Civilization Studies +VAL,FOD2P,C,4,1901,1901,Communications +VAL,FOD2P,C,4,1902,1902,Journalism +VAL,FOD2P,C,4,1903,1903,Mass Media +VAL,FOD2P,C,4,1904,1904,Advertising And Public Relations +VAL,FOD2P,C,4,2001,2001,Communication Technologies +VAL,FOD2P,C,4,2100,2100,Computer And Information Systems +VAL,FOD2P,C,4,2101,2101,Computer Programming And Data Processing +VAL,FOD2P,C,4,2102,2102,Computer Science +VAL,FOD2P,C,4,2105,2105,Information Sciences +VAL,FOD2P,C,4,2106,2106,Computer Administration Management And Security +VAL,FOD2P,C,4,2107,2107,Computer Networking And Telecommunications +VAL,FOD2P,C,4,2201,2201,Cosmetology Services And Culinary Arts +VAL,FOD2P,C,4,2300,2300,General Education +VAL,FOD2P,C,4,2301,2301,Educational Administration And Supervision +VAL,FOD2P,C,4,2303,2303,School Student Counseling +VAL,FOD2P,C,4,2304,2304,Elementary Education +VAL,FOD2P,C,4,2305,2305,Mathematics Teacher Education +VAL,FOD2P,C,4,2306,2306,Physical And Health Education Teaching +VAL,FOD2P,C,4,2307,2307,Early Childhood Education +VAL,FOD2P,C,4,2308,2308,Science And Computer Teacher Education +VAL,FOD2P,C,4,2309,2309,Secondary Teacher Education +VAL,FOD2P,C,4,2310,2310,Special Needs Education +VAL,FOD2P,C,4,2311,2311,Social Science Or History Teacher Education +VAL,FOD2P,C,4,2312,2312,Teacher Education: Multiple Levels +VAL,FOD2P,C,4,2313,2313,Language And Drama Education +VAL,FOD2P,C,4,2314,2314,Art And Music Education +VAL,FOD2P,C,4,2399,2399,Miscellaneous Education +VAL,FOD2P,C,4,2400,2400,General Engineering +VAL,FOD2P,C,4,2401,2401,Aerospace Engineering +VAL,FOD2P,C,4,2402,2402,Biological Engineering +VAL,FOD2P,C,4,2403,2403,Architectural Engineering +VAL,FOD2P,C,4,2404,2404,Biomedical Engineering +VAL,FOD2P,C,4,2405,2405,Chemical Engineering +VAL,FOD2P,C,4,2406,2406,Civil Engineering +VAL,FOD2P,C,4,2407,2407,Computer Engineering +VAL,FOD2P,C,4,2408,2408,Electrical Engineering +VAL,FOD2P,C,4,2409,2409,Engineering Mechanics Physics And Science +VAL,FOD2P,C,4,2410,2410,Environmental Engineering +VAL,FOD2P,C,4,2411,2411,Geological And Geophysical Engineering +VAL,FOD2P,C,4,2412,2412,Industrial And Manufacturing Engineering +VAL,FOD2P,C,4,2413,2413,Materials Engineering And Materials Science +VAL,FOD2P,C,4,2414,2414,Mechanical Engineering +VAL,FOD2P,C,4,2415,2415,Metallurgical Engineering +VAL,FOD2P,C,4,2416,2416,Mining And Mineral Engineering +VAL,FOD2P,C,4,2417,2417,Naval Architecture And Marine Engineering +VAL,FOD2P,C,4,2418,2418,Nuclear Engineering +VAL,FOD2P,C,4,2419,2419,Petroleum Engineering +VAL,FOD2P,C,4,2499,2499,Miscellaneous Engineering +VAL,FOD2P,C,4,2500,2500,Engineering Technologies +VAL,FOD2P,C,4,2501,2501,Engineering And Industrial Management +VAL,FOD2P,C,4,2502,2502,Electrical Engineering Technology +VAL,FOD2P,C,4,2503,2503,Industrial Production Technologies +VAL,FOD2P,C,4,2504,2504,Mechanical Engineering Related Technologies +VAL,FOD2P,C,4,2599,2599,Miscellaneous Engineering Technologies +VAL,FOD2P,C,4,2601,2601,Linguistics And Comparative Language And Literature +VAL,FOD2P,C,4,2602,2602,French German Latin And Other Common Foreign Language Studies +VAL,FOD2P,C,4,2603,2603,Other Foreign Languages +VAL,FOD2P,C,4,2901,2901,Family And Consumer Sciences +VAL,FOD2P,C,4,3202,3202,Pre-Law And Legal Studies +VAL,FOD2P,C,4,3301,3301,English Language And Literature +VAL,FOD2P,C,4,3302,3302,Composition And Rhetoric +VAL,FOD2P,C,4,3401,3401,Liberal Arts +VAL,FOD2P,C,4,3402,3402,Humanities +VAL,FOD2P,C,4,3501,3501,Library Science +VAL,FOD2P,C,4,3600,3600,Biology +VAL,FOD2P,C,4,3601,3601,Biochemical Sciences +VAL,FOD2P,C,4,3602,3602,Botany +VAL,FOD2P,C,4,3603,3603,Molecular Biology +VAL,FOD2P,C,4,3604,3604,Ecology +VAL,FOD2P,C,4,3605,3605,Genetics +VAL,FOD2P,C,4,3606,3606,Microbiology +VAL,FOD2P,C,4,3607,3607,Pharmacology +VAL,FOD2P,C,4,3608,3608,Physiology +VAL,FOD2P,C,4,3609,3609,Zoology +VAL,FOD2P,C,4,3611,3611,Neuroscience +VAL,FOD2P,C,4,3699,3699,Miscellaneous Biology +VAL,FOD2P,C,4,3700,3700,Mathematics +VAL,FOD2P,C,4,3701,3701,Applied Mathematics +VAL,FOD2P,C,4,3702,3702,Statistics And Decision Science +VAL,FOD2P,C,4,3801,3801,Military Technologies +VAL,FOD2P,C,4,4000,4000,Multi/Interdisciplinary Studies +VAL,FOD2P,C,4,4001,4001,Intercultural And International Studies +VAL,FOD2P,C,4,4002,4002,Nutrition Sciences +VAL,FOD2P,C,4,4005,4005,Mathematics And Computer Science +VAL,FOD2P,C,4,4006,4006,Cognitive Science And Biopsychology +VAL,FOD2P,C,4,4007,4007,Interdisciplinary Social Sciences +VAL,FOD2P,C,4,4009,4009,Data Science and Data Analytics +VAL,FOD2P,C,4,4101,4101,Physical Fitness Parks Recreation And Leisure +VAL,FOD2P,C,4,4801,4801,Philosophy And Religious Studies +VAL,FOD2P,C,4,4901,4901,Theology And Religious Vocations +VAL,FOD2P,C,4,5000,5000,Physical Sciences +VAL,FOD2P,C,4,5001,5001,Astronomy And Astrophysics +VAL,FOD2P,C,4,5002,5002,Atmospheric Sciences And Meteorology +VAL,FOD2P,C,4,5003,5003,Chemistry +VAL,FOD2P,C,4,5004,5004,Geology And Earth Science +VAL,FOD2P,C,4,5005,5005,Geosciences +VAL,FOD2P,C,4,5006,5006,Oceanography +VAL,FOD2P,C,4,5007,5007,Physics +VAL,FOD2P,C,4,5008,5008,Materials Science +VAL,FOD2P,C,4,5098,5098,Multi-Disciplinary Or General Science +VAL,FOD2P,C,4,5102,5102,"Nuclear, Industrial Radiology, And Biological Technologies" +VAL,FOD2P,C,4,5200,5200,Psychology +VAL,FOD2P,C,4,5201,5201,Educational Psychology +VAL,FOD2P,C,4,5202,5202,Clinical Psychology +VAL,FOD2P,C,4,5203,5203,Counseling Psychology +VAL,FOD2P,C,4,5205,5205,Industrial And Organizational Psychology +VAL,FOD2P,C,4,5206,5206,Social Psychology +VAL,FOD2P,C,4,5299,5299,Miscellaneous Psychology +VAL,FOD2P,C,4,5301,5301,Criminal Justice And Fire Protection +VAL,FOD2P,C,4,5401,5401,Public Administration +VAL,FOD2P,C,4,5402,5402,Public Policy +VAL,FOD2P,C,4,5403,5403,Human Services And Community Organization +VAL,FOD2P,C,4,5404,5404,Social Work +VAL,FOD2P,C,4,5500,5500,General Social Sciences +VAL,FOD2P,C,4,5501,5501,Economics +VAL,FOD2P,C,4,5502,5502,Anthropology And Archeology +VAL,FOD2P,C,4,5503,5503,Criminology +VAL,FOD2P,C,4,5504,5504,Geography +VAL,FOD2P,C,4,5505,5505,International Relations +VAL,FOD2P,C,4,5506,5506,Political Science And Government +VAL,FOD2P,C,4,5507,5507,Sociology +VAL,FOD2P,C,4,5599,5599,Miscellaneous Social Sciences +VAL,FOD2P,C,4,5601,5601,Construction Services +VAL,FOD2P,C,4,5701,5701,"Electrical, Mechanical, And Precision Technologies And Production" +VAL,FOD2P,C,4,5901,5901,Transportation Sciences And Technologies +VAL,FOD2P,C,4,6000,6000,Fine Arts +VAL,FOD2P,C,4,6001,6001,Drama And Theater Arts +VAL,FOD2P,C,4,6002,6002,Music +VAL,FOD2P,C,4,6003,6003,Visual And Performing Arts +VAL,FOD2P,C,4,6004,6004,Commercial Art And Graphic Design +VAL,FOD2P,C,4,6005,6005,Film Video And Photographic Arts +VAL,FOD2P,C,4,6006,6006,Art History And Criticism +VAL,FOD2P,C,4,6007,6007,Studio Arts +VAL,FOD2P,C,4,6099,6099,Miscellaneous Fine Arts +VAL,FOD2P,C,4,6100,6100,General Medical And Health Services +VAL,FOD2P,C,4,6102,6102,Communication Disorders Sciences And Services +VAL,FOD2P,C,4,6103,6103,Health And Medical Administrative Services +VAL,FOD2P,C,4,6104,6104,Medical Assisting Services +VAL,FOD2P,C,4,6105,6105,Medical Technologies Technicians +VAL,FOD2P,C,4,6106,6106,Health And Medical Preparatory Programs +VAL,FOD2P,C,4,6107,6107,Nursing +VAL,FOD2P,C,4,6108,6108,Pharmacy Pharmaceutical Sciences And Administration +VAL,FOD2P,C,4,6109,6109,Treatment Therapy Professions +VAL,FOD2P,C,4,6110,6110,Community And Public Health +VAL,FOD2P,C,4,6199,6199,Miscellaneous Health Medical Professions +VAL,FOD2P,C,4,6200,6200,General Business +VAL,FOD2P,C,4,6201,6201,Accounting +VAL,FOD2P,C,4,6202,6202,Actuarial Science +VAL,FOD2P,C,4,6203,6203,Business Management And Administration +VAL,FOD2P,C,4,6204,6204,Operations Logistics And E-Commerce +VAL,FOD2P,C,4,6205,6205,Business Economics +VAL,FOD2P,C,4,6206,6206,Marketing And Marketing Research +VAL,FOD2P,C,4,6207,6207,Finance +VAL,FOD2P,C,4,6209,6209,Human Resources And Personnel Management +VAL,FOD2P,C,4,6210,6210,International Business +VAL,FOD2P,C,4,6211,6211,Hospitality Management +VAL,FOD2P,C,4,6212,6212,Management Information Systems And Statistics +VAL,FOD2P,C,4,6299,6299,Miscellaneous Business And Medical Administration +VAL,FOD2P,C,4,6402,6402,History +VAL,FOD2P,C,4,6403,6403,United States History +NAME,HICOV,C,1,Health insurance coverage recode,, +VAL,HICOV,C,1,1,1,With health insurance coverage +VAL,HICOV,C,1,2,2,No health insurance coverage +NAME,HISP,C,2,Recoded detailed Hispanic origin,, +VAL,HISP,C,2,01,01,Not Spanish/Hispanic/Latino +VAL,HISP,C,2,02,02,Mexican +VAL,HISP,C,2,03,03,Puerto Rican +VAL,HISP,C,2,04,04,Cuban +VAL,HISP,C,2,05,05,Dominican +VAL,HISP,C,2,06,06,Costa Rican +VAL,HISP,C,2,07,07,Guatemalan +VAL,HISP,C,2,08,08,Honduran +VAL,HISP,C,2,09,09,Nicaraguan +VAL,HISP,C,2,10,10,Panamanian +VAL,HISP,C,2,11,11,Salvadoran +VAL,HISP,C,2,12,12,Other Central American +VAL,HISP,C,2,13,13,Argentinean +VAL,HISP,C,2,14,14,Bolivian +VAL,HISP,C,2,15,15,Chilean +VAL,HISP,C,2,16,16,Colombian +VAL,HISP,C,2,17,17,Ecuadorian +VAL,HISP,C,2,18,18,Paraguayan +VAL,HISP,C,2,19,19,Peruvian +VAL,HISP,C,2,20,20,Uruguayan +VAL,HISP,C,2,21,21,Venezuelan +VAL,HISP,C,2,22,22,Other South American +VAL,HISP,C,2,23,23,Spaniard +VAL,HISP,C,2,24,24,All Other Spanish/Hispanic/Latino +NAME,INDP,C,4,Industry recode for 2023 and later based on 2022 IND codes,, +VAL,INDP,C,4,bbbb,bbbb,N/A (less than 16 years old/NILF who last worked more than 5 years ago or never worked) +VAL,INDP,C,4,0170,0170,AGR-Crop Production +VAL,INDP,C,4,0180,0180,AGR-Animal Production And Aquaculture +VAL,INDP,C,4,0190,0190,AGR-Forestry Except Logging +VAL,INDP,C,4,0270,0270,AGR-Logging +VAL,INDP,C,4,0280,0280,"AGR-Fishing, Hunting And Trapping" +VAL,INDP,C,4,0290,0290,AGR-Support Activities For Agriculture And Forestry +VAL,INDP,C,4,0370,0370,EXT-Oil And Gas Extraction +VAL,INDP,C,4,0380,0380,EXT-Coal Mining +VAL,INDP,C,4,0390,0390,EXT-Metal Ore Mining +VAL,INDP,C,4,0470,0470,EXT-Nonmetallic Mineral Mining And Quarrying +VAL,INDP,C,4,0490,0490,EXT-Support Activities For Mining +VAL,INDP,C,4,0570,0570,"UTL-Electric Power Generation, Transmission And Distribution" +VAL,INDP,C,4,0580,0580,UTL-Natural Gas Distribution +VAL,INDP,C,4,0590,0590,"UTL-Electric And Gas, And Other Combinations" +VAL,INDP,C,4,0670,0670,"UTL-Water Supply And Irrigation Systems, And Steam And Air-Conditioning Supply" +VAL,INDP,C,4,0680,0680,UTL-Sewage Treatment Facilities +VAL,INDP,C,4,0690,0690,UTL-Not Specified Utilities +VAL,INDP,C,4,0770,0770,CON-Construction (The Cleaning Of Buildings And Dwellings Is Incidental During Construction And Immediately After Construction) +VAL,INDP,C,4,1070,1070,"MFG-Animal Food, Grain And Oilseed Milling" +VAL,INDP,C,4,1080,1080,MFG-Sugar And Confectionery Products +VAL,INDP,C,4,1090,1090,MFG-Fruit And Vegetable Preserving And Specialty Food +VAL,INDP,C,4,1170,1170,MFG-Dairy Product +VAL,INDP,C,4,1180,1180,MFG-Animal Slaughtering And Processing +VAL,INDP,C,4,1190,1190,MFG-Retail Bakeries +VAL,INDP,C,4,1270,1270,"MFG-Bakeries And Tortilla, Except Retail Bakeries" +VAL,INDP,C,4,1280,1280,"MFG-Seafood And Other Miscellaneous Foods, N.E.C." +VAL,INDP,C,4,1290,1290,MFG-Not Specified Food Industries +VAL,INDP,C,4,1370,1370,MFG-Beverage +VAL,INDP,C,4,1390,1390,MFG-Tobacco +VAL,INDP,C,4,1470,1470,"MFG-Fiber, Yarn, And Thread Mills" +VAL,INDP,C,4,1480,1480,"MFG-Fabric Mills, Except Knit Fabric Mills" +VAL,INDP,C,4,1490,1490,MFG-Textile And Fabric Finishing And Fabric Coating Mills +VAL,INDP,C,4,1570,1570,MFG-Carpet And Rug Mills +VAL,INDP,C,4,1590,1590,"MFG-Textile Product Mills, Except Carpet And Rug" +VAL,INDP,C,4,1670,1670,"MFG-Knit Fabric Mills, And Apparel Knitting Mills" +VAL,INDP,C,4,1691,1691,"MFG-Cut And Sew, And Apparel Accessories And Other Apparel" +VAL,INDP,C,4,1770,1770,MFG-Footwear +VAL,INDP,C,4,1790,1790,"MFG-Leather And Hide Tanning And Finishing, And Other Leather And Allied Product" +VAL,INDP,C,4,1870,1870,"MFG-Pulp, Paper, And Paperboard Mills" +VAL,INDP,C,4,1880,1880,MFG-Paperboard Container +VAL,INDP,C,4,1890,1890,MFG-Miscellaneous Paper And Pulp Products +VAL,INDP,C,4,1990,1990,MFG-Printing And Related Support Activities +VAL,INDP,C,4,2070,2070,MFG-Petroleum Refineries +VAL,INDP,C,4,2090,2090,"MFG-Petroleum And Coal Products Manufacturing, Except Petroleum Refineries" +VAL,INDP,C,4,2170,2170,"MFG-Resin, Synthetic Rubber, And Artificial And Synthetic Fibers And Filaments" +VAL,INDP,C,4,2180,2180,"MFG-Pesticide, Fertilizer, And Other Agricultural Chemical" +VAL,INDP,C,4,2190,2190,MFG-Pharmaceutical And Medicine +VAL,INDP,C,4,2270,2270,"MFG-Paint, Coating, And Adhesive" +VAL,INDP,C,4,2280,2280,"MFG-Soap, Cleaning Compound, And Toilet Preparation" +VAL,INDP,C,4,2290,2290,"MFG-Basic Chemical, And Other Chemical Product And Preparation Chemicals" +VAL,INDP,C,4,2370,2370,MFG-Plastics Product +VAL,INDP,C,4,2380,2380,MFG-Tire +VAL,INDP,C,4,2390,2390,"MFG-Rubber Products, Except Tires" +VAL,INDP,C,4,2470,2470,"MFG-Pottery, Ceramics, And Plumbing Fixture" +VAL,INDP,C,4,2480,2480,MFG-Clay Building Material And Refractories +VAL,INDP,C,4,2490,2490,MFG-Glass And Glass Product +VAL,INDP,C,4,2570,2570,"MFG-Cement, Concrete, Lime, And Gypsum Product" +VAL,INDP,C,4,2590,2590,MFG-Other Nonmetallic Mineral Product +VAL,INDP,C,4,2670,2670,MFG-Iron And Steel Mills And Steel Product +VAL,INDP,C,4,2680,2680,MFG-Alumina And Aluminum Production And Processing +VAL,INDP,C,4,2690,2690,MFG-Nonferrous Metal (Except Aluminum) Production And Processing +VAL,INDP,C,4,2770,2770,MFG-Foundries +VAL,INDP,C,4,2780,2780,MFG-Forgings And Stampings +VAL,INDP,C,4,2790,2790,MFG-Cutlery And Handtool +VAL,INDP,C,4,2870,2870,"MFG-Architectural And Structural Metals, And Boiler, Tank, And Shipping Container" +VAL,INDP,C,4,2880,2880,"MFG-Machine Shops; Turned Product; Screw, Nut, And Bolt" +VAL,INDP,C,4,2890,2890,"MFG-Coating, Engraving, Heat Treating, And Allied Activities" +VAL,INDP,C,4,2970,2970,MFG-Ordnance +VAL,INDP,C,4,2980,2980,MFG-Miscellaneous Fabricated Metal Product +VAL,INDP,C,4,2990,2990,MFG-Not Specified Metal Industries +VAL,INDP,C,4,3070,3070,MFG-Agricultural Implement +VAL,INDP,C,4,3080,3080,"MFG-Construction, And Mining And Oil And Gas Field Machinery" +VAL,INDP,C,4,3095,3095,MFG-Commercial And Service Industry Machinery +VAL,INDP,C,4,3170,3170,MFG-Metalworking Machinery +VAL,INDP,C,4,3180,3180,"MFG-Engine, Turbine, And Power Transmission Equipment" +VAL,INDP,C,4,3291,3291,"MFG-Machinery, N.E.C. Or Not Specified" +VAL,INDP,C,4,3365,3365,MFG-Computer And Peripheral Equipment +VAL,INDP,C,4,3370,3370,"MFG-Communications, Audio, And Video Equipment" +VAL,INDP,C,4,3380,3380,"MFG-Navigational, Measuring, Electromedical, And Control Instruments" +VAL,INDP,C,4,3390,3390,"MFG-Semiconductor, Magnetic And Optical Media, And Other Electronic Component" +VAL,INDP,C,4,3470,3470,MFG-Household Appliance +VAL,INDP,C,4,3490,3490,"MFG-Electric Lighting And Electrical Equipment, And Other Electrical Component, N.E.C." +VAL,INDP,C,4,3570,3570,MFG-Motor Vehicles And Motor Vehicle Equipment +VAL,INDP,C,4,3580,3580,"MFG-Aircraft, Aircraft Engine, And Aircraft Parts" +VAL,INDP,C,4,3590,3590,MFG-Guided Missile And Space Vehicle And Parts +VAL,INDP,C,4,3670,3670,MFG-Railroad Rolling Stock +VAL,INDP,C,4,3680,3680,MFG-Ship And Boat Building +VAL,INDP,C,4,3690,3690,MFG-Other Transportation Equipment +VAL,INDP,C,4,3770,3770,MFG-Sawmills And Wood Preservation +VAL,INDP,C,4,3780,3780,"MFG-Veneer, Plywood, And Engineered Wood Product" +VAL,INDP,C,4,3790,3790,MFG-Manufactured Home (Mobile Home) And Prefabricated Wood Building +VAL,INDP,C,4,3875,3875,MFG-Miscellaneous Wood Product +VAL,INDP,C,4,3895,3895,MFG-Furniture And Related Product +VAL,INDP,C,4,3960,3960,MFG-Medical Equipment And Supplies +VAL,INDP,C,4,3970,3970,"MFG-Sporting And Athletic Goods, And Doll, Toy And Game" +VAL,INDP,C,4,3980,3980,"MFG-Miscellaneous Manufacturing, N.E.C." +VAL,INDP,C,4,3990,3990,MFG-Not Specified Manufacturing Industries +VAL,INDP,C,4,4070,4070,WHL-Motor Vehicle And Motor Vehicle Parts And Supplies Merchant Wholesalers +VAL,INDP,C,4,4080,4080,WHL-Furniture And Home Furnishing Merchant Wholesalers +VAL,INDP,C,4,4090,4090,WHL-Lumber And Other Construction Materials Merchant Wholesalers +VAL,INDP,C,4,4170,4170,WHL-Professional And Commercial Equipment And Supplies Merchant Wholesalers +VAL,INDP,C,4,4180,4180,"WHL-Metal And Mineral, Except Petroleum, Merchant Wholesalers" +VAL,INDP,C,4,4195,4195,WHL-Household Appliances And Electrical And Electronic Goods Merchant Wholesalers +VAL,INDP,C,4,4265,4265,"WHL-Hardware, And Plumbing And Heating Equipment, And Supplies Merchant Wholesalers" +VAL,INDP,C,4,4270,4270,"WHL-Machinery, Equipment, And Supplies Merchant Wholesalers" +VAL,INDP,C,4,4280,4280,WHL-Recyclable Material Merchant Wholesalers +VAL,INDP,C,4,4290,4290,"WHL-Miscellaneous Durable Goods, Except Recyclable Material, Merchant Wholesalers" +VAL,INDP,C,4,4370,4370,WHL-Paper And Paper Product Merchant Wholesalers +VAL,INDP,C,4,4380,4380,"WHL-Drugs, Druggists' Sundries, And Chemical And Allied Products Merchant Wholesalers" +VAL,INDP,C,4,4390,4390,"WHL-Apparel, Piece Goods, And Notions Merchant Wholesalers" +VAL,INDP,C,4,4470,4470,WHL-Grocery And Related Product Merchant Wholesalers +VAL,INDP,C,4,4480,4480,WHL-Farm Product Raw Material Merchant Wholesalers +VAL,INDP,C,4,4490,4490,WHL-Petroleum And Petroleum Products Merchant Wholesalers +VAL,INDP,C,4,4560,4560,"WHL-Beer, Wine, And Distilled Alcoholic Beverage Merchant Wholesalers" +VAL,INDP,C,4,4570,4570,WHL-Farm Supplies Merchant Wholesalers +VAL,INDP,C,4,4580,4580,"WHL-Miscellaneous Nondurable Goods Merchant, Except Farm Supplies, Wholesalers" +VAL,INDP,C,4,4585,4585,WHL-Wholesale Trade Agents And Brokers +VAL,INDP,C,4,4590,4590,WHL-Not Specified Wholesale Trade +VAL,INDP,C,4,4670,4670,RET-Automobile Dealers +VAL,INDP,C,4,4681,4681,RET-Other Motor Vehicle Dealers +VAL,INDP,C,4,4691,4691,"RET-Automotive Parts, Accessories, And Tire Retailers" +VAL,INDP,C,4,4771,4771,RET-Furniture And Home Furnishings Retailers +VAL,INDP,C,4,4796,4796,RET-Electronics And Appliance Retailers +VAL,INDP,C,4,4871,4871,"RET-Building Material And Supplies Dealers, Except Hardware Retailers" +VAL,INDP,C,4,4881,4881,RET-Hardware Retailers +VAL,INDP,C,4,4891,4891,RET-Lawn And Garden Equipment And Supplies Retailers +VAL,INDP,C,4,4971,4971,RET-Supermarkets And Other Grocery (Except Convenience) Retailers +VAL,INDP,C,4,4973,4973,RET-Convenience Retailers And Vending Machine Operators +VAL,INDP,C,4,4981,4981,RET-Specialty Food Retailers +VAL,INDP,C,4,4991,4991,"RET-Beer, Wine, And Liquor Retailers" +VAL,INDP,C,4,5071,5071,RET-Pharmacies And Drug Retailers +VAL,INDP,C,4,5081,5081,"RET-Health And Personal Care, Except Pharmacies And Drug, Retailers" +VAL,INDP,C,4,5090,5090,RET-Gasoline Stations +VAL,INDP,C,4,5171,5171,RET-Clothing And Clothing Accessories Retailers +VAL,INDP,C,4,5181,5181,RET-Shoe Retailers +VAL,INDP,C,4,5191,5191,"RET-Jewelry, Luggage, And Leather Goods Retailers" +VAL,INDP,C,4,5276,5276,"RET-Sporting Goods, And Hobby, Toy, And Game Retailers" +VAL,INDP,C,4,5281,5281,"RET-Sewing, Needlework, And Piece Goods Retailers" +VAL,INDP,C,4,5296,5296,RET-Musical Instrument And Supplies Retailers +VAL,INDP,C,4,5371,5371,RET-Book Retailers And News Dealers +VAL,INDP,C,4,5382,5382,RET-Department Stores +VAL,INDP,C,4,5392,5392,"RET-Warehouse Clubs, Supercenters, And Other General Merchandise Retailers" +VAL,INDP,C,4,5471,5471,RET-Florists +VAL,INDP,C,4,5481,5481,RET-Office Supplies And Stationery Retailers +VAL,INDP,C,4,5491,5491,RET-Used Merchandise Retailers +VAL,INDP,C,4,5571,5571,"RET-Gift, Novelty, And Souvenir Retailers" +VAL,INDP,C,4,5581,5581,RET-Other Miscellaneous Retailers +VAL,INDP,C,4,5680,5680,RET-Fuel Dealers +VAL,INDP,C,4,5791,5791,RET-Not Specified Retail Trade +VAL,INDP,C,4,6070,6070,TRN-Air Transportation +VAL,INDP,C,4,6080,6080,TRN-Rail Transportation +VAL,INDP,C,4,6090,6090,TRN-Water Transportation +VAL,INDP,C,4,6170,6170,TRN-Truck Transportation +VAL,INDP,C,4,6180,6180,"TRN-Transit And Ground Passenger Transportation, Except Taxi And Limousine Service" +VAL,INDP,C,4,6190,6190,TRN-Taxi And Limousine Service +VAL,INDP,C,4,6270,6270,TRN-Pipeline Transportation +VAL,INDP,C,4,6280,6280,TRN-Scenic And Sightseeing Transportation +VAL,INDP,C,4,6290,6290,TRN-Support Activities For Transportation +VAL,INDP,C,4,6370,6370,TRN-Postal Service +VAL,INDP,C,4,6380,6380,TRN-Couriers And Messengers +VAL,INDP,C,4,6390,6390,TRN-Warehousing And Storage +VAL,INDP,C,4,6471,6471,INF-Newspaper Publishers +VAL,INDP,C,4,6481,6481,"INF-Periodical, Book, And Directory And Mailing List, And Other Publishers" +VAL,INDP,C,4,6490,6490,INF-Software Publishers +VAL,INDP,C,4,6570,6570,INF-Motion Pictures And Video Industries +VAL,INDP,C,4,6590,6590,INF-Sound Recording Industries +VAL,INDP,C,4,6671,6671,INF-Broadcasting And Content Providers +VAL,INDP,C,4,6680,6680,INF-Wired Telecommunications Carriers +VAL,INDP,C,4,6690,6690,"INF-Telecommunications, Except Wired Telecommunications Carriers" +VAL,INDP,C,4,6695,6695,"INF-Computing Infrastructure Providers, Data Processing, Web Hosting, And Related Services" +VAL,INDP,C,4,6770,6770,INF-Libraries And Archives +VAL,INDP,C,4,6781,6781,INF-Web Search Portals And All Other Information Services +VAL,INDP,C,4,6871,6871,"FIN-Monetary Authorities-Central Bank, And Commerical Banking" +VAL,INDP,C,4,6881,6881,"FIN-Credit Unions, And Savings Institutions And Other Depository Credit Intermediation" +VAL,INDP,C,4,6890,6890,FIN-Nondepository Credit Intermediation And Related Activities +VAL,INDP,C,4,6970,6970,"FIN-Securities, Commodities, Funds, Trusts, And Other Financial Investments" +VAL,INDP,C,4,6991,6991,FIN-Insurance Carriers +VAL,INDP,C,4,6992,6992,"FIN-Agencies, Brokerages, And Other Insurance Related Activities" +VAL,INDP,C,4,7071,7071,"FIN-Lessors Of Real Estate, And Offices Of Real Estate Agents And Brokers" +VAL,INDP,C,4,7072,7072,FIN-Activities Related To Real Estate +VAL,INDP,C,4,7080,7080,FIN-Automotive Equipment Rental And Leasing +VAL,INDP,C,4,7181,7181,"FIN-Consumer Goods Rental, And General Rental Centers" +VAL,INDP,C,4,7190,7190,"FIN-Commercial And Industrial Machinery and Equipment, And Nonfinancial Assets Rental And Leasing" +VAL,INDP,C,4,7270,7270,PRF-Legal Services +VAL,INDP,C,4,7280,7280,"PRF-Accounting, Tax Preparation, Bookkeeping, And Payroll Services" +VAL,INDP,C,4,7290,7290,"PRF-Architectural, Engineering, And Related Services" +VAL,INDP,C,4,7370,7370,PRF-Specialized Design Services +VAL,INDP,C,4,7380,7380,PRF-Computer Systems Design And Related Services +VAL,INDP,C,4,7390,7390,"PRF-Management, Scientific, And Technical Consulting Services" +VAL,INDP,C,4,7460,7460,PRF-Scientific Research And Development Services +VAL,INDP,C,4,7470,7470,"PRF-Advertising, Public Relations, And Related Services" +VAL,INDP,C,4,7480,7480,PRF-Veterinary Services +VAL,INDP,C,4,7490,7490,"PRF-Other Professional, Scientific, And Technical, Except Veterinary, Services" +VAL,INDP,C,4,7570,7570,PRF-Management Of Companies And Enterprises +VAL,INDP,C,4,7580,7580,PRF-Employment Services +VAL,INDP,C,4,7590,7590,PRF-Business Support Services +VAL,INDP,C,4,7670,7670,PRF-Travel Arrangements And Reservation Services +VAL,INDP,C,4,7680,7680,PRF-Investigation And Security Services +VAL,INDP,C,4,7690,7690,"PRF-Services To Buildings And Dwellings, Except Landscaping Services" +VAL,INDP,C,4,7770,7770,PRF-Landscaping Services +VAL,INDP,C,4,7780,7780,PRF-Other Administrative And Other Support Services +VAL,INDP,C,4,7790,7790,PRF-Waste Management And Remediation Services +VAL,INDP,C,4,7860,7860,EDU-Elementary And Secondary Schools +VAL,INDP,C,4,7870,7870,"EDU-Junior Colleges, Colleges, Universities, And Professional Schools" +VAL,INDP,C,4,7880,7880,"EDU-Business, Trade And Technical Schools, And Computer And Management Training" +VAL,INDP,C,4,7890,7890,"EDU-Other Schools And Instruction, And Educational Support Services" +VAL,INDP,C,4,7970,7970,MED-Offices Of Physicians +VAL,INDP,C,4,7980,7980,MED-Offices Of Dentists +VAL,INDP,C,4,7990,7990,MED-Offices Of Chiropractors +VAL,INDP,C,4,8070,8070,MED-Offices Of Optometrists +VAL,INDP,C,4,8080,8080,MED-Offices Of Other Health Practitioners +VAL,INDP,C,4,8090,8090,MED-Outpatient Care Centers +VAL,INDP,C,4,8170,8170,MED-Home Health Care Services +VAL,INDP,C,4,8180,8180,MED-Other Health Care Services +VAL,INDP,C,4,8191,8191,"MED-General Medical And Surgical Hospitals, And Specialty (Except Psychiatric And Substance Abuse) Hospitals" +VAL,INDP,C,4,8192,8192,MED-Psychiatric And Substance Abuse Hospitals +VAL,INDP,C,4,8270,8270,MED-Nursing Care Facilities (Skilled Nursing Facilities) +VAL,INDP,C,4,8290,8290,"MED-Residential Care Facilities, Except Skilled Nursing Facilities" +VAL,INDP,C,4,8370,8370,SCA-Individual And Family Services +VAL,INDP,C,4,8380,8380,"SCA-Community Food And Housing, And Emergency And Other Relief Services" +VAL,INDP,C,4,8390,8390,SCA-Vocational Rehabilitation Services +VAL,INDP,C,4,8470,8470,SCA-Child Care Services +VAL,INDP,C,4,8561,8561,ENT-Performing Arts Companies +VAL,INDP,C,4,8562,8562,ENT-Spectator Sports +VAL,INDP,C,4,8563,8563,"ENT-Promoters Of Performing Arts, Sports, And Similar Events, Agents And Managers For Artists, Athletes, Entertainers, And Other Public Figures" +VAL,INDP,C,4,8564,8564,"ENT-Independent Artists, Writers, And Performers" +VAL,INDP,C,4,8570,8570,"ENT-Museums, Historical Sites, And Similar Institutions" +VAL,INDP,C,4,8580,8580,ENT-Bowling Centers +VAL,INDP,C,4,8590,8590,"ENT-Other Amusement, Gambling, And Recreation Industries" +VAL,INDP,C,4,8660,8660,ENT-Traveler Accommodation +VAL,INDP,C,4,8670,8670,"ENT-Recreational Vehicle Parks And Camps, And Rooming And Boarding Houses, Dormitories, And Workers' Camps" +VAL,INDP,C,4,8680,8680,"ENT-Food Services And Drinking Places, except Alcoholic Beverages" +VAL,INDP,C,4,8690,8690,ENT-Drinking Places (Alcoholic Beverages) +VAL,INDP,C,4,8770,8770,"SRV-Automotive Repair And Maintenance, Except Car Washes" +VAL,INDP,C,4,8780,8780,SRV-Car Washes +VAL,INDP,C,4,8790,8790,SRV-Electronic And Precision Equipment Repair And Maintenance +VAL,INDP,C,4,8870,8870,SRV-Commercial And Industrial Machinery And Equipment Repair And Maintenance +VAL,INDP,C,4,8891,8891,SRV-Personal And Household Goods Repair And Maintenance +VAL,INDP,C,4,8970,8970,SRV-Barber Shops +VAL,INDP,C,4,8980,8980,SRV-Beauty Salons +VAL,INDP,C,4,8990,8990,SRV-Nail Salons And Other Personal Care Services +VAL,INDP,C,4,9070,9070,SRV-Drycleaning And Laundry Services +VAL,INDP,C,4,9080,9080,SRV-Death Care Services +VAL,INDP,C,4,9090,9090,SRV-Other Personal Services +VAL,INDP,C,4,9160,9160,SRV-Religious Organizations +VAL,INDP,C,4,9170,9170,"SRV-Civic, Social, Advocacy Organizations, And Grantmaking And Giving Services" +VAL,INDP,C,4,9180,9180,SRV-Labor Unions And Similar Labor Organizations +VAL,INDP,C,4,9190,9190,"SRV-Business, Professional, Political, And Similar Organizations" +VAL,INDP,C,4,9290,9290,SRV-Private Households +VAL,INDP,C,4,9370,9370,ADM-Executive Offices And Legislative Bodies +VAL,INDP,C,4,9380,9380,ADM-Public Finance Activities +VAL,INDP,C,4,9390,9390,ADM-Other General Government And Support +VAL,INDP,C,4,9470,9470,"ADM-Justice, Public Order, And Safety Activities" +VAL,INDP,C,4,9480,9480,ADM-Administration Of Human Resource Programs +VAL,INDP,C,4,9490,9490,"ADM-Administration Of Environmental Quality, And Housing Programs, Urban Planning And Community Development" +VAL,INDP,C,4,9570,9570,ADM-Administration Of Economic Programs And Space Research And Technology +VAL,INDP,C,4,9590,9590,ADM-National Security And International Affairs +VAL,INDP,C,4,9670,9670,MIL-U.S. Army +VAL,INDP,C,4,9680,9680,MIL-U.S. Air Force +VAL,INDP,C,4,9690,9690,MIL-U.S. Navy +VAL,INDP,C,4,9770,9770,MIL-U.S. Marines +VAL,INDP,C,4,9780,9780,MIL-U.S. Coast Guard +VAL,INDP,C,4,9790,9790,"MIL-Armed Forces, Branch Not Specified" +VAL,INDP,C,4,9870,9870,MIL-Military Reserves Or National Guard +VAL,INDP,C,4,9920,9920,"Unemployed, With No Work Experience In The Last 5 Years Or Earlier Or Never Worked" +NAME,JWAP,C,3,Time of arrival at work - hour and minute,, +VAL,JWAP,C,3,bbb,bbb,N/A (not a worker; worker who worked from home) +VAL,JWAP,C,3,001,001,12:00 a.m. to 12:04 a.m. +VAL,JWAP,C,3,002,002,12:05 a.m. to 12:09 a.m. +VAL,JWAP,C,3,003,003,12:10 a.m. to 12:14 a.m. +VAL,JWAP,C,3,004,004,12:15 a.m. to 12:19 a.m. +VAL,JWAP,C,3,005,005,12:20 a.m. to 12:24 a.m. +VAL,JWAP,C,3,006,006,12:25 a.m. to 12:29 a.m. +VAL,JWAP,C,3,007,007,12:30 a.m. to 12:39 a.m. +VAL,JWAP,C,3,008,008,12:40 a.m. to 12:44 a.m. +VAL,JWAP,C,3,009,009,12:45 a.m. to 12:49 a.m. +VAL,JWAP,C,3,010,010,12:50 a.m. to 12:59 a.m. +VAL,JWAP,C,3,011,011,1:00 a.m. to 1:04 a.m. +VAL,JWAP,C,3,012,012,1:05 a.m. to 1:09 a.m. +VAL,JWAP,C,3,013,013,1:10 a.m. to 1:14 a.m. +VAL,JWAP,C,3,014,014,1:15 a.m. to 1:19 a.m. +VAL,JWAP,C,3,015,015,1:20 a.m. to 1:24 a.m. +VAL,JWAP,C,3,016,016,1:25 a.m. to 1:29 a.m. +VAL,JWAP,C,3,017,017,1:30 a.m. to 1:34 a.m. +VAL,JWAP,C,3,018,018,1:35 a.m. to 1:39 a.m. +VAL,JWAP,C,3,019,019,1:40 a.m. to 1:44 a.m. +VAL,JWAP,C,3,020,020,1:45 a.m. to 1:49 a.m. +VAL,JWAP,C,3,021,021,1:50 a.m. to 1:59 a.m. +VAL,JWAP,C,3,022,022,2:00 a.m. to 2:04 a.m. +VAL,JWAP,C,3,023,023,2:05 a.m. to 2:09 a.m. +VAL,JWAP,C,3,024,024,2:10 a.m. to 2:14 a.m. +VAL,JWAP,C,3,025,025,2:15 a.m. to 2:19 a.m. +VAL,JWAP,C,3,026,026,2:20 a.m. to 2:24 a.m. +VAL,JWAP,C,3,027,027,2:25 a.m. to 2:29 a.m. +VAL,JWAP,C,3,028,028,2:30 a.m. to 2:34 a.m. +VAL,JWAP,C,3,029,029,2:35 a.m. to 2:39 a.m. +VAL,JWAP,C,3,030,030,2:40 a.m. to 2:44 a.m. +VAL,JWAP,C,3,031,031,2:45 a.m. to 2:49 a.m. +VAL,JWAP,C,3,032,032,2:50 a.m. to 2:54 a.m. +VAL,JWAP,C,3,033,033,2:55 a.m. to 2:59 a.m. +VAL,JWAP,C,3,034,034,3:00 a.m. to 3:04 a.m. +VAL,JWAP,C,3,035,035,3:05 a.m. to 3:09 a.m. +VAL,JWAP,C,3,036,036,3:10 a.m. to 3:14 a.m. +VAL,JWAP,C,3,037,037,3:15 a.m. to 3:19 a.m. +VAL,JWAP,C,3,038,038,3:20 a.m. to 3:24 a.m. +VAL,JWAP,C,3,039,039,3:25 a.m. to 3:29 a.m. +VAL,JWAP,C,3,040,040,3:30 a.m. to 3:34 a.m. +VAL,JWAP,C,3,041,041,3:35 a.m. to 3:39 a.m. +VAL,JWAP,C,3,042,042,3:40 a.m. to 3:44 a.m. +VAL,JWAP,C,3,043,043,3:45 a.m. to 3:49 a.m. +VAL,JWAP,C,3,044,044,3:50 a.m. to 3:54 a.m. +VAL,JWAP,C,3,045,045,3:55 a.m. to 3:59 a.m. +VAL,JWAP,C,3,046,046,4:00 a.m. to 4:04 a.m. +VAL,JWAP,C,3,047,047,4:05 a.m. to 4:09 a.m. +VAL,JWAP,C,3,048,048,4:10 a.m. to 4:14 a.m. +VAL,JWAP,C,3,049,049,4:15 a.m. to 4:19 a.m. +VAL,JWAP,C,3,050,050,4:20 a.m. to 4:24 a.m. +VAL,JWAP,C,3,051,051,4:25 a.m. to 4:29 a.m. +VAL,JWAP,C,3,052,052,4:30 a.m. to 4:34 a.m. +VAL,JWAP,C,3,053,053,4:35 a.m. to 4:39 a.m. +VAL,JWAP,C,3,054,054,4:40 a.m. to 4:44 a.m. +VAL,JWAP,C,3,055,055,4:45 a.m. to 4:49 a.m. +VAL,JWAP,C,3,056,056,4:50 a.m. to 4:54 a.m. +VAL,JWAP,C,3,057,057,4:55 a.m. to 4:59 a.m. +VAL,JWAP,C,3,058,058,5:00 a.m. to 5:04 a.m. +VAL,JWAP,C,3,059,059,5:05 a.m. to 5:09 a.m. +VAL,JWAP,C,3,060,060,5:10 a.m. to 5:14 a.m. +VAL,JWAP,C,3,061,061,5:15 a.m. to 5:19 a.m. +VAL,JWAP,C,3,062,062,5:20 a.m. to 5:24 a.m. +VAL,JWAP,C,3,063,063,5:25 a.m. to 5:29 a.m. +VAL,JWAP,C,3,064,064,5:30 a.m. to 5:34 a.m. +VAL,JWAP,C,3,065,065,5:35 a.m. to 5:39 a.m. +VAL,JWAP,C,3,066,066,5:40 a.m. to 5:44 a.m. +VAL,JWAP,C,3,067,067,5:45 a.m. to 5:49 a.m. +VAL,JWAP,C,3,068,068,5:50 a.m. to 5:54 a.m. +VAL,JWAP,C,3,069,069,5:55 a.m. to 5:59 a.m. +VAL,JWAP,C,3,070,070,6:00 a.m. to 6:04 a.m. +VAL,JWAP,C,3,071,071,6:05 a.m. to 6:09 a.m. +VAL,JWAP,C,3,072,072,6:10 a.m. to 6:14 a.m. +VAL,JWAP,C,3,073,073,6:15 a.m. to 6:19 a.m. +VAL,JWAP,C,3,074,074,6:20 a.m. to 6:24 a.m. +VAL,JWAP,C,3,075,075,6:25 a.m. to 6:29 a.m. +VAL,JWAP,C,3,076,076,6:30 a.m. to 6:34 a.m. +VAL,JWAP,C,3,077,077,6:35 a.m. to 6:39 a.m. +VAL,JWAP,C,3,078,078,6:40 a.m. to 6:44 a.m. +VAL,JWAP,C,3,079,079,6:45 a.m. to 6:49 a.m. +VAL,JWAP,C,3,080,080,6:50 a.m. to 6:54 a.m. +VAL,JWAP,C,3,081,081,6:55 a.m. to 6:59 a.m. +VAL,JWAP,C,3,082,082,7:00 a.m. to 7:04 a.m. +VAL,JWAP,C,3,083,083,7:05 a.m. to 7:09 a.m. +VAL,JWAP,C,3,084,084,7:10 a.m. to 7:14 a.m. +VAL,JWAP,C,3,085,085,7:15 a.m. to 7:19 a.m. +VAL,JWAP,C,3,086,086,7:20 a.m. to 7:24 a.m. +VAL,JWAP,C,3,087,087,7:25 a.m. to 7:29 a.m. +VAL,JWAP,C,3,088,088,7:30 a.m. to 7:34 a.m. +VAL,JWAP,C,3,089,089,7:35 a.m. to 7:39 a.m. +VAL,JWAP,C,3,090,090,7:40 a.m. to 7:44 a.m. +VAL,JWAP,C,3,091,091,7:45 a.m. to 7:49 a.m. +VAL,JWAP,C,3,092,092,7:50 a.m. to 7:54 a.m. +VAL,JWAP,C,3,093,093,7:55 a.m. to 7:59 a.m. +VAL,JWAP,C,3,094,094,8:00 a.m. to 8:04 a.m. +VAL,JWAP,C,3,095,095,8:05 a.m. to 8:09 a.m. +VAL,JWAP,C,3,096,096,8:10 a.m. to 8:14 a.m. +VAL,JWAP,C,3,097,097,8:15 a.m. to 8:19 a.m. +VAL,JWAP,C,3,098,098,8:20 a.m. to 8:24 a.m. +VAL,JWAP,C,3,099,099,8:25 a.m. to 8:29 a.m. +VAL,JWAP,C,3,100,100,8:30 a.m. to 8:34 a.m. +VAL,JWAP,C,3,101,101,8:35 a.m. to 8:39 a.m. +VAL,JWAP,C,3,102,102,8:40 a.m. to 8:44 a.m. +VAL,JWAP,C,3,103,103,8:45 a.m. to 8:49 a.m. +VAL,JWAP,C,3,104,104,8:50 a.m. to 8:54 a.m. +VAL,JWAP,C,3,105,105,8:55 a.m. to 8:59 a.m. +VAL,JWAP,C,3,106,106,9:00 a.m. to 9:04 a.m. +VAL,JWAP,C,3,107,107,9:05 a.m. to 9:09 a.m. +VAL,JWAP,C,3,108,108,9:10 a.m. to 9:14 a.m. +VAL,JWAP,C,3,109,109,9:15 a.m. to 9:19 a.m. +VAL,JWAP,C,3,110,110,9:20 a.m. to 9:24 a.m. +VAL,JWAP,C,3,111,111,9:25 a.m. to 9:29 a.m. +VAL,JWAP,C,3,112,112,9:30 a.m. to 9:34 a.m. +VAL,JWAP,C,3,113,113,9:35 a.m. to 9:39 a.m. +VAL,JWAP,C,3,114,114,9:40 a.m. to 9:44 a.m. +VAL,JWAP,C,3,115,115,9:45 a.m. to 9:49 a.m. +VAL,JWAP,C,3,116,116,9:50 a.m. to 9:54 a.m. +VAL,JWAP,C,3,117,117,9:55 a.m. to 9:59 a.m. +VAL,JWAP,C,3,118,118,10:00 a.m. to 10:04 a.m. +VAL,JWAP,C,3,119,119,10:05 a.m. to 10:09 a.m. +VAL,JWAP,C,3,120,120,10:10 a.m. to 10:14 a.m. +VAL,JWAP,C,3,121,121,10:15 a.m. to 10:19 a.m. +VAL,JWAP,C,3,122,122,10:20 a.m. to 10:24 a.m. +VAL,JWAP,C,3,123,123,10:25 a.m. to 10:29 a.m. +VAL,JWAP,C,3,124,124,10:30 a.m. to 10:34 a.m. +VAL,JWAP,C,3,125,125,10:35 a.m. to 10:39 a.m. +VAL,JWAP,C,3,126,126,10:40 a.m. to 10:44 a.m. +VAL,JWAP,C,3,127,127,10:45 a.m. to 10:49 a.m. +VAL,JWAP,C,3,128,128,10:50 a.m. to 10:54 a.m. +VAL,JWAP,C,3,129,129,10:55 a.m. to 10:59 a.m. +VAL,JWAP,C,3,130,130,11:00 a.m. to 11:04 a.m. +VAL,JWAP,C,3,131,131,11:05 a.m. to 11:09 a.m. +VAL,JWAP,C,3,132,132,11:10 a.m. to 11:14 a.m. +VAL,JWAP,C,3,133,133,11:15 a.m. to 11:19 a.m. +VAL,JWAP,C,3,134,134,11:20 a.m. to 11:24 a.m. +VAL,JWAP,C,3,135,135,11:25 a.m. to 11:29 a.m. +VAL,JWAP,C,3,136,136,11:30 a.m. to 11:34 a.m. +VAL,JWAP,C,3,137,137,11:35 a.m. to 11:39 a.m. +VAL,JWAP,C,3,138,138,11:40 a.m. to 11:44 a.m. +VAL,JWAP,C,3,139,139,11:45 a.m. to 11:49 a.m. +VAL,JWAP,C,3,140,140,11:50 a.m. to 11:54 a.m. +VAL,JWAP,C,3,141,141,11:55 a.m. to 11:59 a.m. +VAL,JWAP,C,3,142,142,12:00 p.m. to 12:04 p.m. +VAL,JWAP,C,3,143,143,12:05 p.m. to 12:09 p.m. +VAL,JWAP,C,3,144,144,12:10 p.m. to 12:14 p.m. +VAL,JWAP,C,3,145,145,12:15 p.m. to 12:19 p.m. +VAL,JWAP,C,3,146,146,12:20 p.m. to 12:24 p.m. +VAL,JWAP,C,3,147,147,12:25 p.m. to 12:29 p.m. +VAL,JWAP,C,3,148,148,12:30 p.m. to 12:34 p.m. +VAL,JWAP,C,3,149,149,12:35 p.m. to 12:39 p.m. +VAL,JWAP,C,3,150,150,12:40 p.m. to 12:44 p.m. +VAL,JWAP,C,3,151,151,12:45 p.m. to 12:49 p.m. +VAL,JWAP,C,3,152,152,12:50 p.m. to 12:54 p.m. +VAL,JWAP,C,3,153,153,12:55 p.m. to 12:59 p.m. +VAL,JWAP,C,3,154,154,1:00 p.m. to 1:04 p.m. +VAL,JWAP,C,3,155,155,1:05 p.m. to 1:09 p.m. +VAL,JWAP,C,3,156,156,1:10 p.m. to 1:14 p.m. +VAL,JWAP,C,3,157,157,1:15 p.m. to 1:19 p.m. +VAL,JWAP,C,3,158,158,1:20 p.m. to 1:24 p.m. +VAL,JWAP,C,3,159,159,1:25 p.m. to 1:29 p.m. +VAL,JWAP,C,3,160,160,1:30 p.m. to 1:34 p.m. +VAL,JWAP,C,3,161,161,1:35 p.m. to 1:39 p.m. +VAL,JWAP,C,3,162,162,1:40 p.m. to 1:44 p.m. +VAL,JWAP,C,3,163,163,1:45 p.m. to 1:49 p.m. +VAL,JWAP,C,3,164,164,1:50 p.m. to 1:54 p.m. +VAL,JWAP,C,3,165,165,1:55 p.m. to 1:59 p.m. +VAL,JWAP,C,3,166,166,2:00 p.m. to 2:04 p.m. +VAL,JWAP,C,3,167,167,2:05 p.m. to 2:09 p.m. +VAL,JWAP,C,3,168,168,2:10 p.m. to 2:14 p.m. +VAL,JWAP,C,3,169,169,2:15 p.m. to 2:19 p.m. +VAL,JWAP,C,3,170,170,2:20 p.m. to 2:24 p.m. +VAL,JWAP,C,3,171,171,2:25 p.m. to 2:29 p.m. +VAL,JWAP,C,3,172,172,2:30 p.m. to 2:34 p.m. +VAL,JWAP,C,3,173,173,2:35 p.m. to 2:39 p.m. +VAL,JWAP,C,3,174,174,2:40 p.m. to 2:44 p.m. +VAL,JWAP,C,3,175,175,2:45 p.m. to 2:49 p.m. +VAL,JWAP,C,3,176,176,2:50 p.m. to 2:54 p.m. +VAL,JWAP,C,3,177,177,2:55 p.m. to 2:59 p.m. +VAL,JWAP,C,3,178,178,3:00 p.m. to 3:04 p.m. +VAL,JWAP,C,3,179,179,3:05 p.m. to 3:09 p.m. +VAL,JWAP,C,3,180,180,3:10 p.m. to 3:14 p.m. +VAL,JWAP,C,3,181,181,3:15 p.m. to 3:19 p.m. +VAL,JWAP,C,3,182,182,3:20 p.m. to 3:24 p.m. +VAL,JWAP,C,3,183,183,3:25 p.m. to 3:29 p.m. +VAL,JWAP,C,3,184,184,3:30 p.m. to 3:34 p.m. +VAL,JWAP,C,3,185,185,3:35 p.m. to 3:39 p.m. +VAL,JWAP,C,3,186,186,3:40 p.m. to 3:44 p.m. +VAL,JWAP,C,3,187,187,3:45 p.m. to 3:49 p.m. +VAL,JWAP,C,3,188,188,3:50 p.m. to 3:54 p.m. +VAL,JWAP,C,3,189,189,3:55 p.m. to 3:59 p.m. +VAL,JWAP,C,3,190,190,4:00 p.m. to 4:04 p.m. +VAL,JWAP,C,3,191,191,4:05 p.m. to 4:09 p.m. +VAL,JWAP,C,3,192,192,4:10 p.m. to 4:14 p.m. +VAL,JWAP,C,3,193,193,4:15 p.m. to 4:19 p.m. +VAL,JWAP,C,3,194,194,4:20 p.m. to 4:24 p.m. +VAL,JWAP,C,3,195,195,4:25 p.m. to 4:29 p.m. +VAL,JWAP,C,3,196,196,4:30 p.m. to 4:34 p.m. +VAL,JWAP,C,3,197,197,4:35 p.m. to 4:39 p.m. +VAL,JWAP,C,3,198,198,4:40 p.m. to 4:44 p.m. +VAL,JWAP,C,3,199,199,4:45 p.m. to 4:49 p.m. +VAL,JWAP,C,3,200,200,4:50 p.m. to 4:54 p.m. +VAL,JWAP,C,3,201,201,4:55 p.m. to 4:59 p.m. +VAL,JWAP,C,3,202,202,5:00 p.m. to 5:04 p.m. +VAL,JWAP,C,3,203,203,5:05 p.m. to 5:09 p.m. +VAL,JWAP,C,3,204,204,5:10 p.m. to 5:14 p.m. +VAL,JWAP,C,3,205,205,5:15 p.m. to 5:19 p.m. +VAL,JWAP,C,3,206,206,5:20 p.m. to 5:24 p.m. +VAL,JWAP,C,3,207,207,5:25 p.m. to 5:29 p.m. +VAL,JWAP,C,3,208,208,5:30 p.m. to 5:34 p.m. +VAL,JWAP,C,3,209,209,5:35 p.m. to 5:39 p.m. +VAL,JWAP,C,3,210,210,5:40 p.m. to 5:44 p.m. +VAL,JWAP,C,3,211,211,5:45 p.m. to 5:49 p.m. +VAL,JWAP,C,3,212,212,5:50 p.m. to 5:54 p.m. +VAL,JWAP,C,3,213,213,5:55 p.m. to 5:59 p.m. +VAL,JWAP,C,3,214,214,6:00 p.m. to 6:04 p.m. +VAL,JWAP,C,3,215,215,6:05 p.m. to 6:09 p.m. +VAL,JWAP,C,3,216,216,6:10 p.m. to 6:14 p.m. +VAL,JWAP,C,3,217,217,6:15 p.m. to 6:19 p.m. +VAL,JWAP,C,3,218,218,6:20 p.m. to 6:24 p.m. +VAL,JWAP,C,3,219,219,6:25 p.m. to 6:29 p.m. +VAL,JWAP,C,3,220,220,6:30 p.m. to 6:34 p.m. +VAL,JWAP,C,3,221,221,6:35 p.m. to 6:39 p.m. +VAL,JWAP,C,3,222,222,6:40 p.m. to 6:44 p.m. +VAL,JWAP,C,3,223,223,6:45 p.m. to 6:49 p.m. +VAL,JWAP,C,3,224,224,6:50 p.m. to 6:54 p.m. +VAL,JWAP,C,3,225,225,6:55 p.m. to 6:59 p.m. +VAL,JWAP,C,3,226,226,7:00 p.m. to 7:04 p.m. +VAL,JWAP,C,3,227,227,7:05 p.m. to 7:09 p.m. +VAL,JWAP,C,3,228,228,7:10 p.m. to 7:14 p.m. +VAL,JWAP,C,3,229,229,7:15 p.m. to 7:19 p.m. +VAL,JWAP,C,3,230,230,7:20 p.m. to 7:24 p.m. +VAL,JWAP,C,3,231,231,7:25 p.m. to 7:29 p.m. +VAL,JWAP,C,3,232,232,7:30 p.m. to 7:34 p.m. +VAL,JWAP,C,3,233,233,7:35 p.m. to 7:39 p.m. +VAL,JWAP,C,3,234,234,7:40 p.m. to 7:44 p.m. +VAL,JWAP,C,3,235,235,7:45 p.m. to 7:49 p.m. +VAL,JWAP,C,3,236,236,7:50 p.m. to 7:54 p.m. +VAL,JWAP,C,3,237,237,7:55 p.m. to 7:59 p.m. +VAL,JWAP,C,3,238,238,8:00 p.m. to 8:04 p.m. +VAL,JWAP,C,3,239,239,8:05 p.m. to 8:09 p.m. +VAL,JWAP,C,3,240,240,8:10 p.m. to 8:14 p.m. +VAL,JWAP,C,3,241,241,8:15 p.m. to 8:19 p.m. +VAL,JWAP,C,3,242,242,8:20 p.m. to 8:24 p.m. +VAL,JWAP,C,3,243,243,8:25 p.m. to 8:29 p.m. +VAL,JWAP,C,3,244,244,8:30 p.m. to 8:34 p.m. +VAL,JWAP,C,3,245,245,8:35 p.m. to 8:39 p.m. +VAL,JWAP,C,3,246,246,8:40 p.m. to 8:44 p.m. +VAL,JWAP,C,3,247,247,8:45 p.m. to 8:49 p.m. +VAL,JWAP,C,3,248,248,8:50 p.m. to 8:54 p.m. +VAL,JWAP,C,3,249,249,8:55 p.m. to 8:59 p.m. +VAL,JWAP,C,3,250,250,9:00 p.m. to 9:04 p.m. +VAL,JWAP,C,3,251,251,9:05 p.m. to 9:09 p.m. +VAL,JWAP,C,3,252,252,9:10 p.m. to 9:14 p.m. +VAL,JWAP,C,3,253,253,9:15 p.m. to 9:19 p.m. +VAL,JWAP,C,3,254,254,9:20 p.m. to 9:24 p.m. +VAL,JWAP,C,3,255,255,9:25 p.m. to 9:29 p.m. +VAL,JWAP,C,3,256,256,9:30 p.m. to 9:34 p.m. +VAL,JWAP,C,3,257,257,9:35 p.m. to 9:39 p.m. +VAL,JWAP,C,3,258,258,9:40 p.m. to 9:44 p.m. +VAL,JWAP,C,3,259,259,9:45 p.m. to 9:49 p.m. +VAL,JWAP,C,3,260,260,9:50 p.m. to 9:54 p.m. +VAL,JWAP,C,3,261,261,9:55 p.m. to 9:59 p.m. +VAL,JWAP,C,3,262,262,10:00 p.m. to 10:04 p.m. +VAL,JWAP,C,3,263,263,10:05 p.m. to 10:09 p.m. +VAL,JWAP,C,3,264,264,10:10 p.m. to 10:14 p.m. +VAL,JWAP,C,3,265,265,10:15 p.m. to 10:19 p.m. +VAL,JWAP,C,3,266,266,10:20 p.m. to 10:24 p.m. +VAL,JWAP,C,3,267,267,10:25 p.m. to 10:29 p.m. +VAL,JWAP,C,3,268,268,10:30 p.m. to 10:34 p.m. +VAL,JWAP,C,3,269,269,10:35 p.m. to 10:39 p.m. +VAL,JWAP,C,3,270,270,10:40 p.m. to 10:44 p.m. +VAL,JWAP,C,3,271,271,10:45 p.m. to 10:49 p.m. +VAL,JWAP,C,3,272,272,10:50 p.m. to 10:54 p.m. +VAL,JWAP,C,3,273,273,10:55 p.m. to 10:59 p.m. +VAL,JWAP,C,3,274,274,11:00 p.m. to 11:04 p.m. +VAL,JWAP,C,3,275,275,11:05 p.m. to 11:09 p.m. +VAL,JWAP,C,3,276,276,11:10 p.m. to 11:14 p.m. +VAL,JWAP,C,3,277,277,11:15 p.m. to 11:19 p.m. +VAL,JWAP,C,3,278,278,11:20 p.m. to 11:24 p.m. +VAL,JWAP,C,3,279,279,11:25 p.m. to 11:29 p.m. +VAL,JWAP,C,3,280,280,11:30 p.m. to 11:34 p.m. +VAL,JWAP,C,3,281,281,11:35 p.m. to 11:39 p.m. +VAL,JWAP,C,3,282,282,11:40 p.m. to 11:44 p.m. +VAL,JWAP,C,3,283,283,11:45 p.m. to 11:49 p.m. +VAL,JWAP,C,3,284,284,11:50 p.m. to 11:54 p.m. +VAL,JWAP,C,3,285,285,11:55 p.m. to 11:59 p.m. +VAL,JWAP,C,3,888,888,Suppressed for data year 2023 for select PUMAs +NAME,JWDP,C,3,Time of departure for work - hour and minute,, +VAL,JWDP,C,3,bbb,bbb,N/A (not a worker; worker who worked from home) +VAL,JWDP,C,3,001,001,12:00 a.m. to 12:29 a.m. +VAL,JWDP,C,3,002,002,12:30 a.m. to 12:59 a.m. +VAL,JWDP,C,3,003,003,1:00 a.m. to 1:29 a.m. +VAL,JWDP,C,3,004,004,1:30 a.m. to 1:59 a.m. +VAL,JWDP,C,3,005,005,2:00 a.m. to 2:29 a.m. +VAL,JWDP,C,3,006,006,2:30 a.m. to 2:59 a.m. +VAL,JWDP,C,3,007,007,3:00 a.m. to 3:09 a.m. +VAL,JWDP,C,3,008,008,3:10 a.m. to 3:19 a.m. +VAL,JWDP,C,3,009,009,3:20 a.m. to 3:29 a.m. +VAL,JWDP,C,3,010,010,3:30 a.m. to 3:39 a.m. +VAL,JWDP,C,3,011,011,3:40 a.m. to 3:49 a.m. +VAL,JWDP,C,3,012,012,3:50 a.m. to 3:59 a.m. +VAL,JWDP,C,3,013,013,4:00 a.m. to 4:09 a.m. +VAL,JWDP,C,3,014,014,4:10 a.m. to 4:19 a.m. +VAL,JWDP,C,3,015,015,4:20 a.m. to 4:29 a.m. +VAL,JWDP,C,3,016,016,4:30 a.m. to 4:39 a.m. +VAL,JWDP,C,3,017,017,4:40 a.m. to 4:49 a.m. +VAL,JWDP,C,3,018,018,4:50 a.m. to 4:59 a.m. +VAL,JWDP,C,3,019,019,5:00 a.m. to 5:04 a.m. +VAL,JWDP,C,3,020,020,5:05 a.m. to 5:09 a.m. +VAL,JWDP,C,3,021,021,5:10 a.m. to 5:14 a.m. +VAL,JWDP,C,3,022,022,5:15 a.m. to 5:19 a.m. +VAL,JWDP,C,3,023,023,5:20 a.m. to 5:24 a.m. +VAL,JWDP,C,3,024,024,5:25 a.m. to 5:29 a.m. +VAL,JWDP,C,3,025,025,5:30 a.m. to 5:34 a.m. +VAL,JWDP,C,3,026,026,5:35 a.m. to 5:39 a.m. +VAL,JWDP,C,3,027,027,5:40 a.m. to 5:44 a.m. +VAL,JWDP,C,3,028,028,5:45 a.m. to 5:49 a.m. +VAL,JWDP,C,3,029,029,5:50 a.m. to 5:54 a.m. +VAL,JWDP,C,3,030,030,5:55 a.m. to 5:59 a.m. +VAL,JWDP,C,3,031,031,6:00 a.m. to 6:04 a.m. +VAL,JWDP,C,3,032,032,6:05 a.m. to 6:09 a.m. +VAL,JWDP,C,3,033,033,6:10 a.m. to 6:14 a.m. +VAL,JWDP,C,3,034,034,6:15 a.m. to 6:19 a.m. +VAL,JWDP,C,3,035,035,6:20 a.m. to 6:24 a.m. +VAL,JWDP,C,3,036,036,6:25 a.m. to 6:29 a.m. +VAL,JWDP,C,3,037,037,6:30 a.m. to 6:34 a.m. +VAL,JWDP,C,3,038,038,6:35 a.m. to 6:39 a.m. +VAL,JWDP,C,3,039,039,6:40 a.m. to 6:44 a.m. +VAL,JWDP,C,3,040,040,6:45 a.m. to 6:49 a.m. +VAL,JWDP,C,3,041,041,6:50 a.m. to 6:54 a.m. +VAL,JWDP,C,3,042,042,6:55 a.m. to 6:59 a.m. +VAL,JWDP,C,3,043,043,7:00 a.m. to 7:04 a.m. +VAL,JWDP,C,3,044,044,7:05 a.m. to 7:09 a.m. +VAL,JWDP,C,3,045,045,7:10 a.m. to 7:14 a.m. +VAL,JWDP,C,3,046,046,7:15 a.m. to 7:19 a.m. +VAL,JWDP,C,3,047,047,7:20 a.m. to 7:24 a.m. +VAL,JWDP,C,3,048,048,7:25 a.m. to 7:29 a.m. +VAL,JWDP,C,3,049,049,7:30 a.m. to 7:34 a.m. +VAL,JWDP,C,3,050,050,7:35 a.m. to 7:39 a.m. +VAL,JWDP,C,3,051,051,7:40 a.m. to 7:44 a.m. +VAL,JWDP,C,3,052,052,7:45 a.m. to 7:49 a.m. +VAL,JWDP,C,3,053,053,7:50 a.m. to 7:54 a.m. +VAL,JWDP,C,3,054,054,7:55 a.m. to 7:59 a.m. +VAL,JWDP,C,3,055,055,8:00 a.m. to 8:04 a.m. +VAL,JWDP,C,3,056,056,8:05 a.m. to 8:09 a.m. +VAL,JWDP,C,3,057,057,8:10 a.m. to 8:14 a.m. +VAL,JWDP,C,3,058,058,8:15 a.m. to 8:19 a.m. +VAL,JWDP,C,3,059,059,8:20 a.m. to 8:24 a.m. +VAL,JWDP,C,3,060,060,8:25 a.m. to 8:29 a.m. +VAL,JWDP,C,3,061,061,8:30 a.m. to 8:34 a.m. +VAL,JWDP,C,3,062,062,8:35 a.m. to 8:39 a.m. +VAL,JWDP,C,3,063,063,8:40 a.m. to 8:44 a.m. +VAL,JWDP,C,3,064,064,8:45 a.m. to 8:49 a.m. +VAL,JWDP,C,3,065,065,8:50 a.m. to 8:54 a.m. +VAL,JWDP,C,3,066,066,8:55 a.m. to 8:59 a.m. +VAL,JWDP,C,3,067,067,9:00 a.m. to 9:04 a.m. +VAL,JWDP,C,3,068,068,9:05 a.m. to 9:09 a.m. +VAL,JWDP,C,3,069,069,9:10 a.m. to 9:14 a.m. +VAL,JWDP,C,3,070,070,9:15 a.m. to 9:19 a.m. +VAL,JWDP,C,3,071,071,9:20 a.m. to 9:24 a.m. +VAL,JWDP,C,3,072,072,9:25 a.m. to 9:29 a.m. +VAL,JWDP,C,3,073,073,9:30 a.m. to 9:34 a.m. +VAL,JWDP,C,3,074,074,9:35 a.m. to 9:39 a.m. +VAL,JWDP,C,3,075,075,9:40 a.m. to 9:44 a.m. +VAL,JWDP,C,3,076,076,9:45 a.m. to 9:49 a.m. +VAL,JWDP,C,3,077,077,9:50 a.m. to 9:54 a.m. +VAL,JWDP,C,3,078,078,9:55 a.m. to 9:59 a.m. +VAL,JWDP,C,3,079,079,10:00 a.m. to 10:09 a.m. +VAL,JWDP,C,3,080,080,10:10 a.m. to 10:19 a.m. +VAL,JWDP,C,3,081,081,10:20 a.m. to 10:29 a.m. +VAL,JWDP,C,3,082,082,10:30 a.m. to 10:39 a.m. +VAL,JWDP,C,3,083,083,10:40 a.m. to 10:49 a.m. +VAL,JWDP,C,3,084,084,10:50 a.m. to 10:59 a.m. +VAL,JWDP,C,3,085,085,11:00 a.m. to 11:09 a.m. +VAL,JWDP,C,3,086,086,11:10 a.m. to 11:19 a.m. +VAL,JWDP,C,3,087,087,11:20 a.m. to 11:29 a.m. +VAL,JWDP,C,3,088,088,11:30 a.m. to 11:39 a.m. +VAL,JWDP,C,3,089,089,11:40 a.m. to 11:49 a.m. +VAL,JWDP,C,3,090,090,11:50 a.m. to 11:59 a.m. +VAL,JWDP,C,3,091,091,12:00 p.m. to 12:09 p.m. +VAL,JWDP,C,3,092,092,12:10 p.m. to 12:19 p.m. +VAL,JWDP,C,3,093,093,12:20 p.m. to 12:29 p.m. +VAL,JWDP,C,3,094,094,12:30 p.m. to 12:39 p.m. +VAL,JWDP,C,3,095,095,12:40 p.m. to 12:49 p.m. +VAL,JWDP,C,3,096,096,12:50 p.m. to 12:59 p.m. +VAL,JWDP,C,3,097,097,1:00 p.m. to 1:09 p.m. +VAL,JWDP,C,3,098,098,1:10 p.m. to 1:19 p.m. +VAL,JWDP,C,3,099,099,1:20 p.m. to 1:29 p.m. +VAL,JWDP,C,3,100,100,1:30 p.m. to 1:39 p.m. +VAL,JWDP,C,3,101,101,1:40 p.m. to 1:49 p.m. +VAL,JWDP,C,3,102,102,1:50 p.m. to 1:59 p.m. +VAL,JWDP,C,3,103,103,2:00 p.m. to 2:09 p.m. +VAL,JWDP,C,3,104,104,2:10 p.m. to 2:19 p.m. +VAL,JWDP,C,3,105,105,2:20 p.m. to 2:29 p.m. +VAL,JWDP,C,3,106,106,2:30 p.m. to 2:39 p.m. +VAL,JWDP,C,3,107,107,2:40 p.m. to 2:49 p.m. +VAL,JWDP,C,3,108,108,2:50 p.m. to 2:59 p.m. +VAL,JWDP,C,3,109,109,3:00 p.m. to 3:09 p.m. +VAL,JWDP,C,3,110,110,3:10 p.m. to 3:19 p.m. +VAL,JWDP,C,3,111,111,3:20 p.m. to 3:29 p.m. +VAL,JWDP,C,3,112,112,3:30 p.m. to 3:39 p.m. +VAL,JWDP,C,3,113,113,3:40 p.m. to 3:49 p.m. +VAL,JWDP,C,3,114,114,3:50 p.m. to 3:59 p.m. +VAL,JWDP,C,3,115,115,4:00 p.m. to 4:09 p.m. +VAL,JWDP,C,3,116,116,4:10 p.m. to 4:19 p.m. +VAL,JWDP,C,3,117,117,4:20 p.m. to 4:29 p.m. +VAL,JWDP,C,3,118,118,4:30 p.m. to 4:39 p.m. +VAL,JWDP,C,3,119,119,4:40 p.m. to 4:49 p.m. +VAL,JWDP,C,3,120,120,4:50 p.m. to 4:59 p.m. +VAL,JWDP,C,3,121,121,5:00 p.m. to 5:09 p.m. +VAL,JWDP,C,3,122,122,5:10 p.m. to 5:19 p.m. +VAL,JWDP,C,3,123,123,5:20 p.m. to 5:29 p.m. +VAL,JWDP,C,3,124,124,5:30 p.m. to 5:39 p.m. +VAL,JWDP,C,3,125,125,5:40 p.m. to 5:49 p.m. +VAL,JWDP,C,3,126,126,5:50 p.m. to 5:59 p.m. +VAL,JWDP,C,3,127,127,6:00 p.m. to 6:09 p.m. +VAL,JWDP,C,3,128,128,6:10 p.m. to 6:19 p.m. +VAL,JWDP,C,3,129,129,6:20 p.m. to 6:29 p.m. +VAL,JWDP,C,3,130,130,6:30 p.m. to 6:39 p.m. +VAL,JWDP,C,3,131,131,6:40 p.m. to 6:49 p.m. +VAL,JWDP,C,3,132,132,6:50 p.m. to 6:59 p.m. +VAL,JWDP,C,3,133,133,7:00 p.m. to 7:29 p.m. +VAL,JWDP,C,3,134,134,7:30 p.m. to 7:59 p.m. +VAL,JWDP,C,3,135,135,8:00 p.m. to 8:29 p.m. +VAL,JWDP,C,3,136,136,8:30 p.m. to 8:59 p.m. +VAL,JWDP,C,3,137,137,9:00 p.m. to 9:09 p.m. +VAL,JWDP,C,3,138,138,9:10 p.m. to 9:19 p.m. +VAL,JWDP,C,3,139,139,9:20 p.m. to 9:29 p.m. +VAL,JWDP,C,3,140,140,9:30 p.m. to 9:39 p.m. +VAL,JWDP,C,3,141,141,9:40 p.m. to 9:49 p.m. +VAL,JWDP,C,3,142,142,9:50 p.m. to 9:59 p.m. +VAL,JWDP,C,3,143,143,10:00 p.m. to 10:09 p.m. +VAL,JWDP,C,3,144,144,10:10 p.m. to 10:19 p.m. +VAL,JWDP,C,3,145,145,10:20 p.m. to 10:29 p.m. +VAL,JWDP,C,3,146,146,10:30 p.m. to 10:39 p.m. +VAL,JWDP,C,3,147,147,10:40 p.m. to 10:49 p.m. +VAL,JWDP,C,3,148,148,10:50 p.m. to 10:59 p.m. +VAL,JWDP,C,3,149,149,11:00 p.m. to 11:29 p.m. +VAL,JWDP,C,3,150,150,11:30 p.m. to 11:59 p.m. +NAME,LANP,C,4,Language spoken at home,, +VAL,LANP,C,4,bbbb,bbbb,N/A (GQ/vacant) +VAL,LANP,C,4,1000,1000,Jamaican Creole English +VAL,LANP,C,4,1025,1025,Other English-based Creole languages +VAL,LANP,C,4,1055,1055,Haitian +VAL,LANP,C,4,1069,1069,Kabuverdianu +VAL,LANP,C,4,1110,1110,German +VAL,LANP,C,4,1120,1120,Swiss German +VAL,LANP,C,4,1125,1125,Pennsylvania German +VAL,LANP,C,4,1130,1130,Yiddish +VAL,LANP,C,4,1132,1132,Dutch +VAL,LANP,C,4,1134,1134,Afrikaans +VAL,LANP,C,4,1140,1140,Swedish +VAL,LANP,C,4,1141,1141,Danish +VAL,LANP,C,4,1142,1142,Norwegian +VAL,LANP,C,4,1155,1155,Italian +VAL,LANP,C,4,1170,1170,French +VAL,LANP,C,4,1175,1175,Cajun French +VAL,LANP,C,4,1200,1200,Spanish +VAL,LANP,C,4,1210,1210,Portuguese +VAL,LANP,C,4,1220,1220,Romanian +VAL,LANP,C,4,1231,1231,Irish +VAL,LANP,C,4,1235,1235,Greek +VAL,LANP,C,4,1242,1242,Albanian +VAL,LANP,C,4,1250,1250,Russian +VAL,LANP,C,4,1260,1260,Ukrainian +VAL,LANP,C,4,1262,1262,Czech +VAL,LANP,C,4,1263,1263,Slovak +VAL,LANP,C,4,1270,1270,Polish +VAL,LANP,C,4,1273,1273,Bulgarian +VAL,LANP,C,4,1274,1274,Macedonian +VAL,LANP,C,4,1275,1275,Serbocroatian +VAL,LANP,C,4,1276,1276,Bosnian +VAL,LANP,C,4,1277,1277,Croatian +VAL,LANP,C,4,1278,1278,Serbian +VAL,LANP,C,4,1281,1281,Lithuanian +VAL,LANP,C,4,1283,1283,Latvian +VAL,LANP,C,4,1288,1288,Armenian +VAL,LANP,C,4,1290,1290,Farsi +VAL,LANP,C,4,1292,1292,Dari +VAL,LANP,C,4,1315,1315,Kurdish +VAL,LANP,C,4,1327,1327,Pashto +VAL,LANP,C,4,1340,1340,India N.E.C. +VAL,LANP,C,4,1350,1350,Hindi +VAL,LANP,C,4,1360,1360,Urdu +VAL,LANP,C,4,1380,1380,Bengali +VAL,LANP,C,4,1420,1420,Punjabi +VAL,LANP,C,4,1435,1435,Konkani +VAL,LANP,C,4,1440,1440,Marathi +VAL,LANP,C,4,1450,1450,Gujarati +VAL,LANP,C,4,1500,1500,Nepali +VAL,LANP,C,4,1530,1530,Sinhala +VAL,LANP,C,4,1540,1540,Other Indo-Iranian languages +VAL,LANP,C,4,1564,1564,Other Indo-European languages +VAL,LANP,C,4,1565,1565,Finnish +VAL,LANP,C,4,1582,1582,Hungarian +VAL,LANP,C,4,1675,1675,Turkish +VAL,LANP,C,4,1690,1690,Mongolian +VAL,LANP,C,4,1730,1730,Telugu +VAL,LANP,C,4,1737,1737,Kannada +VAL,LANP,C,4,1750,1750,Malayalam +VAL,LANP,C,4,1765,1765,Tamil +VAL,LANP,C,4,1900,1900,Khmer +VAL,LANP,C,4,1960,1960,Vietnamese +VAL,LANP,C,4,1970,1970,Chinese +VAL,LANP,C,4,2000,2000,Mandarin +VAL,LANP,C,4,2030,2030,Min Nan Chinese +VAL,LANP,C,4,2050,2050,Cantonese +VAL,LANP,C,4,2100,2100,Tibetan +VAL,LANP,C,4,2160,2160,Burmese +VAL,LANP,C,4,2270,2270,Chin languages +VAL,LANP,C,4,2350,2350,Karen languages +VAL,LANP,C,4,2430,2430,Thai +VAL,LANP,C,4,2475,2475,Lao +VAL,LANP,C,4,2525,2525,Iu Mien +VAL,LANP,C,4,2535,2535,Hmong +VAL,LANP,C,4,2560,2560,Japanese +VAL,LANP,C,4,2575,2575,Korean +VAL,LANP,C,4,2715,2715,Malay +VAL,LANP,C,4,2770,2770,Indonesian +VAL,LANP,C,4,2850,2850,Other languages of Asia +VAL,LANP,C,4,2910,2910,Filipino +VAL,LANP,C,4,2920,2920,Tagalog +VAL,LANP,C,4,2950,2950,Cebuano +VAL,LANP,C,4,3150,3150,Ilocano +VAL,LANP,C,4,3190,3190,Other Philippine languages +VAL,LANP,C,4,3220,3220,Chamorro +VAL,LANP,C,4,3270,3270,Marshallese +VAL,LANP,C,4,3350,3350,Chuukese +VAL,LANP,C,4,3420,3420,Samoan +VAL,LANP,C,4,3500,3500,Tongan +VAL,LANP,C,4,3570,3570,Hawaiian +VAL,LANP,C,4,3600,3600,Other Eastern Malayo-Polynesian languages +VAL,LANP,C,4,4500,4500,Arabic +VAL,LANP,C,4,4545,4545,Hebrew +VAL,LANP,C,4,4560,4560,Assyrian Neo-Aramaic +VAL,LANP,C,4,4565,4565,Chaldean Neo-Aramaic +VAL,LANP,C,4,4590,4590,Amharic +VAL,LANP,C,4,4640,4640,Tigrinya +VAL,LANP,C,4,4830,4830,Oromo +VAL,LANP,C,4,4840,4840,Somali +VAL,LANP,C,4,4880,4880,Other Afro-Asiatic languages +VAL,LANP,C,4,4900,4900,Nilo-Saharan languages +VAL,LANP,C,4,5150,5150,Swahili +VAL,LANP,C,4,5345,5345,Ganda +VAL,LANP,C,4,5525,5525,Shona +VAL,LANP,C,4,5645,5645,Other Bantu languages +VAL,LANP,C,4,5845,5845,Manding languages +VAL,LANP,C,4,5900,5900,Other Mande languages +VAL,LANP,C,4,5940,5940,Fulah +VAL,LANP,C,4,5950,5950,Wolof +VAL,LANP,C,4,6120,6120,Akan (incl. Twi) +VAL,LANP,C,4,6205,6205,Ga +VAL,LANP,C,4,6230,6230,Gbe languages +VAL,LANP,C,4,6290,6290,Yoruba +VAL,LANP,C,4,6300,6300,Edoid languages +VAL,LANP,C,4,6370,6370,Igbo +VAL,LANP,C,4,6500,6500,Other Niger-Congo languages +VAL,LANP,C,4,6795,6795,Other languages of Africa +VAL,LANP,C,4,6800,6800,Aleut languages +VAL,LANP,C,4,6839,6839,Ojibwa +VAL,LANP,C,4,6930,6930,Apache languages +VAL,LANP,C,4,6933,6933,Navajo +VAL,LANP,C,4,7019,7019,Dakota languages +VAL,LANP,C,4,7032,7032,Muskogean languages +VAL,LANP,C,4,7050,7050,Cherokee +VAL,LANP,C,4,7060,7060,Uto-Aztecan languages +VAL,LANP,C,4,7124,7124,Other Native North American languages +VAL,LANP,C,4,7300,7300,Other Middle and South American languages +VAL,LANP,C,4,9999,9999,Other and unspecified languages +NAME,MIGPUMA,C,5,Migration PUMA based on 2020 Census definition,, +VAL,MIGPUMA,C,5,bbbbb,bbbbb,N/A (person less than 1 year old/lived in same house 1 year ago) +VAL,MIGPUMA,C,5,00001,00001,Did not live in the United States or in Puerto Rico one year ago +VAL,MIGPUMA,C,5,00002,00002,Lived in Puerto Rico one year ago and current residence is in the United States +VAL,MIGPUMA,C,5,00100,81000,Assigned Migration PUMA. Use with MIGSP. +NAME,MIGSP,C,3,Migration recode - State or foreign country code,, +VAL,MIGSP,C,3,bbb,bbb,N/A (person less than 1 year old/lived in same house 1 year ago) +VAL,MIGSP,C,3,001,001,Alabama/AL +VAL,MIGSP,C,3,002,002,Alaska/AK +VAL,MIGSP,C,3,004,004,Arizona/AZ +VAL,MIGSP,C,3,005,005,Arkansas/AR +VAL,MIGSP,C,3,006,006,California/CA +VAL,MIGSP,C,3,008,008,Colorado/CO +VAL,MIGSP,C,3,009,009,Connecticut/CT +VAL,MIGSP,C,3,010,010,Delaware/DE +VAL,MIGSP,C,3,011,011,District of Columbia/DC +VAL,MIGSP,C,3,012,012,Florida/FL +VAL,MIGSP,C,3,013,013,Georgia/GA +VAL,MIGSP,C,3,015,015,Hawaii/HI +VAL,MIGSP,C,3,016,016,Idaho/ID +VAL,MIGSP,C,3,017,017,Illinois/IL +VAL,MIGSP,C,3,018,018,Indiana/IN +VAL,MIGSP,C,3,019,019,Iowa/IA +VAL,MIGSP,C,3,020,020,Kansas/KS +VAL,MIGSP,C,3,021,021,Kentucky/KY +VAL,MIGSP,C,3,022,022,Louisiana/LA +VAL,MIGSP,C,3,023,023,Maine/ME +VAL,MIGSP,C,3,024,024,Maryland/MD +VAL,MIGSP,C,3,025,025,Massachusetts/MA +VAL,MIGSP,C,3,026,026,Michigan/MI +VAL,MIGSP,C,3,027,027,Minnesota/MN +VAL,MIGSP,C,3,028,028,Mississippi/MS +VAL,MIGSP,C,3,029,029,Missouri/MO +VAL,MIGSP,C,3,030,030,Montana/MT +VAL,MIGSP,C,3,031,031,Nebraska/NE +VAL,MIGSP,C,3,032,032,Nevada/NV +VAL,MIGSP,C,3,033,033,New Hampshire/NH +VAL,MIGSP,C,3,034,034,New Jersey/NJ +VAL,MIGSP,C,3,035,035,New Mexico/NM +VAL,MIGSP,C,3,036,036,New York/NY +VAL,MIGSP,C,3,037,037,North Carolina/NC +VAL,MIGSP,C,3,038,038,North Dakota/ND +VAL,MIGSP,C,3,039,039,Ohio/OH +VAL,MIGSP,C,3,040,040,Oklahoma/OK +VAL,MIGSP,C,3,041,041,Oregon/OR +VAL,MIGSP,C,3,042,042,Pennsylvania/PA +VAL,MIGSP,C,3,044,044,Rhode Island/RI +VAL,MIGSP,C,3,045,045,South Carolina/SC +VAL,MIGSP,C,3,046,046,South Dakota/SD +VAL,MIGSP,C,3,047,047,Tennessee/TN +VAL,MIGSP,C,3,048,048,Texas/TX +VAL,MIGSP,C,3,049,049,Utah/UT +VAL,MIGSP,C,3,050,050,Vermont/VT +VAL,MIGSP,C,3,051,051,Virginia/VA +VAL,MIGSP,C,3,053,053,Washington/WA +VAL,MIGSP,C,3,054,054,West Virginia/WV +VAL,MIGSP,C,3,055,055,Wisconsin/WI +VAL,MIGSP,C,3,056,056,Wyoming/WY +VAL,MIGSP,C,3,072,072,Puerto Rico +VAL,MIGSP,C,3,109,109,France +VAL,MIGSP,C,3,110,110,Germany +VAL,MIGSP,C,3,111,111,"Northern Europe, Not Specified" +VAL,MIGSP,C,3,113,113,"Eastern Europe, Not Specified" +VAL,MIGSP,C,3,114,114,"Western Europe or Other Europe, Not Specified" +VAL,MIGSP,C,3,120,120,Italy +VAL,MIGSP,C,3,134,134,Spain +VAL,MIGSP,C,3,138,138,"United Kingdom, Excluding England" +VAL,MIGSP,C,3,139,139,England +VAL,MIGSP,C,3,163,163,Russia +VAL,MIGSP,C,3,164,164,Ukraine +VAL,MIGSP,C,3,200,200,Afghanistan +VAL,MIGSP,C,3,207,207,"China, Hong Kong, Macau And Paracel Islands" +VAL,MIGSP,C,3,210,210,India +VAL,MIGSP,C,3,214,214,Israel +VAL,MIGSP,C,3,215,215,Japan +VAL,MIGSP,C,3,217,217,Korea +VAL,MIGSP,C,3,229,229,Nepal +VAL,MIGSP,C,3,231,231,Pakistan +VAL,MIGSP,C,3,233,233,Philippines +VAL,MIGSP,C,3,235,235,Saudi Arabia +VAL,MIGSP,C,3,240,240,Taiwan +VAL,MIGSP,C,3,242,242,Thailand +VAL,MIGSP,C,3,243,243,Turkey +VAL,MIGSP,C,3,245,245,United Arab Emirates +VAL,MIGSP,C,3,247,247,Vietnam +VAL,MIGSP,C,3,251,251,"Eastern Asia, Not Specified" +VAL,MIGSP,C,3,252,252,"Western Asia, Not Specified" +VAL,MIGSP,C,3,253,253,"South Central Asia or Asia, Not Specified" +VAL,MIGSP,C,3,301,301,Canada +VAL,MIGSP,C,3,303,303,Mexico +VAL,MIGSP,C,3,312,312,El Salvador +VAL,MIGSP,C,3,313,313,Guatemala +VAL,MIGSP,C,3,314,314,Honduras +VAL,MIGSP,C,3,317,317,"Central America, Not Specified" +VAL,MIGSP,C,3,327,327,Cuba +VAL,MIGSP,C,3,329,329,Dominican Republic +VAL,MIGSP,C,3,332,332,Haiti +VAL,MIGSP,C,3,333,333,Jamaica +VAL,MIGSP,C,3,344,344,"Caribbean and North America, Not Specified" +VAL,MIGSP,C,3,362,362,Brazil +VAL,MIGSP,C,3,364,364,Colombia +VAL,MIGSP,C,3,365,365,Ecuador +VAL,MIGSP,C,3,370,370,Peru +VAL,MIGSP,C,3,373,373,Venezuela +VAL,MIGSP,C,3,374,374,"South America, Not Specified" +VAL,MIGSP,C,3,414,414,Egypt +VAL,MIGSP,C,3,416,416,Ethiopia +VAL,MIGSP,C,3,427,427,Kenya +VAL,MIGSP,C,3,440,440,Nigeria +VAL,MIGSP,C,3,467,467,"Western Africa, Not Specified" +VAL,MIGSP,C,3,468,468,"Other Africa, Not Specified" +VAL,MIGSP,C,3,469,469,"Eastern Africa, Not Specified" +VAL,MIGSP,C,3,501,501,Australia +VAL,MIGSP,C,3,555,555,"Other US Island Areas, Oceania, Not Specified, or At Sea" +NAME,MSP,C,1,"Married, spouse present/spouse absent",, +VAL,MSP,C,1,b,b,N/A (age less than 15 years) +VAL,MSP,C,1,1,1,"Now married, spouse present" +VAL,MSP,C,1,2,2,"Now married, spouse absent" +VAL,MSP,C,1,3,3,Widowed +VAL,MSP,C,1,4,4,Divorced +VAL,MSP,C,1,5,5,Separated +VAL,MSP,C,1,6,6,Never married +NAME,NAICSP,C,8,North American Industry Classification System (NAICS) recode for 2023 and later based on 2022 NAICS codes,, +VAL,NAICSP,C,8,bbbbbbbb,bbbbbbbb,N/A (less than 16 years old/NILF who last worked more than 5 years ago or never worked) +VAL,NAICSP,C,8,111,111,AGR-Crop Production +VAL,NAICSP,C,8,112,112,AGR-Animal Production And Aquaculture +VAL,NAICSP,C,8,1133,1133,AGR-Logging +VAL,NAICSP,C,8,113M,113M,AGR-Forestry Except Logging +VAL,NAICSP,C,8,114,114,"AGR-Fishing, Hunting And Trapping" +VAL,NAICSP,C,8,115,115,AGR-Support Activities For Agriculture And Forestry +VAL,NAICSP,C,8,211,211,EXT-Oil And Gas Extraction +VAL,NAICSP,C,8,2121,2121,EXT-Coal Mining +VAL,NAICSP,C,8,2122,2122,EXT-Metal Ore Mining +VAL,NAICSP,C,8,2123,2123,EXT-Nonmetallic Mineral Mining And Quarrying +VAL,NAICSP,C,8,213,213,EXT-Support Activities For Mining +VAL,NAICSP,C,8,2211P,2211P,"UTL-Electric Power Generation, Transmission And Distribution" +VAL,NAICSP,C,8,2212P,2212P,UTL-Natural Gas Distribution +VAL,NAICSP,C,8,22132,22132,UTL-Sewage Treatment Facilities +VAL,NAICSP,C,8,2213M,2213M,"UTL-Water Supply And Irrigation Systems, And Steam And Air-conditioning Supply" +VAL,NAICSP,C,8,221MP,221MP,"UTL-Electric And Gas, And Other Combinations" +VAL,NAICSP,C,8,22S,22S,UTL-Not Specified Utilities +VAL,NAICSP,C,8,23,23,CON-Construction (The Cleaning Of Buildings And Dwellings Is Incidental During Construction And Immediately After Construction) +VAL,NAICSP,C,8,3113,3113,MFG-Sugar And Confectionery Products +VAL,NAICSP,C,8,3114,3114,MFG-Fruit And Vegetable Preserving And Specialty Food +VAL,NAICSP,C,8,3115,3115,MFG-Dairy Product +VAL,NAICSP,C,8,3116,3116,MFG-Animal Slaughtering And Processing +VAL,NAICSP,C,8,311811,311811,MFG-Retail Bakeries +VAL,NAICSP,C,8,3118Z,3118Z,"MFG-Bakeries And Tortilla, Except Retail Bakeries" +VAL,NAICSP,C,8,311M1,311M1,"MFG-Animal Food, Grain And Oilseed Milling" +VAL,NAICSP,C,8,311M2,311M2,"MFG-Seafood And Other Miscellaneous Foods, N.E.C." +VAL,NAICSP,C,8,311S,311S,MFG-Not Specified Food Industries +VAL,NAICSP,C,8,3121,3121,MFG-Beverage +VAL,NAICSP,C,8,3122,3122,MFG-Tobacco +VAL,NAICSP,C,8,3131,3131,"MFG-Fiber, Yarn, And Thread Mills" +VAL,NAICSP,C,8,3132Z,3132Z,"MFG-Fabric Mills, Except Knit Fabric Mills" +VAL,NAICSP,C,8,3133,3133,MFG-Textile And Fabric Finishing And Fabric Coating Mills +VAL,NAICSP,C,8,31411,31411,MFG-Carpet And Rug Mills +VAL,NAICSP,C,8,314Z,314Z,"MFG-Textile Product Mills, Except Carpet And Rug" +VAL,NAICSP,C,8,315M,315M,"MFG-Cut And Sew, And Apparel Accessories And Other Apparel" +VAL,NAICSP,C,8,3162,3162,MFG-Footwear +VAL,NAICSP,C,8,316M,316M,"MFG-Leather And Hide Tanning And Finishing, And Other Leather And Allied Product" +VAL,NAICSP,C,8,31M,31M,"MFG-Knit Fabric Mills, And Apparel Knitting Mills" +VAL,NAICSP,C,8,3211,3211,MFG-Sawmills And Wood Preservation +VAL,NAICSP,C,8,3212,3212,"MFG-Veneer, Plywood, And Engineered Wood Product" +VAL,NAICSP,C,8,32199M,32199M,MFG-Manufactured Home (Mobile Home) And Prefabricated Wood Building +VAL,NAICSP,C,8,3219ZM,3219ZM,MFG-Miscellaneous Wood Product +VAL,NAICSP,C,8,3221,3221,"MFG-Pulp, Paper, And Paperboard Mills" +VAL,NAICSP,C,8,32221,32221,MFG-Paperboard Container +VAL,NAICSP,C,8,3222M,3222M,MFG-Miscellaneous Paper And Pulp Products +VAL,NAICSP,C,8,3231,3231,MFG-Printing And Related Support Activities +VAL,NAICSP,C,8,3241M,3241M,"MFG-Petroleum And Coal Products Manufacturing, Except Petroleum Refineries" +VAL,NAICSP,C,8,32411,32411,MFG-Petroleum Refineries +VAL,NAICSP,C,8,3252,3252,"MFG-Resin, Synthetic Rubber, And Artificial And Synthetic Fibers And Filaments" +VAL,NAICSP,C,8,3253,3253,"MFG-Pesticide, Fertilizer, And Other Agricultural Chemical" +VAL,NAICSP,C,8,3254,3254,MFG-Pharmaceutical And Medicine +VAL,NAICSP,C,8,3255,3255,"MFG-Paint, Coating, And Adhesive" +VAL,NAICSP,C,8,3256,3256,"MFG-Soap, Cleaning Compound, And Toilet Preparation" +VAL,NAICSP,C,8,325M,325M,"MFG-Basic Chemical, And Other Chemical Product And Preparation" +VAL,NAICSP,C,8,3261,3261,MFG-Plastics Product +VAL,NAICSP,C,8,32621,32621,MFG-Tire +VAL,NAICSP,C,8,3262M,3262M,"MFG-Rubber Products, Except Tires" +VAL,NAICSP,C,8,32711,32711,"MFG-Pottery, Ceramics, And Plumbing Fixture" +VAL,NAICSP,C,8,32712,32712,MFG-Clay Building Material And Refractories +VAL,NAICSP,C,8,3272,3272,MFG-Glass And Glass Product +VAL,NAICSP,C,8,3279,3279,MFG-Other Nonmetallic Mineral Product +VAL,NAICSP,C,8,327M,327M,"MFG-Cement, Concrete, Lime, And Gypsum Product" +VAL,NAICSP,C,8,3313,3313,MFG-Alumina And Aluminum Production And Processing +VAL,NAICSP,C,8,3314,3314,MFG-Nonferrous Metal (Except Aluminum) Production And Processing +VAL,NAICSP,C,8,3315,3315,MFG-Foundries +VAL,NAICSP,C,8,331M,331M,MFG-Iron And Steel Mills And Steel Product +VAL,NAICSP,C,8,3321,3321,MFG-Forging And Stamping +VAL,NAICSP,C,8,3322,3322,MFG-Cutlery And Handtool +VAL,NAICSP,C,8,3327,3327,"MFG-Machine Shops; Turned Product; Screw, Nut, And Bolt" +VAL,NAICSP,C,8,3328,3328,"MFG-Coating, Engraving, Heat Treating, And Allied Activities" +VAL,NAICSP,C,8,33299M,33299M,MFG-Ordnance +VAL,NAICSP,C,8,332M,332M,"MFG-Architectural And Structural Metals, And Boiler, Tank, And Shipping Container" +VAL,NAICSP,C,8,332MZ,332MZ,MFG-Miscellaneous Fabricated Metal Product +VAL,NAICSP,C,8,33311,33311,MFG-Agricultural Implement +VAL,NAICSP,C,8,3331M,3331M,"MFG-Construction, And Mining And Oil And Gas Field Machinery" +VAL,NAICSP,C,8,3333,3333,MFG-Commercial And Service Industry Machinery +VAL,NAICSP,C,8,3335,3335,MFG-Metalworking Machinery +VAL,NAICSP,C,8,3336,3336,"MFG-Engine, Turbine, And Power Transmission Equipment" +VAL,NAICSP,C,8,333MS,333MS,"MFG-Machinery, N.E.C. Or Not Specified" +VAL,NAICSP,C,8,3341,3341,MFG-Computer And Peripheral Equipment +VAL,NAICSP,C,8,3345,3345,"MFG-Navigational, Measuring, Electromedical, And Control Instruments" +VAL,NAICSP,C,8,334M1,334M1,"MFG-Communications, Audio, And Video Equipment" +VAL,NAICSP,C,8,334M2,334M2,"MFG-Semiconductor, Magnetic And Optical Media, And Other Electronic Component" +VAL,NAICSP,C,8,3352,3352,MFG-Household Appliance +VAL,NAICSP,C,8,335M,335M,"MFG-Electric Lighting And Electrical Equipment, And Other Electrical Component, N.E.C." +VAL,NAICSP,C,8,33641M1,33641M1,"MFG-Aircraft, Aircraft Engine, And Aircraft Parts" +VAL,NAICSP,C,8,33641M2,33641M2,MFG-Guided Missile And Space Vehicle And Parts +VAL,NAICSP,C,8,3365,3365,MFG-Railroad Rolling Stock +VAL,NAICSP,C,8,3366,3366,MFG-Ship And Boat Building +VAL,NAICSP,C,8,3369,3369,MFG-Other Transportation Equipment +VAL,NAICSP,C,8,336M,336M,MFG-Motor Vehicles And Motor Vehicle Equipment +VAL,NAICSP,C,8,337,337,MFG-Furniture And Related Product +VAL,NAICSP,C,8,3391,3391,MFG-Medical Equipment And Supplies +VAL,NAICSP,C,8,3399M,3399M,"MFG-Sporting And Athletic Goods, And Doll, Toy And Game" +VAL,NAICSP,C,8,3399ZM,3399ZM,"MFG-Miscellaneous Manufacturing, N.E.C." +VAL,NAICSP,C,8,33MS,33MS,MFG-Not Specified Metal Industries +VAL,NAICSP,C,8,3MS,3MS,MFG-Not Specified Manufacturing Industries +VAL,NAICSP,C,8,4231,4231,WHL-Motor Vehicle And Motor Vehicle Parts And Supplies Merchant Wholesalers +VAL,NAICSP,C,8,4232,4232,WHL-Furniture And Home Furnishing Merchant Wholesalers +VAL,NAICSP,C,8,4233,4233,WHL-Lumber And Other Construction Materials Merchant Wholesalers +VAL,NAICSP,C,8,4234,4234,WHL-Professional And Commercial Equipment And Supplies Merchant Wholesalers +VAL,NAICSP,C,8,4235,4235,"WHL-Metal And Mineral, Except Petroleum, Merchant Wholesalers" +VAL,NAICSP,C,8,4236,4236,WHL-Household Appliances And Electrical And Electronic Goods Merchant Wholesalers +VAL,NAICSP,C,8,4237,4237,"WHL-Hardware, And Plumbing And Heating Equipment, And Supplies Merchant Wholesalers" +VAL,NAICSP,C,8,4238,4238,"WHL-Machinery, Equipment, And Supplies Merchant Wholesalers" +VAL,NAICSP,C,8,42393,42393,WHL-Recyclable Material Merchant Wholesalers +VAL,NAICSP,C,8,4239Z,4239Z,"WHL-Miscellaneous Durable Goods, Except Recyclable Material, Merchant Wholesalers" +VAL,NAICSP,C,8,4241,4241,WHL-Paper And Paper Product Merchant Wholesalers +VAL,NAICSP,C,8,4243,4243,"WHL-Apparel, Piece Goods, And Notions Merchant Wholesalers" +VAL,NAICSP,C,8,4244,4244,WHL-Grocery And Related Product Merchant Wholesalers +VAL,NAICSP,C,8,4245,4245,WHL-Farm Product Raw Material Merchant Wholesalers +VAL,NAICSP,C,8,4247,4247,WHL-Petroleum And Petroleum Products Merchant Wholesalers +VAL,NAICSP,C,8,4248,4248,"WHL-Beer, Wine, And Distilled Alcoholic Beverage Merchant Wholesalers" +VAL,NAICSP,C,8,42491,42491,WHL-Farm Supplies Merchant Wholesalers +VAL,NAICSP,C,8,4249Z,4249Z,"WHL-Miscellaneous Nondurable Goods Merchant, Except Farm Supplies, Wholesalers" +VAL,NAICSP,C,8,424M,424M,"WHL-Drugs, Druggists' Sundries, And Chemical And Allied Products Merchant Wholesalers" +VAL,NAICSP,C,8,4251,4251,WHL-Wholesale Trade Agents And Brokers +VAL,NAICSP,C,8,42S,42S,WHL-Not Specified Wholesale Trade +VAL,NAICSP,C,8,4411,4411,RET-Automobile Dealers +VAL,NAICSP,C,8,4412,4412,RET-Other Motor Vehicle Dealers +VAL,NAICSP,C,8,4413,4413,"RET-Automotive Parts, Accessories, And Tire Retailers" +VAL,NAICSP,C,8,44414,44414,RET-Hardware Retailers +VAL,NAICSP,C,8,4441Z,4441Z,"RET-Building Material And Supplies Dealers, Except Hardware Retailers" +VAL,NAICSP,C,8,4442,4442,RET-Lawn And Garden Equipment And Supplies Retailers +VAL,NAICSP,C,8,44511,44511,RET-Supermarkets And Other Grocery (Except Convenience) Retailers +VAL,NAICSP,C,8,44513,44513,RET-Convenience Retailers And Vending Machine Operators +VAL,NAICSP,C,8,4452,4452,RET-Specialty Food Retailers +VAL,NAICSP,C,8,4453,4453,"RET-Beer, Wine, And Liquor Retailers" +VAL,NAICSP,C,8,4491,4491,RET-Furniture And Home Furnishings Retailers +VAL,NAICSP,C,8,4492,4492,RET-Electronics And Appliance Retailers +VAL,NAICSP,C,8,4551,4551,RET-Department Stores +VAL,NAICSP,C,8,4552,4552,"RET-Warehouse Clubs, Supercenters, And Other General Merchandise Retailers" +VAL,NAICSP,C,8,45611,45611,RET-Pharmacies And Drug Retailers +VAL,NAICSP,C,8,4561Z,4561Z,"RET-Health And Personal Care, Except Pharmacies And Drug, Retailers" +VAL,NAICSP,C,8,4571,4571,RET-Gasoline Stations +VAL,NAICSP,C,8,4572,4572,RET-Fuel Dealers +VAL,NAICSP,C,8,4581,4581,RET-Clothing And Clothing Accessories Retailers +VAL,NAICSP,C,8,4582,4582,RET-Shoe Retailers +VAL,NAICSP,C,8,4583,4583,"RET-Jewelry, Luggage, And Leather Goods retailers" +VAL,NAICSP,C,8,45913,45913,"RET-Sewing, Needlework, And Piece Goods Retailers" +VAL,NAICSP,C,8,45914,45914,RET-Musical Instrument And Supplies Retailers +VAL,NAICSP,C,8,4591M,4591M,"RET-Sporting Goods, And Hobby, Toy, And Game Retailers" +VAL,NAICSP,C,8,45921,45921,RET-Book Retailers And News Dealers +VAL,NAICSP,C,8,4593,4593,RET-Florists +VAL,NAICSP,C,8,45941,45941,RET-Office Supplies And Stationery Retailers +VAL,NAICSP,C,8,45942,45942,"RET-Gift, Novelty, And Souvenir Retailers" +VAL,NAICSP,C,8,4595,4595,RET-Used Merchandise Retailers +VAL,NAICSP,C,8,4599,4599,RET-Other Miscellaneous Retailers +VAL,NAICSP,C,8,4MS,4MS,RET-Not Specified Retail Trade +VAL,NAICSP,C,8,481,481,TRN-Air Transportation +VAL,NAICSP,C,8,482,482,TRN-Rail Transportation +VAL,NAICSP,C,8,483,483,TRN-Water Transportation +VAL,NAICSP,C,8,484,484,TRN-Truck Transportation +VAL,NAICSP,C,8,4853,4853,TRN-Taxi And Limousine Service +VAL,NAICSP,C,8,485M,485M,"TRN-Transit And Ground Passenger Transportation, Except Taxi And Limousine Service" +VAL,NAICSP,C,8,486,486,TRN-Pipeline Transportation +VAL,NAICSP,C,8,487,487,TRN-Scenic And Sightseeing Transportation +VAL,NAICSP,C,8,488,488,TRN-Support Activities For Transportation +VAL,NAICSP,C,8,491,491,TRN-Postal Service +VAL,NAICSP,C,8,492,492,TRN-Couriers And Messengers +VAL,NAICSP,C,8,493,493,TRN-Warehousing And Storage +VAL,NAICSP,C,8,5121,5121,INF-Motion Pictures And Video Industries +VAL,NAICSP,C,8,5122,5122,INF-Sound Recording Industries +VAL,NAICSP,C,8,51311,51311,INF-Newspaper Publishers +VAL,NAICSP,C,8,5131Z,5131Z,"INF-Periodical, Book, And Directory And Mailing List, And Other Publishers" +VAL,NAICSP,C,8,5132,5132,INF-Software Publishers +VAL,NAICSP,C,8,516,516,INF-Broadcasting And Content Providers +VAL,NAICSP,C,8,517111,517111,INF-Wired Telecommunications Carriers +VAL,NAICSP,C,8,517Z,517Z,"INF-Telecommunications, Except Wired Telecommunications Carriers" +VAL,NAICSP,C,8,5182,5182,"INF-Computing Infrastructure Providers, Data Processing, Web Hosting, And Related Services" +VAL,NAICSP,C,8,51921,51921,INF-Libraries And Archives +VAL,NAICSP,C,8,51929,51929,INF-Web Search Portals And All Other Information Services +VAL,NAICSP,C,8,522M,522M,FIN-Nondepository Credit Intermediation And Related Activities +VAL,NAICSP,C,8,5221M,5221M,"FIN-Credit Unions, And Savings Institutions And Other Depository Credit Intermediation" +VAL,NAICSP,C,8,5241,5241,FIN-Insurance Carriers +VAL,NAICSP,C,8,5242,5242,"FIN-Agencies, Brokerages, And Other Insurance Related Activities" +VAL,NAICSP,C,8,52M2,52M2,"FIN-Securities, Commodities, Funds, Trusts, And Other Financial Investments" +VAL,NAICSP,C,8,52M3,52M3,"FIN-Monetary Authorities-Central Bank, And Commercial Banking" +VAL,NAICSP,C,8,531M,531M,"FIN-Lessors Of Real Estate, And Offices Of Real Estate Agents And Brokers" +VAL,NAICSP,C,8,5313,5313,FIN-Activities Related To Real Estate +VAL,NAICSP,C,8,5321,5321,FIN-Automotive Equipment Rental And Leasing +VAL,NAICSP,C,8,532M2,532M2,"FIN-Consumer Goods Rental, And General Rental Centers" +VAL,NAICSP,C,8,53M,53M,"FIN-Commercial And Industrial Machinery And Equipment, And Nonfinancial Intangible Assets Rental And Leasing" +VAL,NAICSP,C,8,5411,5411,PRF-Legal Services +VAL,NAICSP,C,8,5412,5412,"PRF-Accounting, Tax Preparation, Bookkeeping, And Payroll Services" +VAL,NAICSP,C,8,5413,5413,"PRF-Architectural, Engineering, And Related Services" +VAL,NAICSP,C,8,5414,5414,PRF-Specialized Design Services +VAL,NAICSP,C,8,5415,5415,PRF-Computer Systems Design And Related Services +VAL,NAICSP,C,8,5416,5416,"PRF-Management, Scientific, And Technical Consulting Services" +VAL,NAICSP,C,8,5417,5417,PRF-Scientific Research And Development Services +VAL,NAICSP,C,8,5418,5418,"PRF-Advertising, Public Relations, And Related Services" +VAL,NAICSP,C,8,54194,54194,PRF-Veterinary Services +VAL,NAICSP,C,8,5419Z,5419Z,"PRF-Other Professional, Scientific, And Technical, Except Veterinary, Services" +VAL,NAICSP,C,8,55,55,PRF-Management Of Companies And Enterprises +VAL,NAICSP,C,8,5613,5613,PRF-Employment Services +VAL,NAICSP,C,8,5614,5614,PRF-Business Support Services +VAL,NAICSP,C,8,5615,5615,PRF-Travel Arrangements And Reservation Services +VAL,NAICSP,C,8,5616,5616,PRF-Investigation And Security Services +VAL,NAICSP,C,8,56173,56173,PRF-Landscaping Services +VAL,NAICSP,C,8,5617Z,5617Z,"PRF-Services To Buildings And Dwellings, Except Landscaping Services" +VAL,NAICSP,C,8,561M,561M,PRF-Other Administrative And Other Support Services +VAL,NAICSP,C,8,562,562,PRF-Waste Management And Remediation Services +VAL,NAICSP,C,8,6111,6111,EDU-Elementary And Secondary Schools +VAL,NAICSP,C,8,611M1,611M1,"EDU-Junior Colleges, Colleges, Universities, And Professional Schools" +VAL,NAICSP,C,8,611M2,611M2,"EDU-Business, Trade And Technical Schools, And Computer And Management Training" +VAL,NAICSP,C,8,611M3,611M3,"EDU-Other Schools And Instruction, And Educational Support Services" +VAL,NAICSP,C,8,6211,6211,MED-Offices Of Physicians +VAL,NAICSP,C,8,6212,6212,MED-Offices Of Dentists +VAL,NAICSP,C,8,62131,62131,MED-Offices Of Chiropractors +VAL,NAICSP,C,8,62132,62132,MED-Offices Of Optometrists +VAL,NAICSP,C,8,6213ZM,6213ZM,MED-Offices Of Other Health Practitioners +VAL,NAICSP,C,8,6214,6214,MED-Outpatient Care Centers +VAL,NAICSP,C,8,6216,6216,MED-Home Health Care Services +VAL,NAICSP,C,8,621M,621M,MED-Other Health Care Services +VAL,NAICSP,C,8,622M,622M,"MED-General Medical And Surgical Hospitals, And Specialty (Except Psychiatric And Substance Abuse) Hospitals" +VAL,NAICSP,C,8,6222,6222,MED-Psychiatric And Substance Abuse Hospitals +VAL,NAICSP,C,8,6231,6231,MED-Nursing Care Facilities (Skilled Nursing Facilities) +VAL,NAICSP,C,8,623M,623M,"MED-Residential Care Facilities, Except Skilled Nursing Facilities" +VAL,NAICSP,C,8,6241,6241,SCA-Individual And Family Services +VAL,NAICSP,C,8,6242,6242,"SCA-Community Food And Housing, And Emergency And Other Relief Services" +VAL,NAICSP,C,8,6243,6243,SCA-Vocational Rehabilitation Services +VAL,NAICSP,C,8,6244,6244,SCA-Child Care Services +VAL,NAICSP,C,8,7111,7111,ENT-Performing Arts Companies +VAL,NAICSP,C,8,7112,7112,ENT-Spectator Sports +VAL,NAICSP,C,8,711M,711M,"ENT-Promoters Of Performing Arts, Sports, And Similar Events, Agents And Managers For Artists, Athletes, Entertainers, And Other Public Figures" +VAL,NAICSP,C,8,7115,7115,"ENT-Independent Artists, Writers, And Performers" +VAL,NAICSP,C,8,712,712,"ENT-Museums, Historical Sites, And Similar Institutions" +VAL,NAICSP,C,8,71395,71395,ENT-Bowling Centers +VAL,NAICSP,C,8,713Z,713Z,"ENT-Other Amusement, Gambling, And Recreation Industries" +VAL,NAICSP,C,8,7211,7211,ENT-Traveler Accommodation +VAL,NAICSP,C,8,721M,721M,"ENT-Recreational Vehicle Parks And Camps, And Rooming And Boarding Houses, Dormitories, And Workers' Camps" +VAL,NAICSP,C,8,7224,7224,ENT-Drinking Places (Alcoholic Beverages) +VAL,NAICSP,C,8,722Z,722Z,"ENT-Food Services And Drinking Places, Except Alcoholic Beverages" +VAL,NAICSP,C,8,811192,811192,SRV-Car Washes +VAL,NAICSP,C,8,8111Z,8111Z,SRV-Automotive Repair And Maintenance +VAL,NAICSP,C,8,8112,8112,SRV-Electronic And Precision Equipment Repair And Maintenance +VAL,NAICSP,C,8,8113,8113,SRV-Commercial And Industrial Machinery And Equipment Repair And Maintenance +VAL,NAICSP,C,8,8114,8114,SRV-Personal And Household Goods Repair And Maintenance +VAL,NAICSP,C,8,812111,812111,SRV-Barber Shops +VAL,NAICSP,C,8,812112,812112,SRV-Beauty Salons +VAL,NAICSP,C,8,8121M,8121M,SRV-Nail Salons And Other Personal Care Services +VAL,NAICSP,C,8,8122,8122,SRV-Death Care Services +VAL,NAICSP,C,8,8123,8123,SRV-Drycleaning And Laundry Services +VAL,NAICSP,C,8,8129,8129,SRV-Other Personal Services +VAL,NAICSP,C,8,8131,8131,SRV-Religious Organizations +VAL,NAICSP,C,8,81393,81393,SRV-Labor Unions And Similar Labor Organizations +VAL,NAICSP,C,8,8139Z,8139Z,"SRV-Business, Professional, Political, And Similar Organizations" +VAL,NAICSP,C,8,813M,813M,"SRV-Civic, Social, Advocacy Organizations, And Grantmaking And Giving Services" +VAL,NAICSP,C,8,814,814,SRV-Private Households +VAL,NAICSP,C,8,92113,92113,ADM-Public Finance Activities +VAL,NAICSP,C,8,92119,92119,ADM-Other General Government And Support +VAL,NAICSP,C,8,9211MP,9211MP,ADM-Executive Offices And Legislative Bodies +VAL,NAICSP,C,8,92M1,92M1,"ADM-Administration Of Environmental Quality, And Housing Programs, Urban Planning And Community Development" +VAL,NAICSP,C,8,92M2,92M2,ADM-Administration Of Economic Programs And Space Research And Technology +VAL,NAICSP,C,8,92MP,92MP,"ADM-Justice, Public Order, And Safety Activities" +VAL,NAICSP,C,8,923,923,ADM-Administration Of Human Resource Programs +VAL,NAICSP,C,8,9281P,9281P,ADM-National Security And International Affairs +VAL,NAICSP,C,8,92811P1,92811P1,MIL-U.S. Army +VAL,NAICSP,C,8,92811P2,92811P2,MIL-U.S. Air Force +VAL,NAICSP,C,8,92811P3,92811P3,MIL-U.S. Navy +VAL,NAICSP,C,8,92811P4,92811P4,MIL-U.S. Marines +VAL,NAICSP,C,8,92811P5,92811P5,MIL-U.S. Coast Guard +VAL,NAICSP,C,8,92811P6,92811P6,"MIL-Armed Forces, Branch Not Specified" +VAL,NAICSP,C,8,92811P7,92811P7,MIL-Military Reserves Or National Guard +VAL,NAICSP,C,8,999920,999920,"Unemployed, With No Work Experience In The Last 5 Years Or Earlier Or Never Worked" +NAME,NATIVITY,C,1,Nativity,, +VAL,NATIVITY,C,1,1,1,Native +VAL,NATIVITY,C,1,2,2,Foreign born +NAME,NOP,C,1,Nativity of parent,, +VAL,NOP,C,1,b,b,"N/A (greater than 17 years old/not an own child of householder, and not child in subfamily)" +VAL,NOP,C,1,1,1,Living with two parents: Both parents NATIVE +VAL,NOP,C,1,2,2,Living with two parents: Father only FOREIGN BORN +VAL,NOP,C,1,3,3,Living with two parents: Mother only FOREIGN BORN +VAL,NOP,C,1,4,4,Living with two parents: BOTH parents FOREIGN BORN +VAL,NOP,C,1,5,5,Living with father only: Father NATIVE +VAL,NOP,C,1,6,6,Living with father only: Father FOREIGN BORN +VAL,NOP,C,1,7,7,Living with mother only: Mother NATIVE +VAL,NOP,C,1,8,8,Living with mother only: Mother FOREIGN BORN +NAME,OC,C,1,Own child,, +VAL,OC,C,1,b,b,N/A (in GQ) +VAL,OC,C,1,0,0,No +VAL,OC,C,1,1,1,Yes +NAME,OCCP,C,4,Occupation recode for 2018 and later based on 2018 OCC codes,, +VAL,OCCP,C,4,bbbb,bbbb,N/A (less than 16 years old/NILF who last worked more than 5 years ago or never worked) +VAL,OCCP,C,4,0010,0010,MGR-Chief Executives And Legislators +VAL,OCCP,C,4,0020,0020,MGR-General And Operations Managers +VAL,OCCP,C,4,0040,0040,MGR-Advertising And Promotions Managers +VAL,OCCP,C,4,0051,0051,MGR-Marketing Managers +VAL,OCCP,C,4,0052,0052,MGR-Sales Managers +VAL,OCCP,C,4,0060,0060,MGR-Public Relations And Fundraising Managers +VAL,OCCP,C,4,0101,0101,MGR-Administrative Services Managers +VAL,OCCP,C,4,0102,0102,MGR-Facilities Managers +VAL,OCCP,C,4,0110,0110,MGR-Computer And Information Systems Managers +VAL,OCCP,C,4,0120,0120,MGR-Financial Managers +VAL,OCCP,C,4,0135,0135,MGR-Compensation And Benefits Managers +VAL,OCCP,C,4,0136,0136,MGR-Human Resources Managers +VAL,OCCP,C,4,0137,0137,MGR-Training And Development Managers +VAL,OCCP,C,4,0140,0140,MGR-Industrial Production Managers +VAL,OCCP,C,4,0150,0150,MGR-Purchasing Managers +VAL,OCCP,C,4,0160,0160,"MGR-Transportation, Storage, And Distribution Managers" +VAL,OCCP,C,4,0205,0205,"MGR-Farmers, Ranchers, And Other Agricultural Managers" +VAL,OCCP,C,4,0220,0220,MGR-Construction Managers +VAL,OCCP,C,4,0230,0230,MGR-Education And Childcare Administrators +VAL,OCCP,C,4,0300,0300,MGR-Architectural And Engineering Managers +VAL,OCCP,C,4,0310,0310,MGR-Food Service Managers +VAL,OCCP,C,4,0335,0335,MGR-Entertainment and Recreation Managers +VAL,OCCP,C,4,0340,0340,MGR-Lodging Managers +VAL,OCCP,C,4,0350,0350,MGR-Medical And Health Services Managers +VAL,OCCP,C,4,0360,0360,MGR-Natural Sciences Managers +VAL,OCCP,C,4,0410,0410,"MGR-Property, Real Estate, And Community Association Managers" +VAL,OCCP,C,4,0420,0420,MGR-Social And Community Service Managers +VAL,OCCP,C,4,0425,0425,MGR-Emergency Management Directors +VAL,OCCP,C,4,0440,0440,MGR-Other Managers +VAL,OCCP,C,4,0500,0500,"BUS-Agents And Business Managers Of Artists, Performers, And Athletes" +VAL,OCCP,C,4,0510,0510,"BUS-Buyers And Purchasing Agents, Farm Products" +VAL,OCCP,C,4,0520,0520,"BUS-Wholesale And Retail Buyers, Except Farm Products" +VAL,OCCP,C,4,0530,0530,"BUS-Purchasing Agents, Except Wholesale, Retail, And Farm Products" +VAL,OCCP,C,4,0540,0540,"BUS-Claims Adjusters, Appraisers, Examiners, And Investigators" +VAL,OCCP,C,4,0565,0565,BUS-Compliance Officers +VAL,OCCP,C,4,0600,0600,BUS-Cost Estimators +VAL,OCCP,C,4,0630,0630,BUS-Human Resources Workers +VAL,OCCP,C,4,0640,0640,"BUS-Compensation, Benefits, And Job Analysis Specialists" +VAL,OCCP,C,4,0650,0650,BUS-Training And Development Specialists +VAL,OCCP,C,4,0700,0700,BUS-Logisticians +VAL,OCCP,C,4,0705,0705,BUS-Project Management Specialists +VAL,OCCP,C,4,0710,0710,BUS-Management Analysts +VAL,OCCP,C,4,0725,0725,"BUS-Meeting, Convention, And Event Planners" +VAL,OCCP,C,4,0726,0726,BUS-Fundraisers +VAL,OCCP,C,4,0735,0735,BUS-Market Research Analysts And Marketing Specialists +VAL,OCCP,C,4,0750,0750,"BUS-Business Operations Specialists, All Other" +VAL,OCCP,C,4,0800,0800,FIN-Accountants And Auditors +VAL,OCCP,C,4,0810,0810,FIN-Property Appraisers and Assessors +VAL,OCCP,C,4,0820,0820,FIN-Budget Analysts +VAL,OCCP,C,4,0830,0830,FIN-Credit Analysts +VAL,OCCP,C,4,0845,0845,FIN-Financial And Investment Analysts +VAL,OCCP,C,4,0850,0850,FIN-Personal Financial Advisors +VAL,OCCP,C,4,0860,0860,FIN-Insurance Underwriters +VAL,OCCP,C,4,0900,0900,FIN-Financial Examiners +VAL,OCCP,C,4,0910,0910,FIN-Credit Counselors And Loan Officers +VAL,OCCP,C,4,0930,0930,"FIN-Tax Examiners And Collectors, And Revenue Agents" +VAL,OCCP,C,4,0940,0940,FIN-Tax Preparers +VAL,OCCP,C,4,0960,0960,FIN-Other Financial Specialists +VAL,OCCP,C,4,1005,1005,CMM-Computer And Information Research Scientists +VAL,OCCP,C,4,1006,1006,CMM-Computer Systems Analysts +VAL,OCCP,C,4,1007,1007,CMM-Information Security Analysts +VAL,OCCP,C,4,1010,1010,CMM-Computer Programmers +VAL,OCCP,C,4,1021,1021,CMM-Software Developers +VAL,OCCP,C,4,1022,1022,CMM-Software Quality Assurance Analysts and Testers +VAL,OCCP,C,4,1031,1031,CMM-Web Developers +VAL,OCCP,C,4,1032,1032,CMM-Web And Digital Interface Designers +VAL,OCCP,C,4,1050,1050,CMM-Computer Support Specialists +VAL,OCCP,C,4,1065,1065,CMM-Database Administrators and Architects +VAL,OCCP,C,4,1105,1105,CMM-Network And Computer Systems Administrators +VAL,OCCP,C,4,1106,1106,CMM-Computer Network Architects +VAL,OCCP,C,4,1108,1108,"CMM-Computer Occupations, All Other" +VAL,OCCP,C,4,1200,1200,CMM-Actuaries +VAL,OCCP,C,4,1220,1220,CMM-Operations Research Analysts +VAL,OCCP,C,4,1240,1240,CMM-Other Mathematical Science Occupations +VAL,OCCP,C,4,1305,1305,"ENG-Architects, Except Landscape And Naval" +VAL,OCCP,C,4,1306,1306,ENG-Landscape Architects +VAL,OCCP,C,4,1310,1310,"ENG-Surveyors, Cartographers, And Photogrammetrists" +VAL,OCCP,C,4,1320,1320,ENG-Aerospace Engineers +VAL,OCCP,C,4,1340,1340,ENG-Biomedical And Agricultural Engineers +VAL,OCCP,C,4,1350,1350,ENG-Chemical Engineers +VAL,OCCP,C,4,1360,1360,ENG-Civil Engineers +VAL,OCCP,C,4,1400,1400,ENG-Computer Hardware Engineers +VAL,OCCP,C,4,1410,1410,ENG-Electrical And Electronics Engineers +VAL,OCCP,C,4,1420,1420,ENG-Environmental Engineers +VAL,OCCP,C,4,1430,1430,"ENG-Industrial Engineers, Including Health And Safety" +VAL,OCCP,C,4,1440,1440,ENG-Marine Engineers And Naval Architects +VAL,OCCP,C,4,1450,1450,ENG-Materials Engineers +VAL,OCCP,C,4,1460,1460,ENG-Mechanical Engineers +VAL,OCCP,C,4,1520,1520,"ENG-Petroleum, Mining And Geological Engineers, Including Mining Safety Engineers" +VAL,OCCP,C,4,1530,1530,ENG-Other Engineers +VAL,OCCP,C,4,1541,1541,ENG-Architectural And Civil Drafters +VAL,OCCP,C,4,1545,1545,ENG-Other Drafters +VAL,OCCP,C,4,1551,1551,ENG-Electrical And Electronic Engineering Technologists And Technicians +VAL,OCCP,C,4,1555,1555,"ENG-Other Engineering Technologists And Technicians, Except Drafters" +VAL,OCCP,C,4,1560,1560,ENG-Surveying And Mapping Technicians +VAL,OCCP,C,4,1600,1600,SCI-Agricultural And Food Scientists +VAL,OCCP,C,4,1610,1610,SCI-Biological Scientists +VAL,OCCP,C,4,1640,1640,SCI-Conservation Scientists And Foresters +VAL,OCCP,C,4,1650,1650,SCI-Other Life Scientists +VAL,OCCP,C,4,1700,1700,SCI-Astronomers And Physicists +VAL,OCCP,C,4,1710,1710,SCI-Atmospheric And Space Scientists +VAL,OCCP,C,4,1720,1720,SCI-Chemists And Materials Scientists +VAL,OCCP,C,4,1745,1745,"SCI-Environmental Scientists And Specialists, Including Health" +VAL,OCCP,C,4,1750,1750,"SCI-Geoscientists And Hydrologists, Except Geographers" +VAL,OCCP,C,4,1760,1760,"SCI-Physical Scientists, All Other" +VAL,OCCP,C,4,1800,1800,SCI-Economists +VAL,OCCP,C,4,1821,1821,SCI-Clinical And Counseling Psychologists +VAL,OCCP,C,4,1822,1822,SCI-School Psychologists +VAL,OCCP,C,4,1825,1825,SCI-Other Psychologists +VAL,OCCP,C,4,1840,1840,SCI-Urban And Regional Planners +VAL,OCCP,C,4,1860,1860,SCI-Other Social Scientists +VAL,OCCP,C,4,1900,1900,SCI-Agricultural And Food Science Technicians +VAL,OCCP,C,4,1910,1910,SCI-Biological Technicians +VAL,OCCP,C,4,1920,1920,SCI-Chemical Technicians +VAL,OCCP,C,4,1935,1935,"SCI-Environmental Science and Geoscience Technicians, And Nuclear Technicians" +VAL,OCCP,C,4,1970,1970,"SCI-Other Life, Physical, And Social Science Technicians" +VAL,OCCP,C,4,1980,1980,SCI-Occupational Health And Safety Specialists and Technicians +VAL,OCCP,C,4,2001,2001,CMS-Substance Abuse And Behavioral Disorder Counselors +VAL,OCCP,C,4,2002,2002,"CMS-Educational, Guidance, And Career Counselors And Advisors" +VAL,OCCP,C,4,2003,2003,CMS-Marriage And Family Therapists +VAL,OCCP,C,4,2004,2004,CMS-Mental Health Counselors +VAL,OCCP,C,4,2005,2005,CMS-Rehabilitation Counselors +VAL,OCCP,C,4,2006,2006,"CMS-Counselors, All Other" +VAL,OCCP,C,4,2011,2011,"CMS-Child, Family, And School Social Workers" +VAL,OCCP,C,4,2012,2012,CMS-Healthcare Social Workers +VAL,OCCP,C,4,2013,2013,CMS-Mental Health And Substance Abuse Social Workers +VAL,OCCP,C,4,2014,2014,"CMS-Social Workers, All Other" +VAL,OCCP,C,4,2015,2015,CMS-Probation Officers And Correctional Treatment Specialists +VAL,OCCP,C,4,2016,2016,CMS-Social And Human Service Assistants +VAL,OCCP,C,4,2025,2025,CMS-Other Community and Social Service Specialists +VAL,OCCP,C,4,2040,2040,CMS-Clergy +VAL,OCCP,C,4,2050,2050,"CMS-Directors, Religious Activities And Education" +VAL,OCCP,C,4,2060,2060,"CMS-Religious Workers, All Other" +VAL,OCCP,C,4,2100,2100,"LGL-Lawyers, And Judges, Magistrates, And Other Judicial Workers" +VAL,OCCP,C,4,2105,2105,LGL-Judicial Law Clerks +VAL,OCCP,C,4,2145,2145,LGL-Paralegals And Legal Assistants +VAL,OCCP,C,4,2170,2170,"LGL-Title Examiners, Abstractors, and Searchers" +VAL,OCCP,C,4,2180,2180,"LGL-Legal Support Workers, All Other" +VAL,OCCP,C,4,2205,2205,EDU-Postsecondary Teachers +VAL,OCCP,C,4,2300,2300,EDU-Preschool And Kindergarten Teachers +VAL,OCCP,C,4,2310,2310,EDU-Elementary And Middle School Teachers +VAL,OCCP,C,4,2320,2320,EDU-Secondary School Teachers +VAL,OCCP,C,4,2330,2330,EDU-Special Education Teachers +VAL,OCCP,C,4,2350,2350,EDU-Tutors +VAL,OCCP,C,4,2360,2360,EDU-Other Teachers and Instructors +VAL,OCCP,C,4,2400,2400,"EDU-Archivists, Curators, And Museum Technicians" +VAL,OCCP,C,4,2435,2435,EDU-Librarians And Media Collections Specialists +VAL,OCCP,C,4,2440,2440,EDU-Library Technicians +VAL,OCCP,C,4,2545,2545,EDU-Teaching Assistants +VAL,OCCP,C,4,2555,2555,EDU-Other Educational Instruction and Library Workers +VAL,OCCP,C,4,2600,2600,ENT-Artists And Related Workers +VAL,OCCP,C,4,2631,2631,ENT-Commercial And Industrial Designers +VAL,OCCP,C,4,2632,2632,ENT-Fashion Designers +VAL,OCCP,C,4,2633,2633,ENT-Floral Designers +VAL,OCCP,C,4,2634,2634,ENT-Graphic Designers +VAL,OCCP,C,4,2635,2635,ENT-Interior Designers +VAL,OCCP,C,4,2636,2636,ENT-Merchandise Displayers And Window Trimmers +VAL,OCCP,C,4,2640,2640,ENT-Other Designers +VAL,OCCP,C,4,2700,2700,ENT-Actors +VAL,OCCP,C,4,2710,2710,ENT-Producers And Directors +VAL,OCCP,C,4,2721,2721,ENT-Athletes and Sports Competitors +VAL,OCCP,C,4,2722,2722,ENT-Coaches and Scouts +VAL,OCCP,C,4,2723,2723,"ENT-Umpires, Referees, And Other Sports Officials" +VAL,OCCP,C,4,2740,2740,ENT-Dancers And Choreographers +VAL,OCCP,C,4,2751,2751,ENT-Music Directors and Composers +VAL,OCCP,C,4,2752,2752,ENT-Musicians and Singers +VAL,OCCP,C,4,2755,2755,"ENT-Disc Jockeys, Except Radio" +VAL,OCCP,C,4,2770,2770,"ENT-Entertainers And Performers, Sports and Related Workers, All Other" +VAL,OCCP,C,4,2805,2805,ENT-Broadcast Announcers And Radio Disc Jockeys +VAL,OCCP,C,4,2810,2810,"ENT-News Analysts, Reporters, And Journalists" +VAL,OCCP,C,4,2825,2825,ENT-Public Relations Specialists +VAL,OCCP,C,4,2830,2830,ENT-Editors +VAL,OCCP,C,4,2840,2840,ENT-Technical Writers +VAL,OCCP,C,4,2850,2850,ENT-Writers And Authors +VAL,OCCP,C,4,2861,2861,ENT-Interpreters and Translators +VAL,OCCP,C,4,2862,2862,ENT-Court Reporters and Simultaneous Captioners +VAL,OCCP,C,4,2865,2865,"ENT-Media And Communication Workers, All Other" +VAL,OCCP,C,4,2905,2905,ENT-Other Media And Communication Equipment Workers +VAL,OCCP,C,4,2910,2910,ENT-Photographers +VAL,OCCP,C,4,2920,2920,"ENT-Television, Video, And Film Camera Operators And Editors" +VAL,OCCP,C,4,3000,3000,MED-Chiropractors +VAL,OCCP,C,4,3010,3010,MED-Dentists +VAL,OCCP,C,4,3030,3030,MED-Dietitians And Nutritionists +VAL,OCCP,C,4,3040,3040,MED-Optometrists +VAL,OCCP,C,4,3050,3050,MED-Pharmacists +VAL,OCCP,C,4,3090,3090,MED-Physicians +VAL,OCCP,C,4,3100,3100,MED-Surgeons +VAL,OCCP,C,4,3110,3110,MED-Physician Assistants +VAL,OCCP,C,4,3120,3120,MED-Podiatrists +VAL,OCCP,C,4,3140,3140,MED-Audiologists +VAL,OCCP,C,4,3150,3150,MED-Occupational Therapists +VAL,OCCP,C,4,3160,3160,MED-Physical Therapists +VAL,OCCP,C,4,3200,3200,MED-Radiation Therapists +VAL,OCCP,C,4,3210,3210,MED-Recreational Therapists +VAL,OCCP,C,4,3220,3220,MED-Respiratory Therapists +VAL,OCCP,C,4,3230,3230,MED-Speech-Language Pathologists +VAL,OCCP,C,4,3245,3245,MED-Other Therapists +VAL,OCCP,C,4,3250,3250,MED-Veterinarians +VAL,OCCP,C,4,3255,3255,MED-Registered Nurses +VAL,OCCP,C,4,3256,3256,MED-Nurse Anesthetists +VAL,OCCP,C,4,3258,3258,"MED-Nurse Practitioners, And Nurse Midwives" +VAL,OCCP,C,4,3261,3261,MED-Acupuncturists +VAL,OCCP,C,4,3270,3270,"MED-Healthcare Diagnosing Or Treating Practitioners, All Other" +VAL,OCCP,C,4,3300,3300,MED-Clinical Laboratory Technologists And Technicians +VAL,OCCP,C,4,3310,3310,MED-Dental Hygienists +VAL,OCCP,C,4,3321,3321,MED-Cardiovascular Technologists and Technicians +VAL,OCCP,C,4,3322,3322,MED-Diagnostic Medical Sonographers +VAL,OCCP,C,4,3323,3323,MED-Radiologic Technologists And Technicians +VAL,OCCP,C,4,3324,3324,MED-Magnetic Resonance Imaging Technologists +VAL,OCCP,C,4,3330,3330,MED-Nuclear Medicine Technologists and Medical Dosimetrists +VAL,OCCP,C,4,3401,3401,MED-Emergency Medical Technicians +VAL,OCCP,C,4,3402,3402,MED-Paramedics +VAL,OCCP,C,4,3421,3421,MED-Pharmacy Technicians +VAL,OCCP,C,4,3422,3422,MED-Psychiatric Technicians +VAL,OCCP,C,4,3423,3423,MED-Surgical Technologists +VAL,OCCP,C,4,3424,3424,MED-Veterinary Technologists and Technicians +VAL,OCCP,C,4,3430,3430,MED-Dietetic Technicians And Ophthalmic Medical Technicians +VAL,OCCP,C,4,3500,3500,MED-Licensed Practical And Licensed Vocational Nurses +VAL,OCCP,C,4,3515,3515,MED-Medical Records Specialists +VAL,OCCP,C,4,3520,3520,"MED-Opticians, Dispensing" +VAL,OCCP,C,4,3545,3545,MED-Miscellaneous Health Technologists and Technicians +VAL,OCCP,C,4,3550,3550,MED-Other Healthcare Practitioners and Technical Occupations +VAL,OCCP,C,4,3601,3601,HLS-Home Health Aides +VAL,OCCP,C,4,3602,3602,HLS-Personal Care Aides +VAL,OCCP,C,4,3603,3603,HLS-Nursing Assistants +VAL,OCCP,C,4,3605,3605,HLS-Orderlies and Psychiatric Aides +VAL,OCCP,C,4,3610,3610,HLS-Occupational Therapy Assistants And Aides +VAL,OCCP,C,4,3620,3620,HLS-Physical Therapist Assistants And Aides +VAL,OCCP,C,4,3630,3630,HLS-Massage Therapists +VAL,OCCP,C,4,3640,3640,HLS-Dental Assistants +VAL,OCCP,C,4,3645,3645,HLS-Medical Assistants +VAL,OCCP,C,4,3646,3646,HLS-Medical Transcriptionists +VAL,OCCP,C,4,3647,3647,HLS-Pharmacy Aides +VAL,OCCP,C,4,3648,3648,HLS-Veterinary Assistants And Laboratory Animal Caretakers +VAL,OCCP,C,4,3649,3649,HLS-Phlebotomists +VAL,OCCP,C,4,3655,3655,HLS-Other Healthcare Support Workers +VAL,OCCP,C,4,3700,3700,PRT-First-Line Supervisors Of Correctional Officers +VAL,OCCP,C,4,3710,3710,PRT-First-Line Supervisors Of Police And Detectives +VAL,OCCP,C,4,3720,3720,PRT-First-Line Supervisors Of Firefighting And Prevention Workers +VAL,OCCP,C,4,3725,3725,"PRT-Miscellaneous First-Line Supervisors, Protective Service Workers" +VAL,OCCP,C,4,3740,3740,PRT-Firefighters +VAL,OCCP,C,4,3750,3750,PRT-Fire Inspectors +VAL,OCCP,C,4,3801,3801,PRT-Bailiffs +VAL,OCCP,C,4,3802,3802,PRT-Correctional Officers and Jailers +VAL,OCCP,C,4,3820,3820,PRT-Detectives And Criminal Investigators +VAL,OCCP,C,4,3840,3840,PRT-Fish And Game Wardens And Parking Enforcement Officers +VAL,OCCP,C,4,3870,3870,PRT-Police Officers +VAL,OCCP,C,4,3900,3900,PRT-Animal Control Workers +VAL,OCCP,C,4,3910,3910,PRT-Private Detectives And Investigators +VAL,OCCP,C,4,3930,3930,PRT-Security Guards And Gambling Surveillance Officers +VAL,OCCP,C,4,3940,3940,PRT-Crossing Guards And Flaggers +VAL,OCCP,C,4,3945,3945,PRT-Transportation Security Screeners +VAL,OCCP,C,4,3946,3946,PRT-School Bus Monitors +VAL,OCCP,C,4,3960,3960,PRT-Other Protective Service Workers +VAL,OCCP,C,4,4000,4000,EAT-Chefs And Head Cooks +VAL,OCCP,C,4,4010,4010,EAT-First-Line Supervisors Of Food Preparation And Serving Workers +VAL,OCCP,C,4,4020,4020,EAT-Cooks +VAL,OCCP,C,4,4030,4030,EAT-Food Preparation Workers +VAL,OCCP,C,4,4040,4040,EAT-Bartenders +VAL,OCCP,C,4,4055,4055,EAT-Fast Food And Counter Workers +VAL,OCCP,C,4,4110,4110,EAT-Waiters And Waitresses +VAL,OCCP,C,4,4120,4120,"EAT-Food Servers, Nonrestaurant" +VAL,OCCP,C,4,4130,4130,EAT-Dining Room And Cafeteria Attendants And Bartender Helpers +VAL,OCCP,C,4,4140,4140,EAT-Dishwashers +VAL,OCCP,C,4,4150,4150,"EAT-Hosts And Hostesses, Restaurant, Lounge, And Coffee Shop" +VAL,OCCP,C,4,4160,4160,"EAT-Food Preparation and Serving Related Workers, All Other" +VAL,OCCP,C,4,4200,4200,CLN-First-Line Supervisors Of Housekeeping And Janitorial Workers +VAL,OCCP,C,4,4210,4210,"CLN-First-Line Supervisors Of Landscaping, Lawn Service, And Groundskeeping Workers" +VAL,OCCP,C,4,4220,4220,CLN-Janitors And Building Cleaners +VAL,OCCP,C,4,4230,4230,CLN-Maids And Housekeeping Cleaners +VAL,OCCP,C,4,4240,4240,CLN-Pest Control Workers +VAL,OCCP,C,4,4251,4251,CLN-Landscaping And Groundskeeping Workers +VAL,OCCP,C,4,4252,4252,CLN-Tree Trimmers and Pruners +VAL,OCCP,C,4,4255,4255,CLN-Other Grounds Maintenance Workers +VAL,OCCP,C,4,4330,4330,PRS-Supervisors Of Personal Care And Service Workers +VAL,OCCP,C,4,4340,4340,PRS-Animal Trainers +VAL,OCCP,C,4,4350,4350,PRS-Animal Caretakers +VAL,OCCP,C,4,4400,4400,PRS-Gambling Services Workers +VAL,OCCP,C,4,4420,4420,"PRS-Ushers, Lobby Attendants, And Ticket Takers" +VAL,OCCP,C,4,4435,4435,PRS-Other Entertainment Attendants And Related Workers +VAL,OCCP,C,4,4461,4461,"PRS-Embalmers, Crematory Operators And Funeral Attendants" +VAL,OCCP,C,4,4465,4465,"PRS-Morticians, Undertakers, And Funeral Arrangers" +VAL,OCCP,C,4,4500,4500,PRS-Barbers +VAL,OCCP,C,4,4510,4510,"PRS-Hairdressers, Hairstylists, And Cosmetologists" +VAL,OCCP,C,4,4521,4521,PRS-Manicurists And Pedicurists +VAL,OCCP,C,4,4522,4522,PRS-Skincare Specialists +VAL,OCCP,C,4,4525,4525,PRS-Other Personal Appearance Workers +VAL,OCCP,C,4,4530,4530,"PRS-Baggage Porters, Bellhops, And Concierges" +VAL,OCCP,C,4,4540,4540,PRS-Tour And Travel Guides +VAL,OCCP,C,4,4600,4600,PRS-Childcare Workers +VAL,OCCP,C,4,4621,4621,PRS-Exercise Trainers And Group Fitness Instructors +VAL,OCCP,C,4,4622,4622,PRS-Recreation Workers +VAL,OCCP,C,4,4640,4640,PRS-Residential Advisors +VAL,OCCP,C,4,4655,4655,"PRS-Personal Care and Service Workers, All Other" +VAL,OCCP,C,4,4700,4700,SAL-First-Line Supervisors Of Retail Sales Workers +VAL,OCCP,C,4,4710,4710,SAL-First-Line Supervisors Of Non-Retail Sales Workers +VAL,OCCP,C,4,4720,4720,SAL-Cashiers +VAL,OCCP,C,4,4740,4740,SAL-Counter And Rental Clerks +VAL,OCCP,C,4,4750,4750,SAL-Parts Salespersons +VAL,OCCP,C,4,4760,4760,SAL-Retail Salespersons +VAL,OCCP,C,4,4800,4800,SAL-Advertising Sales Agents +VAL,OCCP,C,4,4810,4810,SAL-Insurance Sales Agents +VAL,OCCP,C,4,4820,4820,"SAL-Securities, Commodities, And Financial Services Sales Agents" +VAL,OCCP,C,4,4830,4830,SAL-Travel Agents +VAL,OCCP,C,4,4840,4840,"SAL-Sales Representatives Of Services, Except Advertising, Insurance, Financial Services, And Travel" +VAL,OCCP,C,4,4850,4850,"SAL-Sales Representatives, Wholesale And Manufacturing" +VAL,OCCP,C,4,4900,4900,"SAL-Models, Demonstrators, And Product Promoters" +VAL,OCCP,C,4,4920,4920,SAL-Real Estate Brokers And Sales Agents +VAL,OCCP,C,4,4930,4930,SAL-Sales Engineers +VAL,OCCP,C,4,4940,4940,SAL-Telemarketers +VAL,OCCP,C,4,4950,4950,"SAL-Door-To-Door Sales Workers, News And Street Vendors, And Related Workers" +VAL,OCCP,C,4,4965,4965,"SAL-Sales And Related Workers, All Other" +VAL,OCCP,C,4,5000,5000,OFF-First-Line Supervisors Of Office And Administrative Support Workers +VAL,OCCP,C,4,5010,5010,"OFF-Switchboard Operators, Including Answering Service" +VAL,OCCP,C,4,5020,5020,OFF-Telephone Operators +VAL,OCCP,C,4,5040,5040,"OFF-Communications Equipment Operators, All Other" +VAL,OCCP,C,4,5100,5100,OFF-Bill And Account Collectors +VAL,OCCP,C,4,5110,5110,OFF-Billing And Posting Clerks +VAL,OCCP,C,4,5120,5120,"OFF-Bookkeeping, Accounting, And Auditing Clerks" +VAL,OCCP,C,4,5140,5140,OFF-Payroll And Timekeeping Clerks +VAL,OCCP,C,4,5150,5150,OFF-Procurement Clerks +VAL,OCCP,C,4,5160,5160,OFF-Tellers +VAL,OCCP,C,4,5165,5165,OFF-Other Financial Clerks +VAL,OCCP,C,4,5220,5220,"OFF-Court, Municipal, And License Clerks" +VAL,OCCP,C,4,5230,5230,"OFF-Credit Authorizers, Checkers, And Clerks" +VAL,OCCP,C,4,5240,5240,OFF-Customer Service Representatives +VAL,OCCP,C,4,5250,5250,"OFF-Eligibility Interviewers, Government Programs" +VAL,OCCP,C,4,5260,5260,OFF-File Clerks +VAL,OCCP,C,4,5300,5300,"OFF-Hotel, Motel, And Resort Desk Clerks" +VAL,OCCP,C,4,5310,5310,"OFF-Interviewers, Except Eligibility And Loan" +VAL,OCCP,C,4,5320,5320,"OFF-Library Assistants, Clerical" +VAL,OCCP,C,4,5330,5330,OFF-Loan Interviewers And Clerks +VAL,OCCP,C,4,5340,5340,OFF-New Accounts Clerks +VAL,OCCP,C,4,5350,5350,OFF-Correspondence Clerks And Order Clerks +VAL,OCCP,C,4,5360,5360,"OFF-Human Resources Assistants, Except Payroll And Timekeeping" +VAL,OCCP,C,4,5400,5400,OFF-Receptionists And Information Clerks +VAL,OCCP,C,4,5410,5410,OFF-Reservation And Transportation Ticket Agents And Travel Clerks +VAL,OCCP,C,4,5420,5420,OFF-Other Information And Records Clerks +VAL,OCCP,C,4,5500,5500,OFF-Cargo And Freight Agents +VAL,OCCP,C,4,5510,5510,OFF-Couriers And Messengers +VAL,OCCP,C,4,5521,5521,OFF-Public Safety Telecommunicators +VAL,OCCP,C,4,5522,5522,"OFF-Dispatchers, Except Police, Fire, And Ambulance" +VAL,OCCP,C,4,5530,5530,"OFF-Meter Readers, Utilities" +VAL,OCCP,C,4,5540,5540,OFF-Postal Service Clerks +VAL,OCCP,C,4,5550,5550,OFF-Postal Service Mail Carriers +VAL,OCCP,C,4,5560,5560,"OFF-Postal Service Mail Sorters, Processors, And Processing Machine Operators" +VAL,OCCP,C,4,5600,5600,"OFF-Production, Planning, And Expediting Clerks" +VAL,OCCP,C,4,5610,5610,"OFF-Shipping, Receiving, And Inventory Clerks" +VAL,OCCP,C,4,5630,5630,"OFF-Weighers, Measurers, Checkers, And Samplers, Recordkeeping" +VAL,OCCP,C,4,5710,5710,OFF-Executive Secretaries And Executive Administrative Assistants +VAL,OCCP,C,4,5720,5720,OFF-Legal Secretaries and Administrative Assistants +VAL,OCCP,C,4,5730,5730,OFF-Medical Secretaries and Administrative Assistants +VAL,OCCP,C,4,5740,5740,"OFF-Secretaries And Administrative Assistants, Except Legal, Medical, And Executive" +VAL,OCCP,C,4,5810,5810,OFF-Data Entry Keyers +VAL,OCCP,C,4,5820,5820,OFF-Word Processors And Typists +VAL,OCCP,C,4,5840,5840,OFF-Insurance Claims And Policy Processing Clerks +VAL,OCCP,C,4,5850,5850,"OFF-Mail Clerks And Mail Machine Operators, Except Postal Service" +VAL,OCCP,C,4,5860,5860,"OFF-Office Clerks, General" +VAL,OCCP,C,4,5900,5900,"OFF-Office Machine Operators, Except Computer" +VAL,OCCP,C,4,5910,5910,OFF-Proofreaders And Copy Markers +VAL,OCCP,C,4,5920,5920,OFF-Statistical Assistants +VAL,OCCP,C,4,5940,5940,OFF-Other Office And Administrative Support Workers +VAL,OCCP,C,4,6005,6005,"FFF-First-Line Supervisors Of Farming, Fishing, And Forestry Workers" +VAL,OCCP,C,4,6010,6010,FFF-Agricultural Inspectors +VAL,OCCP,C,4,6040,6040,"FFF-Graders And Sorters, Agricultural Products" +VAL,OCCP,C,4,6050,6050,FFF-Other Agricultural Workers +VAL,OCCP,C,4,6115,6115,FFF-Fishing And Hunting Workers +VAL,OCCP,C,4,6120,6120,FFF-Forest And Conservation Workers +VAL,OCCP,C,4,6130,6130,FFF-Logging Workers +VAL,OCCP,C,4,6200,6200,CON-First-Line Supervisors Of Construction Trades And Extraction Workers +VAL,OCCP,C,4,6210,6210,CON-Boilermakers +VAL,OCCP,C,4,6220,6220,"CON-Brickmasons, Blockmasons, Stonemasons, And Reinforcing Iron And Rebar Workers" +VAL,OCCP,C,4,6230,6230,CON-Carpenters +VAL,OCCP,C,4,6240,6240,"CON-Carpet, Floor, And Tile Installers And Finishers" +VAL,OCCP,C,4,6250,6250,"CON-Cement Masons, Concrete Finishers, And Terrazzo Workers" +VAL,OCCP,C,4,6260,6260,CON-Construction Laborers +VAL,OCCP,C,4,6305,6305,CON-Construction Equipment Operators +VAL,OCCP,C,4,6330,6330,"CON-Drywall Installers, Ceiling Tile Installers, And Tapers" +VAL,OCCP,C,4,6355,6355,CON-Electricians +VAL,OCCP,C,4,6360,6360,CON-Glaziers +VAL,OCCP,C,4,6400,6400,CON-Insulation Workers +VAL,OCCP,C,4,6410,6410,CON-Painters and Paperhangers +VAL,OCCP,C,4,6441,6441,CON-Pipelayers +VAL,OCCP,C,4,6442,6442,"CON-Plumbers, Pipefitters, And Steamfitters" +VAL,OCCP,C,4,6460,6460,CON-Plasterers And Stucco Masons +VAL,OCCP,C,4,6515,6515,CON-Roofers +VAL,OCCP,C,4,6520,6520,CON-Sheet Metal Workers +VAL,OCCP,C,4,6530,6530,CON-Structural Iron And Steel Workers +VAL,OCCP,C,4,6540,6540,CON-Solar Photovoltaic Installers +VAL,OCCP,C,4,6600,6600,"CON-Helpers, Construction Trades" +VAL,OCCP,C,4,6660,6660,CON-Construction And Building Inspectors +VAL,OCCP,C,4,6700,6700,CON-Elevator And Escalator Installers And Repairers +VAL,OCCP,C,4,6710,6710,CON-Fence Erectors +VAL,OCCP,C,4,6720,6720,CON-Hazardous Materials Removal Workers +VAL,OCCP,C,4,6730,6730,CON-Highway Maintenance Workers +VAL,OCCP,C,4,6740,6740,CON-Rail-Track Laying And Maintenance Equipment Operators +VAL,OCCP,C,4,6765,6765,CON-Other Construction And Related Workers +VAL,OCCP,C,4,6800,6800,"EXT-Derrick, Rotary Drill, And Service Unit Operators, And Roustabouts, Oil And Gas" +VAL,OCCP,C,4,6825,6825,EXT-Surface Mining Machine Operators And Earth Drillers +VAL,OCCP,C,4,6835,6835,"EXT-Explosives Workers, Ordnance Handling Experts, and Blasters" +VAL,OCCP,C,4,6850,6850,EXT-Underground Mining Machine Operators +VAL,OCCP,C,4,6950,6950,EXT-Other Extraction Workers +VAL,OCCP,C,4,7000,7000,"RPR-First-Line Supervisors Of Mechanics, Installers, And Repairers" +VAL,OCCP,C,4,7010,7010,"RPR-Computer, Automated Teller, And Office Machine Repairers" +VAL,OCCP,C,4,7020,7020,RPR-Radio And Telecommunications Equipment Installers And Repairers +VAL,OCCP,C,4,7030,7030,RPR-Avionics Technicians +VAL,OCCP,C,4,7040,7040,"RPR-Electric Motor, Power Tool, And Related Repairers" +VAL,OCCP,C,4,7100,7100,"RPR-Other Electrical And Electronic Equipment Mechanics, Installers, And Repairers" +VAL,OCCP,C,4,7120,7120,RPR-Audiovisual Equipment Installers And Repairers +VAL,OCCP,C,4,7130,7130,RPR-Security And Fire Alarm Systems Installers +VAL,OCCP,C,4,7140,7140,RPR-Aircraft Mechanics And Service Technicians +VAL,OCCP,C,4,7150,7150,RPR-Automotive Body And Related Repairers +VAL,OCCP,C,4,7160,7160,RPR-Automotive Glass Installers And Repairers +VAL,OCCP,C,4,7200,7200,RPR-Automotive Service Technicians And Mechanics +VAL,OCCP,C,4,7210,7210,RPR-Bus And Truck Mechanics And Diesel Engine Specialists +VAL,OCCP,C,4,7220,7220,RPR-Heavy Vehicle And Mobile Equipment Service Technicians And Mechanics +VAL,OCCP,C,4,7240,7240,RPR-Small Engine Mechanics +VAL,OCCP,C,4,7260,7260,"RPR-Miscellaneous Vehicle And Mobile Equipment Mechanics, Installers, And Repairers" +VAL,OCCP,C,4,7300,7300,RPR-Control And Valve Installers And Repairers +VAL,OCCP,C,4,7315,7315,"RPR-Heating, Air Conditioning, And Refrigeration Mechanics And Installers" +VAL,OCCP,C,4,7320,7320,RPR-Home Appliance Repairers +VAL,OCCP,C,4,7330,7330,RPR-Industrial And Refractory Machinery Mechanics +VAL,OCCP,C,4,7340,7340,"RPR-Maintenance And Repair Workers, General" +VAL,OCCP,C,4,7350,7350,"RPR-Maintenance Workers, Machinery" +VAL,OCCP,C,4,7360,7360,RPR-Millwrights +VAL,OCCP,C,4,7410,7410,RPR-Electrical Power-Line Installers And Repairers +VAL,OCCP,C,4,7420,7420,RPR-Telecommunications Line Installers And Repairers +VAL,OCCP,C,4,7430,7430,RPR-Precision Instrument And Equipment Repairers +VAL,OCCP,C,4,7510,7510,"RPR-Coin, Vending, And Amusement Machine Servicers And Repairers" +VAL,OCCP,C,4,7540,7540,RPR-Locksmiths And Safe Repairers +VAL,OCCP,C,4,7560,7560,RPR-Riggers +VAL,OCCP,C,4,7610,7610,"RPR-Helpers--Installation, Maintenance, And Repair Workers" +VAL,OCCP,C,4,7640,7640,"RPR-Other Installation, Maintenance, And Repair Workers" +VAL,OCCP,C,4,7700,7700,PRD-First-Line Supervisors Of Production And Operating Workers +VAL,OCCP,C,4,7720,7720,"PRD-Electrical, Electronics, And Electromechanical Assemblers" +VAL,OCCP,C,4,7730,7730,PRD-Engine And Other Machine Assemblers +VAL,OCCP,C,4,7740,7740,PRD-Structural Metal Fabricators And Fitters +VAL,OCCP,C,4,7750,7750,PRD-Other Assemblers And Fabricators +VAL,OCCP,C,4,7800,7800,PRD-Bakers +VAL,OCCP,C,4,7810,7810,"PRD-Butchers And Other Meat, Poultry, And Fish Processing Workers" +VAL,OCCP,C,4,7830,7830,"PRD-Food And Tobacco Roasting, Baking, And Drying Machine Operators And Tenders" +VAL,OCCP,C,4,7840,7840,PRD-Food Batchmakers +VAL,OCCP,C,4,7850,7850,PRD-Food Cooking Machine Operators And Tenders +VAL,OCCP,C,4,7855,7855,"PRD-Food Processing Workers, All Other" +VAL,OCCP,C,4,7905,7905,PRD-Computer Numerically Controlled Tool Operators And Programmers +VAL,OCCP,C,4,7925,7925,"PRD-Forming Machine Setters, Operators, And Tenders, Metal And Plastic" +VAL,OCCP,C,4,7950,7950,"PRD-Cutting, Punching, And Press Machine Setters, Operators, And Tenders, Metal And Plastic" +VAL,OCCP,C,4,8000,8000,"PRD-Grinding, Lapping, Polishing, And Buffing Machine Tool Setters, Operators, And Tenders, Metal And Plastic" +VAL,OCCP,C,4,8025,8025,"PRD-Other Machine Tool Setters, Operators, And Tenders, Metal and Plastic" +VAL,OCCP,C,4,8030,8030,PRD-Machinists +VAL,OCCP,C,4,8040,8040,"PRD-Metal Furnace Operators, Tenders, Pourers, And Casters" +VAL,OCCP,C,4,8100,8100,"PRD-Model Makers, Patternmakers, And Molding Machine Setters, Metal And Plastic" +VAL,OCCP,C,4,8130,8130,PRD-Tool And Die Makers +VAL,OCCP,C,4,8140,8140,"PRD-Welding, Soldering, And Brazing Workers" +VAL,OCCP,C,4,8225,8225,PRD-Other Metal Workers And Plastic Workers +VAL,OCCP,C,4,8250,8250,PRD-Prepress Technicians And Workers +VAL,OCCP,C,4,8255,8255,PRD-Printing Press Operators +VAL,OCCP,C,4,8256,8256,PRD-Print Binding And Finishing Workers +VAL,OCCP,C,4,8300,8300,PRD-Laundry And Dry-Cleaning Workers +VAL,OCCP,C,4,8310,8310,"PRD-Pressers, Textile, Garment, And Related Materials" +VAL,OCCP,C,4,8320,8320,PRD-Sewing Machine Operators +VAL,OCCP,C,4,8335,8335,PRD-Shoe And Leather Workers +VAL,OCCP,C,4,8350,8350,"PRD-Tailors, Dressmakers, And Sewers" +VAL,OCCP,C,4,8365,8365,"PRD-Textile Machine Setters, Operators, And Tenders" +VAL,OCCP,C,4,8450,8450,PRD-Upholsterers +VAL,OCCP,C,4,8465,8465,"PRD-Other Textile, Apparel, And Furnishings Workers" +VAL,OCCP,C,4,8500,8500,PRD-Cabinetmakers And Bench Carpenters +VAL,OCCP,C,4,8510,8510,PRD-Furniture Finishers +VAL,OCCP,C,4,8530,8530,"PRD-Sawing Machine Setters, Operators, And Tenders, Wood" +VAL,OCCP,C,4,8540,8540,"PRD-Woodworking Machine Setters, Operators, And Tenders, Except Sawing" +VAL,OCCP,C,4,8555,8555,PRD-Other Woodworkers +VAL,OCCP,C,4,8600,8600,"PRD-Power Plant Operators, Distributors, And Dispatchers" +VAL,OCCP,C,4,8610,8610,PRD-Stationary Engineers And Boiler Operators +VAL,OCCP,C,4,8620,8620,PRD-Water And Wastewater Treatment Plant And System Operators +VAL,OCCP,C,4,8630,8630,PRD-Miscellaneous Plant And System Operators +VAL,OCCP,C,4,8640,8640,"PRD-Chemical Processing Machine Setters, Operators, And Tenders" +VAL,OCCP,C,4,8650,8650,"PRD-Crushing, Grinding, Polishing, Mixing, And Blending Workers" +VAL,OCCP,C,4,8710,8710,PRD-Cutting Workers +VAL,OCCP,C,4,8720,8720,"PRD-Extruding, Forming, Pressing, And Compacting Machine Setters, Operators, And Tenders" +VAL,OCCP,C,4,8730,8730,"PRD-Furnace, Kiln, Oven, Drier, And Kettle Operators And Tenders" +VAL,OCCP,C,4,8740,8740,"PRD-Inspectors, Testers, Sorters, Samplers, And Weighers" +VAL,OCCP,C,4,8750,8750,PRD-Jewelers And Precious Stone And Metal Workers +VAL,OCCP,C,4,8760,8760,PRD-Dental And Ophthalmic Laboratory Technicians And Medical Appliance Technicians +VAL,OCCP,C,4,8800,8800,PRD-Packaging And Filling Machine Operators And Tenders +VAL,OCCP,C,4,8810,8810,PRD-Painting Workers +VAL,OCCP,C,4,8830,8830,PRD-Photographic Process Workers And Processing Machine Operators +VAL,OCCP,C,4,8850,8850,PRD-Adhesive Bonding Machine Operators And Tenders +VAL,OCCP,C,4,8910,8910,PRD-Etchers And Engravers +VAL,OCCP,C,4,8920,8920,"PRD-Molders, Shapers, And Casters, Except Metal And Plastic" +VAL,OCCP,C,4,8930,8930,"PRD-Paper Goods Machine Setters, Operators, And Tenders" +VAL,OCCP,C,4,8940,8940,PRD-Tire Builders +VAL,OCCP,C,4,8950,8950,PRD-Helpers--Production Workers +VAL,OCCP,C,4,8990,8990,"PRD-Miscellaneous Production Workers, Including Equipment Operators And Tenders" +VAL,OCCP,C,4,9005,9005,TRN-Supervisors Of Transportation And Material Moving Workers +VAL,OCCP,C,4,9030,9030,TRN-Aircraft Pilots And Flight Engineers +VAL,OCCP,C,4,9040,9040,TRN-Air Traffic Controllers And Airfield Operations Specialists +VAL,OCCP,C,4,9050,9050,TRN-Flight Attendants +VAL,OCCP,C,4,9110,9110,"TRN-Ambulance Drivers And Attendants, Except Emergency Medical Technicians" +VAL,OCCP,C,4,9121,9121,"TRN-Bus Drivers, School" +VAL,OCCP,C,4,9122,9122,"TRN-Bus Drivers, Transit And Intercity" +VAL,OCCP,C,4,9130,9130,TRN-Driver/Sales Workers And Truck Drivers +VAL,OCCP,C,4,9141,9141,TRN-Shuttle Drivers And Chauffeurs +VAL,OCCP,C,4,9142,9142,TRN-Taxi Drivers +VAL,OCCP,C,4,9150,9150,"TRN-Motor Vehicle Operators, All Other" +VAL,OCCP,C,4,9210,9210,TRN-Locomotive Engineers And Operators +VAL,OCCP,C,4,9240,9240,TRN-Railroad Conductors And Yardmasters +VAL,OCCP,C,4,9265,9265,TRN-Other Rail Transportation Workers +VAL,OCCP,C,4,9300,9300,"TRN-Sailors And Marine Oilers, And Ship Engineers" +VAL,OCCP,C,4,9310,9310,TRN-Ship And Boat Captains And Operators +VAL,OCCP,C,4,9350,9350,TRN-Parking Attendants +VAL,OCCP,C,4,9365,9365,TRN-Transportation Service Attendants +VAL,OCCP,C,4,9410,9410,TRN-Transportation Inspectors +VAL,OCCP,C,4,9415,9415,TRN-Passenger Attendants +VAL,OCCP,C,4,9430,9430,TRN-Other Transportation Workers +VAL,OCCP,C,4,9510,9510,TRN-Crane And Tower Operators +VAL,OCCP,C,4,9570,9570,"TRN-Conveyor, Dredge, And Hoist and Winch Operators" +VAL,OCCP,C,4,9600,9600,TRN-Industrial Truck And Tractor Operators +VAL,OCCP,C,4,9610,9610,TRN-Cleaners Of Vehicles And Equipment +VAL,OCCP,C,4,9620,9620,"TRN-Laborers And Freight, Stock, And Material Movers, Hand" +VAL,OCCP,C,4,9630,9630,TRN-Machine Feeders And Offbearers +VAL,OCCP,C,4,9640,9640,"TRN-Packers And Packagers, Hand" +VAL,OCCP,C,4,9645,9645,TRN-Stockers And Order Fillers +VAL,OCCP,C,4,9650,9650,TRN-Pumping Station Operators +VAL,OCCP,C,4,9720,9720,TRN-Refuse And Recyclable Material Collectors +VAL,OCCP,C,4,9760,9760,TRN-Other Material Moving Workers +VAL,OCCP,C,4,9800,9800,MIL-Military Officer Special And Tactical Operations Leaders +VAL,OCCP,C,4,9810,9810,MIL-First-Line Enlisted Military Supervisors +VAL,OCCP,C,4,9825,9825,MIL-Military Enlisted Tactical Operations And Air/Weapons Specialists And Crew Members +VAL,OCCP,C,4,9830,9830,"MIL-Military, Rank Not Specified" +VAL,OCCP,C,4,9920,9920,"Unemployed, With No Work Experience In The Last 5 Years Or Earlier Or Never Worked" +NAME,PAOC,C,1,Presence and age of own children,, +VAL,PAOC,C,1,b,b,N/A (male/female under 16 years old/GQ) +VAL,PAOC,C,1,1,1,Females with own children under 6 years only +VAL,PAOC,C,1,2,2,Females with own children 6 to 17 years only +VAL,PAOC,C,1,3,3,Females with own children under 6 years and 6 to 17 years +VAL,PAOC,C,1,4,4,Females with no own children +NAME,PERNP,N,7,Total person's earnings (use ADJINC to adjust to constant dollars),, +VAL,PERNP,N,7,bbbbbbb,bbbbbbb,N/A (less than 16 years old) +VAL,PERNP,N,7,0,0,No earnings +VAL,PERNP,N,7,-10000,-10000,Loss of $10000 or more (Rounded and bottom- coded components) +VAL,PERNP,N,7,-9999,-1,Loss $1 to $9999 (Rounded components) +VAL,PERNP,N,7,1,1999998,$1 to $1999998 (Rounded and top-coded components) +NAME,PINCP,N,7,Total person's income (use ADJINC to adjust to constant dollars),, +VAL,PINCP,N,7,bbbbbbb,bbbbbbb,N/A (less than 15 years old) +VAL,PINCP,N,7,0,0,None +VAL,PINCP,N,7,-19998,-19998,Loss of $19998 or more (Rounded and bottom- coded components) +VAL,PINCP,N,7,-19997,-1,Loss $1 to $19997 (Rounded components) +VAL,PINCP,N,7,1,4209995,$1 to $4209995 (Rounded and top-coded components) +NAME,POBP,C,3,Place of birth (Recode),, +VAL,POBP,C,3,001,001,Alabama/AL +VAL,POBP,C,3,002,002,Alaska/AK +VAL,POBP,C,3,004,004,Arizona/AZ +VAL,POBP,C,3,005,005,Arkansas/AR +VAL,POBP,C,3,006,006,California/CA +VAL,POBP,C,3,008,008,Colorado/CO +VAL,POBP,C,3,009,009,Connecticut/CT +VAL,POBP,C,3,010,010,Delaware/DE +VAL,POBP,C,3,011,011,District of Columbia/DC +VAL,POBP,C,3,012,012,Florida/FL +VAL,POBP,C,3,013,013,Georgia/GA +VAL,POBP,C,3,015,015,Hawaii/HI +VAL,POBP,C,3,016,016,Idaho/ID +VAL,POBP,C,3,017,017,Illinois/IL +VAL,POBP,C,3,018,018,Indiana/IN +VAL,POBP,C,3,019,019,Iowa/IA +VAL,POBP,C,3,020,020,Kansas/KS +VAL,POBP,C,3,021,021,Kentucky/KY +VAL,POBP,C,3,022,022,Louisiana/LA +VAL,POBP,C,3,023,023,Maine/ME +VAL,POBP,C,3,024,024,Maryland/MD +VAL,POBP,C,3,025,025,Massachusetts/MA +VAL,POBP,C,3,026,026,Michigan/MI +VAL,POBP,C,3,027,027,Minnesota/MN +VAL,POBP,C,3,028,028,Mississippi/MS +VAL,POBP,C,3,029,029,Missouri/MO +VAL,POBP,C,3,030,030,Montana/MT +VAL,POBP,C,3,031,031,Nebraska/NE +VAL,POBP,C,3,032,032,Nevada/NV +VAL,POBP,C,3,033,033,New Hampshire/NH +VAL,POBP,C,3,034,034,New Jersey/NJ +VAL,POBP,C,3,035,035,New Mexico/NM +VAL,POBP,C,3,036,036,New York/NY +VAL,POBP,C,3,037,037,North Carolina/NC +VAL,POBP,C,3,038,038,North Dakota/ND +VAL,POBP,C,3,039,039,Ohio/OH +VAL,POBP,C,3,040,040,Oklahoma/OK +VAL,POBP,C,3,041,041,Oregon/OR +VAL,POBP,C,3,042,042,Pennsylvania/PA +VAL,POBP,C,3,044,044,Rhode Island/RI +VAL,POBP,C,3,045,045,South Carolina/SC +VAL,POBP,C,3,046,046,South Dakota/SD +VAL,POBP,C,3,047,047,Tennessee/TN +VAL,POBP,C,3,048,048,Texas/TX +VAL,POBP,C,3,049,049,Utah/UT +VAL,POBP,C,3,050,050,Vermont/VT +VAL,POBP,C,3,051,051,Virginia/VA +VAL,POBP,C,3,053,053,Washington/WA +VAL,POBP,C,3,054,054,West Virginia/WV +VAL,POBP,C,3,055,055,Wisconsin/WI +VAL,POBP,C,3,056,056,Wyoming/WY +VAL,POBP,C,3,060,060,American Samoa +VAL,POBP,C,3,066,066,Guam +VAL,POBP,C,3,069,069,Commonwealth of the Northern Mariana Islands +VAL,POBP,C,3,072,072,Puerto Rico +VAL,POBP,C,3,078,078,US Virgin Islands +VAL,POBP,C,3,100,100,Albania +VAL,POBP,C,3,102,102,Austria +VAL,POBP,C,3,103,103,Belgium +VAL,POBP,C,3,104,104,Bulgaria +VAL,POBP,C,3,105,105,Czechoslovakia +VAL,POBP,C,3,106,106,Denmark +VAL,POBP,C,3,108,108,Finland +VAL,POBP,C,3,109,109,France +VAL,POBP,C,3,110,110,Germany +VAL,POBP,C,3,116,116,Greece +VAL,POBP,C,3,117,117,Hungary +VAL,POBP,C,3,118,118,Iceland +VAL,POBP,C,3,119,119,Ireland +VAL,POBP,C,3,120,120,Italy +VAL,POBP,C,3,126,126,Netherlands +VAL,POBP,C,3,127,127,Norway +VAL,POBP,C,3,128,128,Poland +VAL,POBP,C,3,129,129,Portugal +VAL,POBP,C,3,130,130,Azores Islands +VAL,POBP,C,3,132,132,Romania +VAL,POBP,C,3,134,134,Spain +VAL,POBP,C,3,136,136,Sweden +VAL,POBP,C,3,137,137,Switzerland +VAL,POBP,C,3,138,138,"United Kingdom, Not Specified" +VAL,POBP,C,3,139,139,England +VAL,POBP,C,3,140,140,Scotland +VAL,POBP,C,3,142,142,Northern Ireland +VAL,POBP,C,3,147,147,Yugoslavia +VAL,POBP,C,3,148,148,Czech Republic +VAL,POBP,C,3,149,149,Slovakia +VAL,POBP,C,3,150,150,Bosnia and Herzegovina +VAL,POBP,C,3,151,151,Croatia +VAL,POBP,C,3,152,152,Macedonia +VAL,POBP,C,3,154,154,Serbia +VAL,POBP,C,3,156,156,Latvia +VAL,POBP,C,3,157,157,Lithuania +VAL,POBP,C,3,158,158,Armenia +VAL,POBP,C,3,159,159,Azerbaijan +VAL,POBP,C,3,160,160,Belarus +VAL,POBP,C,3,161,161,Georgia +VAL,POBP,C,3,162,162,Moldova +VAL,POBP,C,3,163,163,Russia +VAL,POBP,C,3,164,164,Ukraine +VAL,POBP,C,3,165,165,USSR +VAL,POBP,C,3,166,166,Europe +VAL,POBP,C,3,167,167,Kosovo +VAL,POBP,C,3,168,168,Montenegro +VAL,POBP,C,3,169,169,"Other Europe, Not Specified" +VAL,POBP,C,3,200,200,Afghanistan +VAL,POBP,C,3,202,202,Bangladesh +VAL,POBP,C,3,203,203,Bhutan +VAL,POBP,C,3,205,205,Myanmar +VAL,POBP,C,3,206,206,Cambodia +VAL,POBP,C,3,207,207,China +VAL,POBP,C,3,209,209,Hong Kong +VAL,POBP,C,3,210,210,India +VAL,POBP,C,3,211,211,Indonesia +VAL,POBP,C,3,212,212,Iran +VAL,POBP,C,3,213,213,Iraq +VAL,POBP,C,3,214,214,Israel +VAL,POBP,C,3,215,215,Japan +VAL,POBP,C,3,216,216,Jordan +VAL,POBP,C,3,217,217,Korea +VAL,POBP,C,3,218,218,Kazakhstan +VAL,POBP,C,3,219,219,Kyrgyzstan +VAL,POBP,C,3,222,222,Kuwait +VAL,POBP,C,3,223,223,Laos +VAL,POBP,C,3,224,224,Lebanon +VAL,POBP,C,3,226,226,Malaysia +VAL,POBP,C,3,228,228,Mongolia +VAL,POBP,C,3,229,229,Nepal +VAL,POBP,C,3,231,231,Pakistan +VAL,POBP,C,3,233,233,Philippines +VAL,POBP,C,3,235,235,Saudi Arabia +VAL,POBP,C,3,236,236,Singapore +VAL,POBP,C,3,238,238,Sri Lanka +VAL,POBP,C,3,239,239,Syria +VAL,POBP,C,3,240,240,Taiwan +VAL,POBP,C,3,242,242,Thailand +VAL,POBP,C,3,243,243,Turkey +VAL,POBP,C,3,245,245,United Arab Emirates +VAL,POBP,C,3,246,246,Uzbekistan +VAL,POBP,C,3,247,247,Vietnam +VAL,POBP,C,3,248,248,Yemen +VAL,POBP,C,3,249,249,Asia +VAL,POBP,C,3,253,253,"South Central Asia, Not Specified" +VAL,POBP,C,3,254,254,"Other Asia, Not Specified" +VAL,POBP,C,3,300,300,Bermuda +VAL,POBP,C,3,301,301,Canada +VAL,POBP,C,3,303,303,Mexico +VAL,POBP,C,3,310,310,Belize +VAL,POBP,C,3,311,311,Costa Rica +VAL,POBP,C,3,312,312,El Salvador +VAL,POBP,C,3,313,313,Guatemala +VAL,POBP,C,3,314,314,Honduras +VAL,POBP,C,3,315,315,Nicaragua +VAL,POBP,C,3,316,316,Panama +VAL,POBP,C,3,321,321,Antigua and Barbuda +VAL,POBP,C,3,323,323,Bahamas +VAL,POBP,C,3,324,324,Barbados +VAL,POBP,C,3,327,327,Cuba +VAL,POBP,C,3,328,328,Dominica +VAL,POBP,C,3,329,329,Dominican Republic +VAL,POBP,C,3,330,330,Grenada +VAL,POBP,C,3,332,332,Haiti +VAL,POBP,C,3,333,333,Jamaica +VAL,POBP,C,3,338,338,St. Kitts-Nevis +VAL,POBP,C,3,339,339,St. Lucia +VAL,POBP,C,3,340,340,St. Vincent and the Grenadines +VAL,POBP,C,3,341,341,Trinidad and Tobago +VAL,POBP,C,3,343,343,West Indies +VAL,POBP,C,3,344,344,"Caribbean, Not Specified" +VAL,POBP,C,3,360,360,Argentina +VAL,POBP,C,3,361,361,Bolivia +VAL,POBP,C,3,362,362,Brazil +VAL,POBP,C,3,363,363,Chile +VAL,POBP,C,3,364,364,Colombia +VAL,POBP,C,3,365,365,Ecuador +VAL,POBP,C,3,368,368,Guyana +VAL,POBP,C,3,369,369,Paraguay +VAL,POBP,C,3,370,370,Peru +VAL,POBP,C,3,372,372,Uruguay +VAL,POBP,C,3,373,373,Venezuela +VAL,POBP,C,3,374,374,South America +VAL,POBP,C,3,399,399,"Americas, Not Specified" +VAL,POBP,C,3,400,400,Algeria +VAL,POBP,C,3,407,407,Cameroon +VAL,POBP,C,3,408,408,Cabo Verde +VAL,POBP,C,3,412,412,Congo +VAL,POBP,C,3,414,414,Egypt +VAL,POBP,C,3,416,416,Ethiopia +VAL,POBP,C,3,417,417,Eritrea +VAL,POBP,C,3,420,420,Gambia +VAL,POBP,C,3,421,421,Ghana +VAL,POBP,C,3,423,423,Guinea +VAL,POBP,C,3,425,425,Ivory Coast +VAL,POBP,C,3,427,427,Kenya +VAL,POBP,C,3,429,429,Liberia +VAL,POBP,C,3,430,430,Libya +VAL,POBP,C,3,436,436,Morocco +VAL,POBP,C,3,440,440,Nigeria +VAL,POBP,C,3,442,442,Rwanda +VAL,POBP,C,3,444,444,Senegal +VAL,POBP,C,3,447,447,Sierra Leone +VAL,POBP,C,3,448,448,Somalia +VAL,POBP,C,3,449,449,South Africa +VAL,POBP,C,3,451,451,Sudan +VAL,POBP,C,3,453,453,Tanzania +VAL,POBP,C,3,454,454,Togo +VAL,POBP,C,3,457,457,Uganda +VAL,POBP,C,3,459,459,Democratic Republic of Congo (Zaire) +VAL,POBP,C,3,460,460,Zambia +VAL,POBP,C,3,461,461,Zimbabwe +VAL,POBP,C,3,462,462,Africa +VAL,POBP,C,3,463,463,South Sudan +VAL,POBP,C,3,464,464,"Northern Africa, Not Specified" +VAL,POBP,C,3,467,467,"Western Africa, Not Specified" +VAL,POBP,C,3,468,468,"Other Africa, Not Specified" +VAL,POBP,C,3,469,469,"Eastern Africa, Not Specified" +VAL,POBP,C,3,501,501,Australia +VAL,POBP,C,3,508,508,Fiji +VAL,POBP,C,3,511,511,Marshall Islands +VAL,POBP,C,3,512,512,Micronesia +VAL,POBP,C,3,515,515,New Zealand +VAL,POBP,C,3,523,523,Tonga +VAL,POBP,C,3,527,527,Samoa +VAL,POBP,C,3,554,554,"Other US Island Areas, Oceania, Not Specified, or at Sea" +NAME,POVPIP,N,3,Income-to-poverty ratio recode,, +VAL,POVPIP,N,3,bbb,bbb,N/A (individuals who are under 15 and are either living in a housing unit but are unrelated to the householder or are living in select group quarters) +VAL,POVPIP,N,3,0,500,Below 501 percent +VAL,POVPIP,N,3,501,501,501 percent or more +NAME,POWPUMA,C,5,Place of work PUMA based on 2020 Census definition,, +VAL,POWPUMA,C,5,bbbbb,bbbbb,"N/A (not a worker-not in the labor force, including persons under 16 years; unemployed; civilian employed, with a job not at work; Armed Forces, with a job but not at work)" +VAL,POWPUMA,C,5,00001,00001,Did not work in the United States or in Puerto Rico +VAL,POWPUMA,C,5,00100,81000,Assigned Place of work PUMA. Use with POWSP. +NAME,POWSP,C,3,Place of work - State or foreign country recode,, +VAL,POWSP,C,3,bbb,bbb,"N/A (not a worker-not in the labor force, including persons under 16 years; unemployed; employed, with a job not at work; Armed Forces, with a job but not at work)" +VAL,POWSP,C,3,001,001,Alabama/AL +VAL,POWSP,C,3,002,002,Alaska/AK +VAL,POWSP,C,3,004,004,Arizona/AZ +VAL,POWSP,C,3,005,005,Arkansas/AR +VAL,POWSP,C,3,006,006,California/CA +VAL,POWSP,C,3,008,008,Colorado/CO +VAL,POWSP,C,3,009,009,Connecticut/CT +VAL,POWSP,C,3,010,010,Delaware/DE +VAL,POWSP,C,3,011,011,District of Columbia/DC +VAL,POWSP,C,3,012,012,Florida/FL +VAL,POWSP,C,3,013,013,Georgia/GA +VAL,POWSP,C,3,015,015,Hawaii/HI +VAL,POWSP,C,3,016,016,Idaho/ID +VAL,POWSP,C,3,017,017,Illinois/IL +VAL,POWSP,C,3,018,018,Indiana/IN +VAL,POWSP,C,3,019,019,Iowa/IA +VAL,POWSP,C,3,020,020,Kansas/KS +VAL,POWSP,C,3,021,021,Kentucky/KY +VAL,POWSP,C,3,022,022,Louisiana/LA +VAL,POWSP,C,3,023,023,Maine/ME +VAL,POWSP,C,3,024,024,Maryland/MD +VAL,POWSP,C,3,025,025,Massachusetts/MA +VAL,POWSP,C,3,026,026,Michigan/MI +VAL,POWSP,C,3,027,027,Minnesota/MN +VAL,POWSP,C,3,028,028,Mississippi/MS +VAL,POWSP,C,3,029,029,Missouri/MO +VAL,POWSP,C,3,030,030,Montana/MT +VAL,POWSP,C,3,031,031,Nebraska/NE +VAL,POWSP,C,3,032,032,Nevada/NV +VAL,POWSP,C,3,033,033,New Hampshire/NH +VAL,POWSP,C,3,034,034,New Jersey/NJ +VAL,POWSP,C,3,035,035,New Mexico/NM +VAL,POWSP,C,3,036,036,New York/NY +VAL,POWSP,C,3,037,037,North Carolina/NC +VAL,POWSP,C,3,038,038,North Dakota/ND +VAL,POWSP,C,3,039,039,Ohio/OH +VAL,POWSP,C,3,040,040,Oklahoma/OK +VAL,POWSP,C,3,041,041,Oregon/OR +VAL,POWSP,C,3,042,042,Pennsylvania/PA +VAL,POWSP,C,3,044,044,Rhode Island/RI +VAL,POWSP,C,3,045,045,South Carolina/SC +VAL,POWSP,C,3,046,046,South Dakota/SD +VAL,POWSP,C,3,047,047,Tennessee/TN +VAL,POWSP,C,3,048,048,Texas/TX +VAL,POWSP,C,3,049,049,Utah/UT +VAL,POWSP,C,3,050,050,Vermont/VT +VAL,POWSP,C,3,051,051,Virginia/VA +VAL,POWSP,C,3,053,053,Washington/WA +VAL,POWSP,C,3,054,054,West Virginia/WV +VAL,POWSP,C,3,055,055,Wisconsin/WI +VAL,POWSP,C,3,056,056,Wyoming/WY +VAL,POWSP,C,3,072,072,Puerto Rico +VAL,POWSP,C,3,166,166,Europe +VAL,POWSP,C,3,254,254,Asia +VAL,POWSP,C,3,303,303,Mexico +VAL,POWSP,C,3,399,399,"Americas, Not Specified" +VAL,POWSP,C,3,555,555,"Other US Island Areas Not Specified, Africa, Oceania, at Sea, or Abroad, Not Specified" +NAME,PRIVCOV,C,1,Private health insurance coverage recode,, +VAL,PRIVCOV,C,1,1,1,With private health insurance coverage +VAL,PRIVCOV,C,1,2,2,Without private health insurance coverage +NAME,PUBCOV,C,1,Public health coverage recode,, +VAL,PUBCOV,C,1,1,1,With public health coverage +VAL,PUBCOV,C,1,2,2,Without public health coverage +NAME,QTRBIR,C,1,Quarter of birth,, +VAL,QTRBIR,C,1,1,1,January through March +VAL,QTRBIR,C,1,2,2,April through June +VAL,QTRBIR,C,1,3,3,July through September +VAL,QTRBIR,C,1,4,4,October through December +NAME,RAC1P,C,1,Recoded detailed race code,, +VAL,RAC1P,C,1,1,1,White alone +VAL,RAC1P,C,1,2,2,Black or African American alone +VAL,RAC1P,C,1,3,3,American Indian alone +VAL,RAC1P,C,1,4,4,Alaska Native alone +VAL,RAC1P,C,1,5,5,"American Indian and Alaska Native tribes specified; or American Indian or Alaska Native, not specified and no other races" +VAL,RAC1P,C,1,6,6,Asian alone +VAL,RAC1P,C,1,7,7,Native Hawaiian and Other Pacific Islander alone +VAL,RAC1P,C,1,8,8,Some Other Race alone +VAL,RAC1P,C,1,9,9,Two or More Races +NAME,RAC2P,C,4,Recoded detailed race code,, +VAL,RAC2P,C,4,1000,1000,White alone +VAL,RAC2P,C,4,3000,3000,Black or African American alone +VAL,RAC2P,C,4,4000,4000,"Chinese, except Taiwanese alone" +VAL,RAC2P,C,4,4001,4001,Hmong alone +VAL,RAC2P,C,4,4002,4002,Japanese alone +VAL,RAC2P,C,4,4003,4003,Korean alone +VAL,RAC2P,C,4,4004,4004,Mongolian alone +VAL,RAC2P,C,4,4005,4005,Taiwanese alone +VAL,RAC2P,C,4,4006,4006,Burmese alone +VAL,RAC2P,C,4,4007,4007,Cambodian alone +VAL,RAC2P,C,4,4008,4008,Filipino alone +VAL,RAC2P,C,4,4009,4009,Indonesian alone +VAL,RAC2P,C,4,4010,4010,Laotian alone +VAL,RAC2P,C,4,4011,4011,Malaysian alone +VAL,RAC2P,C,4,4012,4012,Mien alone +VAL,RAC2P,C,4,4013,4013,Thai alone +VAL,RAC2P,C,4,4014,4014,Vietnamese alone +VAL,RAC2P,C,4,4015,4015,Asian Indian alone +VAL,RAC2P,C,4,4016,4016,Bangladeshi alone +VAL,RAC2P,C,4,4017,4017,Bhutanese alone +VAL,RAC2P,C,4,4018,4018,Nepalese alone +VAL,RAC2P,C,4,4019,4019,Pakistani alone +VAL,RAC2P,C,4,4020,4020,Sikh alone +VAL,RAC2P,C,4,4021,4021,Sri Lankan alone +VAL,RAC2P,C,4,4023,4023,Kazakh alone +VAL,RAC2P,C,4,4024,4024,Uzbek alone +VAL,RAC2P,C,4,4025,4025,Other Asian alone and all Asian combinations +VAL,RAC2P,C,4,5000,5000,Blackfeet Tribe of the Blackfeet Indian Reservation of Montana alone +VAL,RAC2P,C,4,5001,5001,Cherokee Nation alone +VAL,RAC2P,C,4,5002,5002,"Cheyenne River Sioux Tribe of the Cheyenne River Reservation, South Dakota alone" +VAL,RAC2P,C,4,5003,5003,Crow Tribe of Montana alone +VAL,RAC2P,C,4,5004,5004,Hopi Tribe of Arizona alone +VAL,RAC2P,C,4,5005,5005,Lumbee Tribe of North Carolina alone +VAL,RAC2P,C,4,5006,5006,Navajo Nation alone +VAL,RAC2P,C,4,5007,5007,Oglala Sioux Tribe alone +VAL,RAC2P,C,4,5008,5008,Pascua Yaqui Tribe of Arizona alone +VAL,RAC2P,C,4,5009,5009,"Rosebud Sioux Tribe of the Rosebud Indian Reservation, South Dakota alone" +VAL,RAC2P,C,4,5010,5010,The Chickasaw Nation alone +VAL,RAC2P,C,4,5011,5011,The Muscogee (Creek) Nation alone +VAL,RAC2P,C,4,5012,5012,Tohono O'odham Nation of Arizona alone +VAL,RAC2P,C,4,5013,5013,All other American Indian tribes alone +VAL,RAC2P,C,4,5014,5014,"American Indian alone, not specified" +VAL,RAC2P,C,4,5015,5015,Aztec alone +VAL,RAC2P,C,4,5016,5016,Inca alone +VAL,RAC2P,C,4,5017,5017,Maya alone +VAL,RAC2P,C,4,5018,5018,Mixtec alone +VAL,RAC2P,C,4,5019,5019,Taino alone +VAL,RAC2P,C,4,5020,5020,Tarasco (Purepecha) alone +VAL,RAC2P,C,4,5021,5021,All other Latin American Indian alone +VAL,RAC2P,C,4,5022,5022,Alaska Native tribes and villages alone +VAL,RAC2P,C,4,5023,5023,"Alaska Native alone, not specified" +VAL,RAC2P,C,4,5024,5024,Other specified American Indian and Alaska Native combinations +VAL,RAC2P,C,4,5025,5025,"American Indian and Alaska Native alone, not specified" +VAL,RAC2P,C,4,7500,7500,Native Hawaiian alone +VAL,RAC2P,C,4,7501,7501,Samoan alone +VAL,RAC2P,C,4,7502,7502,Tongan alone +VAL,RAC2P,C,4,7503,7503,Chamorro alone +VAL,RAC2P,C,4,7504,7504,Chuukese alone +VAL,RAC2P,C,4,7505,7505,Guamanian alone +VAL,RAC2P,C,4,7506,7506,Marshallese alone +VAL,RAC2P,C,4,7507,7507,Fijian alone +VAL,RAC2P,C,4,7508,7508,Other Native Hawaiian and Other Pacific Islander (NHPI) alone and all NHPI combinations +VAL,RAC2P,C,4,8000,8000,Some Other Race alone +VAL,RAC2P,C,4,9000,9000,Two or More Races +NAME,RAC3P,C,3,Recoded detailed race code,, +VAL,RAC3P,C,3,001,001,White alone +VAL,RAC3P,C,3,002,002,Black or African American alone +VAL,RAC3P,C,3,003,003,American Indian and Alaska Native alone +VAL,RAC3P,C,3,004,004,Asian Indian alone +VAL,RAC3P,C,3,005,005,Chinese alone +VAL,RAC3P,C,3,006,006,Filipino alone +VAL,RAC3P,C,3,007,007,Japanese alone +VAL,RAC3P,C,3,008,008,Korean alone +VAL,RAC3P,C,3,009,009,Vietnamese alone +VAL,RAC3P,C,3,010,010,Other Asian alone +VAL,RAC3P,C,3,011,011,Native Hawaiian alone +VAL,RAC3P,C,3,012,012,Chamorro alone +VAL,RAC3P,C,3,013,013,Samoan alone +VAL,RAC3P,C,3,014,014,Other Pacific Islander alone +VAL,RAC3P,C,3,015,015,Some Other Race alone +VAL,RAC3P,C,3,016,016,White; Black or African American +VAL,RAC3P,C,3,017,017,White; American Indian and Alaska Native +VAL,RAC3P,C,3,018,018,White; Asian Indian +VAL,RAC3P,C,3,019,019,White; Chinese +VAL,RAC3P,C,3,020,020,White; Filipino +VAL,RAC3P,C,3,021,021,White; Japanese +VAL,RAC3P,C,3,022,022,White; Korean +VAL,RAC3P,C,3,023,023,White; Vietnamese +VAL,RAC3P,C,3,024,024,White; Other Asian +VAL,RAC3P,C,3,025,025,White; Native Hawaiian +VAL,RAC3P,C,3,026,026,White; Chamorro +VAL,RAC3P,C,3,027,027,White; Samoan +VAL,RAC3P,C,3,028,028,White; Other Pacific Islander +VAL,RAC3P,C,3,029,029,White; Some Other Race +VAL,RAC3P,C,3,030,030,Black or African American; American Indian and Alaska Native +VAL,RAC3P,C,3,031,031,Black or African American; Asian Indian +VAL,RAC3P,C,3,032,032,Black or African American; Chinese +VAL,RAC3P,C,3,033,033,Black or African American; Filipino +VAL,RAC3P,C,3,034,034,Black or African American; Japanese +VAL,RAC3P,C,3,035,035,Black or African American; Korean +VAL,RAC3P,C,3,036,036,Black or African American; Other Asian +VAL,RAC3P,C,3,037,037,Black or African American; Other Pacific Islander +VAL,RAC3P,C,3,038,038,Black or African American; Some Other Race +VAL,RAC3P,C,3,039,039,American Indian and Alaska Native; Asian Indian +VAL,RAC3P,C,3,040,040,American Indian and Alaska Native; Filipino +VAL,RAC3P,C,3,041,041,American Indian and Alaska Native; Some Other Race +VAL,RAC3P,C,3,042,042,Asian Indian; Other Asian +VAL,RAC3P,C,3,043,043,Asian Indian; Some Other Race +VAL,RAC3P,C,3,044,044,Chinese; Filipino +VAL,RAC3P,C,3,045,045,Chinese; Japanese +VAL,RAC3P,C,3,046,046,Chinese; Korean +VAL,RAC3P,C,3,047,047,Chinese; Vietnamese +VAL,RAC3P,C,3,048,048,Chinese; Other Asian +VAL,RAC3P,C,3,049,049,Chinese; Native Hawaiian +VAL,RAC3P,C,3,050,050,Filipino; Japanese +VAL,RAC3P,C,3,051,051,Filipino; Native Hawaiian +VAL,RAC3P,C,3,052,052,Filipino; Other Pacific Islander +VAL,RAC3P,C,3,053,053,Filipino; Some Other Race +VAL,RAC3P,C,3,054,054,Japanese; Korean +VAL,RAC3P,C,3,055,055,Japanese; Native Hawaiian +VAL,RAC3P,C,3,056,056,Vietnamese; Other Asian +VAL,RAC3P,C,3,057,057,Other Asian; Other Pacific Islander +VAL,RAC3P,C,3,058,058,Other Asian; Some Other Race +VAL,RAC3P,C,3,059,059,Other Pacific Islander; Some Other Race +VAL,RAC3P,C,3,060,060,White; Black or African American; American Indian and Alaska Native +VAL,RAC3P,C,3,061,061,White; Black or African American; Filipino +VAL,RAC3P,C,3,062,062,White; Black or African American; Some Other Race +VAL,RAC3P,C,3,063,063,White; American Indian and Alaska Native; Filipino +VAL,RAC3P,C,3,064,064,White; American Indian and Alaska Native; Some Other Race +VAL,RAC3P,C,3,065,065,White; Chinese; Filipino +VAL,RAC3P,C,3,066,066,White; Chinese; Japanese +VAL,RAC3P,C,3,067,067,White; Chinese; Native Hawaiian +VAL,RAC3P,C,3,068,068,White; Filipino; Native Hawaiian +VAL,RAC3P,C,3,069,069,White; Japanese; Native Hawaiian +VAL,RAC3P,C,3,070,070,White; Other Asian; Some Other Race +VAL,RAC3P,C,3,071,071,Chinese; Filipino; Native Hawaiian +VAL,RAC3P,C,3,072,072,White; Chinese; Filipino; Native Hawaiian +VAL,RAC3P,C,3,073,073,White; Chinese; Japanese; Native Hawaiian +VAL,RAC3P,C,3,074,074,Black or African American; Asian groups +VAL,RAC3P,C,3,075,075,Black or African American; Native Hawaiian and Other Pacific Islander groups +VAL,RAC3P,C,3,076,076,Asian Indian; Asian groups +VAL,RAC3P,C,3,077,077,Filipino; Asian groups +VAL,RAC3P,C,3,078,078,White; Black or African American; Asian groups +VAL,RAC3P,C,3,079,079,White; American Indian and Alaska Native; Asian groups +VAL,RAC3P,C,3,080,080,White; Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,081,081,White; Black or African American; American Indian and Alaska Native; Asian groups +VAL,RAC3P,C,3,082,082,White; Black or African American; American Indian and Alaska Native; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,083,083,White; Black or African American; and/or Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,084,084,White; American Indian and Alaska Native; and/or Asian groups; and/or Native Hawaiian and Other Pacific Islander groups +VAL,RAC3P,C,3,085,085,White; Chinese; Filipino; and/or Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,086,086,White; Chinese; and/or Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,087,087,White; Filipino; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,088,088,White; Japanese; and/or Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,089,089,White; Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,090,090,Black or African American; American Indian and Alaska Native; and/or Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,091,091,Black or African American; Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,092,092,American Indian and Alaska Native; Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,093,093,Asian Indian; and/or White; and/or Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,094,094,Chinese; Japanese; Native Hawaiian; and/or other Asian and/or Pacific Islander groups +VAL,RAC3P,C,3,095,095,Chinese; and/or Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,096,096,Filipino; and/or Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,097,097,Japanese; and/or Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,098,098,Korean; and/or Vietnamese; and/or Other Asian; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,099,099,Native Hawaiian; and/or Pacific Islander groups; and/or Some Other Race +VAL,RAC3P,C,3,100,100,White; and/or Black or African American; and/or American Indian and Alaska Native; and/or Asian groups; and/or Native Hawaiian and Other Pacific Islander groups; and/or Some Other Race +NAME,RACAIAN,C,1,American Indian and Alaska Native recode (American Indian and Alaska Native alone or in combination with one or more other races),, +VAL,RACAIAN,C,1,0,0,No +VAL,RACAIAN,C,1,1,1,Yes +NAME,RACASN,C,1,Asian recode (Asian alone or in combination with one or more other races),, +VAL,RACASN,C,1,0,0,No +VAL,RACASN,C,1,1,1,Yes +NAME,RACBLK,C,1,Black or African American recode (Black alone or in combination with one or more other races),, +VAL,RACBLK,C,1,0,0,No +VAL,RACBLK,C,1,1,1,Yes +NAME,RACNH,C,1,Native Hawaiian recode (Native Hawaiian alone or in combination with one or more other races),, +VAL,RACNH,C,1,0,0,No +VAL,RACNH,C,1,1,1,Yes +NAME,RACNUM,C,1,Number of major race groups represented,, +VAL,RACNUM,C,1,1,6,Race groups +NAME,RACPI,C,1,Other Pacific Islander recode (Other Pacific Islander alone or in combination with one or more other races),, +VAL,RACPI,C,1,0,0,No +VAL,RACPI,C,1,1,1,Yes +NAME,RACSOR,C,1,Some other race recode (Some other race alone or in combination with one or more other races),, +VAL,RACSOR,C,1,0,0,No +VAL,RACSOR,C,1,1,1,Yes +NAME,RACWHT,C,1,White recode (White alone or in combination with one or more other races),, +VAL,RACWHT,C,1,0,0,No +VAL,RACWHT,C,1,1,1,Yes +NAME,RC,C,1,Related child,, +VAL,RC,C,1,b,b,N/A (in GQ) +VAL,RC,C,1,0,0,No +VAL,RC,C,1,1,1,Yes +NAME,SCIENGP,C,1,Field of Degree Science and Engineering Flag - NSF Definition,, +VAL,SCIENGP,C,1,b,b,N/A (less than bachelor's degree) +VAL,SCIENGP,C,1,1,1,Yes +VAL,SCIENGP,C,1,2,2,No +NAME,SCIENGRLP,C,1,Field of Degree Science and Engineering Related Flag - NSF Definition,, +VAL,SCIENGRLP,C,1,b,b,N/A (less than bachelor's degree) +VAL,SCIENGRLP,C,1,1,1,Yes +VAL,SCIENGRLP,C,1,2,2,No +NAME,SFN,C,1,Subfamily number,, +VAL,SFN,C,1,b,b,N/A (GQ/not in a subfamily) +VAL,SFN,C,1,1,1,In subfamily 1 +VAL,SFN,C,1,2,2,In subfamily 2 +VAL,SFN,C,1,3,3,In subfamily 3 +VAL,SFN,C,1,4,4,In subfamily 4 +NAME,SFR,C,1,Subfamily relationship,, +VAL,SFR,C,1,b,b,N/A (GQ/not in a subfamily) +VAL,SFR,C,1,1,1,Husband/wife no children +VAL,SFR,C,1,2,2,Husband/wife with children +VAL,SFR,C,1,3,3,Parent in a one-parent subfamily +VAL,SFR,C,1,4,4,Child in a married-couple subfamily +VAL,SFR,C,1,5,5,Child in a mother-child subfamily +VAL,SFR,C,1,6,6,Child in a father-child subfamily +NAME,SOCP,C,6,Standard Occupational Classification (SOC) codes for 2018 and later based on 2018 SOC codes,, +VAL,SOCP,C,6,bbbbbb,bbbbbb,N/A (less than 16 years old/NILF who last worked more than 5 years ago or never worked) +VAL,SOCP,C,6,1110XX,1110XX,MGR-Chief Executives And Legislators +VAL,SOCP,C,6,111021,111021,MGR-General And Operations Managers +VAL,SOCP,C,6,112011,112011,MGR-Advertising And Promotions Managers +VAL,SOCP,C,6,112021,112021,MGR-Marketing Managers +VAL,SOCP,C,6,112022,112022,MGR-Sales Managers +VAL,SOCP,C,6,112030,112030,MGR-Public Relations And Fundraising Managers +VAL,SOCP,C,6,113012,113012,MGR-Administrative Services Managers +VAL,SOCP,C,6,113013,113013,MGR-Facilities Managers +VAL,SOCP,C,6,113021,113021,MGR-Computer And Information Systems Managers +VAL,SOCP,C,6,113031,113031,MGR-Financial Managers +VAL,SOCP,C,6,113111,113111,MGR-Compensation And Benefits Managers +VAL,SOCP,C,6,113121,113121,MGR-Human Resources Managers +VAL,SOCP,C,6,113131,113131,MGR-Training And Development Managers +VAL,SOCP,C,6,113051,113051,MGR-Industrial Production Managers +VAL,SOCP,C,6,113061,113061,MGR-Purchasing Managers +VAL,SOCP,C,6,113071,113071,"MGR-Transportation, Storage, And Distribution Managers" +VAL,SOCP,C,6,119013,119013,"MGR-Farmers, Ranchers, And Other Agricultural Managers" +VAL,SOCP,C,6,119021,119021,MGR-Construction Managers +VAL,SOCP,C,6,119030,119030,MGR-Education And Childcare Administrators +VAL,SOCP,C,6,119041,119041,MGR-Architectural And Engineering Managers +VAL,SOCP,C,6,119051,119051,MGR-Food Service Managers +VAL,SOCP,C,6,119070,119070,MGR-Entertainment And Recreation Managers +VAL,SOCP,C,6,119081,119081,MGR-Lodging Managers +VAL,SOCP,C,6,119111,119111,MGR-Medical And Health Services Managers +VAL,SOCP,C,6,119121,119121,MGR-Natural Sciences Managers +VAL,SOCP,C,6,119141,119141,"MGR-Property, Real Estate, And Community Association Managers" +VAL,SOCP,C,6,119151,119151,MGR-Social And Community Service Managers +VAL,SOCP,C,6,119161,119161,MGR-Emergency Management Directors +VAL,SOCP,C,6,1191XX,1191XX,MGR-Other Managers +VAL,SOCP,C,6,131011,131011,"BUS-Agents And Business Managers Of Artists, Performers, And Athletes" +VAL,SOCP,C,6,131021,131021,"BUS-Buyers And Purchasing Agents, Farm Products" +VAL,SOCP,C,6,131022,131022,"BUS-Wholesale And Retail Buyers, Except Farm Products" +VAL,SOCP,C,6,131023,131023,"BUS-Purchasing Agents, Except Wholesale, Retail, And Farm Products" +VAL,SOCP,C,6,131030,131030,"BUS-Claims Adjusters, Appraisers, Examiners, And Investigators" +VAL,SOCP,C,6,131041,131041,BUS-Compliance Officers +VAL,SOCP,C,6,131051,131051,BUS-Cost Estimators +VAL,SOCP,C,6,131070,131070,BUS-Human Resources Workers +VAL,SOCP,C,6,131081,131081,BUS-Logisticians +VAL,SOCP,C,6,131082,131082,BUS-Project Management Specialists +VAL,SOCP,C,6,131111,131111,BUS-Management Analysts +VAL,SOCP,C,6,131121,131121,"BUS-Meeting, Convention, And Event Planners" +VAL,SOCP,C,6,131131,131131,BUS-Fundraisers +VAL,SOCP,C,6,131141,131141,"BUS-Compensation, Benefits, And Job Analysis Specialists" +VAL,SOCP,C,6,131151,131151,BUS-Training And Development Specialists +VAL,SOCP,C,6,131161,131161,BUS-Market Research Analysts And Marketing Specialists +VAL,SOCP,C,6,131199,131199,"BUS-Business Operations Specialists, All Other" +VAL,SOCP,C,6,132011,132011,FIN-Accountants And Auditors +VAL,SOCP,C,6,132020,132020,FIN-Property Appraisers And Assessors +VAL,SOCP,C,6,132031,132031,FIN-Budget Analysts +VAL,SOCP,C,6,132041,132041,FIN-Credit Analysts +VAL,SOCP,C,6,132051,132051,FIN-Financial And Investment Analysts +VAL,SOCP,C,6,132052,132052,FIN-Personal Financial Advisors +VAL,SOCP,C,6,132053,132053,FIN-Insurance Underwriters +VAL,SOCP,C,6,132061,132061,FIN-Financial Examiners +VAL,SOCP,C,6,132070,132070,FIN-Credit Counselors And Loan Officers +VAL,SOCP,C,6,132081,132081,"FIN-Tax Examiners And Collectors, And Revenue Agents" +VAL,SOCP,C,6,132082,132082,FIN-Tax Preparers +VAL,SOCP,C,6,1320XX,1320XX,FIN-Other Financial Specialists +VAL,SOCP,C,6,151221,151221,CMM-Computer And Information Research Scientists +VAL,SOCP,C,6,151211,151211,CMM-Computer Systems Analysts +VAL,SOCP,C,6,151212,151212,CMM-Information Security Analysts +VAL,SOCP,C,6,151251,151251,CMM-Computer Programmers +VAL,SOCP,C,6,151252,151252,CMM-Software Developers +VAL,SOCP,C,6,151253,151253,CMM-Software Quality Assurance Analysts And Testers +VAL,SOCP,C,6,151254,151254,CMM-Web Developers +VAL,SOCP,C,6,151255,151255,CMM-Web And Digital Interface Designers +VAL,SOCP,C,6,151230,151230,CMM-Computer Support Specialists +VAL,SOCP,C,6,15124X,15124X,CMM-Database Administrators And Architects +VAL,SOCP,C,6,151244,151244,CMM-Network And Computer Systems Administrators +VAL,SOCP,C,6,151241,151241,CMM-Computer Network Architects +VAL,SOCP,C,6,151299,151299,"CMM-Computer Occupations, All Other" +VAL,SOCP,C,6,152011,152011,CMM-Actuaries +VAL,SOCP,C,6,152031,152031,CMM-Operations Research Analysts +VAL,SOCP,C,6,1520XX,1520XX,CMM-Other Mathematical Science Occupations +VAL,SOCP,C,6,171011,171011,"ENG-Architects, Except Landscape And Naval" +VAL,SOCP,C,6,171012,171012,ENG-Landscape Architects +VAL,SOCP,C,6,171020,171020,"ENG-Surveyors, Cartographers, And Photogrammetrists" +VAL,SOCP,C,6,172011,172011,ENG-Aerospace Engineers +VAL,SOCP,C,6,1720XX,1720XX,ENG-Biomedical And Agricultural Engineers +VAL,SOCP,C,6,172041,172041,ENG-Chemical Engineers +VAL,SOCP,C,6,172051,172051,ENG-Civil Engineers +VAL,SOCP,C,6,172061,172061,ENG-Computer Hardware Engineers +VAL,SOCP,C,6,172070,172070,ENG-Electrical And Electronics Engineers +VAL,SOCP,C,6,172081,172081,ENG-Environmental Engineers +VAL,SOCP,C,6,172110,172110,"ENG-Industrial Engineers, Including Health And Safety" +VAL,SOCP,C,6,172121,172121,ENG-Marine Engineers And Naval Architects +VAL,SOCP,C,6,172131,172131,ENG-Materials Engineers +VAL,SOCP,C,6,172141,172141,ENG-Mechanical Engineers +VAL,SOCP,C,6,1721XX,1721XX,"ENG-Petroleum, Mining And Geological Engineers, Including Mining Safety Engineers" +VAL,SOCP,C,6,1721YY,1721YY,ENG-Other Engineers +VAL,SOCP,C,6,173011,173011,ENG-Architectural And Civil Drafters +VAL,SOCP,C,6,17301X,17301X,ENG-Other Drafters +VAL,SOCP,C,6,173023,173023,ENG-Electrical and Electronic Engineering Technologists And Technicians +VAL,SOCP,C,6,17302X,17302X,"ENG-Other Engineering Technologists And Technicians, Except Drafters" +VAL,SOCP,C,6,173031,173031,ENG-Surveying And Mapping Technicians +VAL,SOCP,C,6,191010,191010,SCI-Agricultural And Food Scientists +VAL,SOCP,C,6,191020,191020,SCI-Biological Scientists +VAL,SOCP,C,6,191030,191030,SCI-Conservation Scientists And Foresters +VAL,SOCP,C,6,1910XX,1910XX,SCI-Other Life Scientists +VAL,SOCP,C,6,192010,192010,SCI-Astronomers And Physicists +VAL,SOCP,C,6,192021,192021,SCI-Atmospheric And Space Scientists +VAL,SOCP,C,6,192030,192030,SCI-Chemists And Materials Scientists +VAL,SOCP,C,6,192041,192041,"SCI-Environmental Scientists And Specialists, Including Health" +VAL,SOCP,C,6,19204X,19204X,"SCI-Geoscientists And Hydrologists, Except Geographers" +VAL,SOCP,C,6,192099,192099,"SCI-Physical Scientists, All Other" +VAL,SOCP,C,6,193011,193011,SCI-Economists +VAL,SOCP,C,6,193033,193033,SCI-Clinical And Counseling Psychologists +VAL,SOCP,C,6,193034,193034,SCI-School Psychologists +VAL,SOCP,C,6,19303X,19303X,SCI-Other Psychologists +VAL,SOCP,C,6,193051,193051,SCI-Urban And Regional Planners +VAL,SOCP,C,6,1930XX,1930XX,SCI-Other Social Scientists +VAL,SOCP,C,6,194010,194010,SCI-Agricultural And Food Science Technicians +VAL,SOCP,C,6,194021,194021,SCI-Biological Technicians +VAL,SOCP,C,6,194031,194031,SCI-Chemical Technicians +VAL,SOCP,C,6,1940XX,1940XX,"SCI-Environmental Science And Geoscience Technicians, And Nuclear Technicians" +VAL,SOCP,C,6,1940YY,1940YY,"SCI-Other Life, Physical, And Social Science Technicians" +VAL,SOCP,C,6,195010,195010,SCI-Occupational Health And Safety Specialists And Technicians +VAL,SOCP,C,6,211011,211011,CMS-Substance Abuse And Behavioral Disorder Counselors +VAL,SOCP,C,6,211012,211012,"CMS-Educational, Guidance, And Career Counselors And Advisors" +VAL,SOCP,C,6,211013,211013,CMS-Marriage And Family Therapists +VAL,SOCP,C,6,211014,211014,CMS-Mental Health Counselors +VAL,SOCP,C,6,211015,211015,CMS-Rehabilitation Counselors +VAL,SOCP,C,6,211019,211019,"CMS-Counselors, All Other" +VAL,SOCP,C,6,211021,211021,"CMS-Child, Family, And School Social Workers" +VAL,SOCP,C,6,211022,211022,CMS-Healthcare Social Workers +VAL,SOCP,C,6,211023,211023,CMS-Mental Health And Substance Abuse Social Workers +VAL,SOCP,C,6,211029,211029,"CMS-Social Workers, All Other" +VAL,SOCP,C,6,211092,211092,CMS-Probation Officers And Correctional Treatment Specialists +VAL,SOCP,C,6,211093,211093,CMS-Social And Human Service Assistants +VAL,SOCP,C,6,21109X,21109X,CMS-Other Community And Social Service Specialists +VAL,SOCP,C,6,212011,212011,CMS-Clergy +VAL,SOCP,C,6,212021,212021,"CMS-Directors, Religious Activities And Education" +VAL,SOCP,C,6,212099,212099,"CMS-Religious Workers, All Other" +VAL,SOCP,C,6,2310XX,2310XX,"LGL-Lawyers, And Judges, Magistrates, And Other Judicial Workers" +VAL,SOCP,C,6,231012,231012,LGL-Judicial Law Clerks +VAL,SOCP,C,6,232011,232011,LGL-Paralegals And Legal Assistants +VAL,SOCP,C,6,232093,232093,"LGL-Title Examiners, Abstractors, And Searchers" +VAL,SOCP,C,6,232099,232099,"LGL-Legal Support Workers, All Other" +VAL,SOCP,C,6,251000,251000,EDU-Postsecondary Teachers +VAL,SOCP,C,6,252010,252010,EDU-Preschool And Kindergarten Teachers +VAL,SOCP,C,6,252020,252020,EDU-Elementary And Middle School Teachers +VAL,SOCP,C,6,252030,252030,EDU-Secondary School Teachers +VAL,SOCP,C,6,252050,252050,EDU-Special Education Teachers +VAL,SOCP,C,6,253041,253041,EDU-Tutors +VAL,SOCP,C,6,2530XX,2530XX,EDU-Other Teachers And Instructors +VAL,SOCP,C,6,254010,254010,"EDU-Archivists, Curators, And Museum Technicians" +VAL,SOCP,C,6,254022,254022,EDU-Librarians And Media Collections Specialists +VAL,SOCP,C,6,254031,254031,EDU-Library Technicians +VAL,SOCP,C,6,259040,259040,EDU-Teaching Assistants +VAL,SOCP,C,6,2590XX,2590XX,EDU-Other Educational Instruction and Library Workers +VAL,SOCP,C,6,271010,271010,ENT-Artists And Related Workers +VAL,SOCP,C,6,271021,271021,ENT-Commercial And Industrial Designers +VAL,SOCP,C,6,271022,271022,ENT-Fashion Designers +VAL,SOCP,C,6,271023,271023,ENT-Floral Designers +VAL,SOCP,C,6,271024,271024,ENT-Graphic Designers +VAL,SOCP,C,6,271025,271025,ENT-Interior Designers +VAL,SOCP,C,6,271026,271026,ENT-Merchandise Displayers And Window Trimmers +VAL,SOCP,C,6,27102X,27102X,ENT-Other Designers +VAL,SOCP,C,6,272011,272011,ENT-Actors +VAL,SOCP,C,6,272012,272012,ENT-Producers And Directors +VAL,SOCP,C,6,272021,272021,ENT-Athletes And Sports Competitors +VAL,SOCP,C,6,272022,272022,ENT-Coaches And Scouts +VAL,SOCP,C,6,272023,272023,"ENT-Umpires, Referees, And Other Sports Officials" +VAL,SOCP,C,6,272030,272030,ENT-Dancers And Choreographers +VAL,SOCP,C,6,272041,272041,ENT-Music Directors And Composers +VAL,SOCP,C,6,272042,272042,ENT-Musicians And Singers +VAL,SOCP,C,6,272091,272091,"ENT-Disc Jockeys, Except Radio" +VAL,SOCP,C,6,272099,272099,"ENT-Entertainers And Performers, Sports And Related Workers, All Other" +VAL,SOCP,C,6,273011,273011,ENT-Broadcast Announcers And Radio Disc Jockeys +VAL,SOCP,C,6,273023,273023,"ENT-News Analysts, Reporters, And Journalists" +VAL,SOCP,C,6,273031,273031,ENT-Public Relations Specialists +VAL,SOCP,C,6,273041,273041,ENT-Editors +VAL,SOCP,C,6,273042,273042,ENT-Technical Writers +VAL,SOCP,C,6,273043,273043,ENT-Writers And Authors +VAL,SOCP,C,6,273091,273091,ENT-Interpreters And Translators +VAL,SOCP,C,6,273092,273092,ENT-Court Reporters And Simultaneous Captioners +VAL,SOCP,C,6,273099,273099,"ENT-Media And Communication Workers, All Other" +VAL,SOCP,C,6,2740XX,2740XX,ENT-Other Media And Communication Equipment Workers +VAL,SOCP,C,6,274021,274021,ENT-Photographers +VAL,SOCP,C,6,274030,274030,"ENT-Television, Video, And Film Camera Operators And Editors" +VAL,SOCP,C,6,291011,291011,MED-Chiropractors +VAL,SOCP,C,6,291020,291020,MED-Dentists +VAL,SOCP,C,6,291031,291031,MED-Dietitians And Nutritionists +VAL,SOCP,C,6,291041,291041,MED-Optometrists +VAL,SOCP,C,6,291051,291051,MED-Pharmacists +VAL,SOCP,C,6,291210,291210,MED-Physicians +VAL,SOCP,C,6,291240,291240,MED-Surgeons +VAL,SOCP,C,6,291071,291071,MED-Physician Assistants +VAL,SOCP,C,6,291081,291081,MED-Podiatrists +VAL,SOCP,C,6,291122,291122,MED-Occupational Therapists +VAL,SOCP,C,6,291123,291123,MED-Physical Therapists +VAL,SOCP,C,6,291124,291124,MED-Radiation Therapists +VAL,SOCP,C,6,291125,291125,MED-Recreational Therapists +VAL,SOCP,C,6,291126,291126,MED-Respiratory Therapists +VAL,SOCP,C,6,291127,291127,MED-Speech-Language Pathologists +VAL,SOCP,C,6,29112X,29112X,MED-Other Therapists +VAL,SOCP,C,6,291131,291131,MED-Veterinarians +VAL,SOCP,C,6,291141,291141,MED-Registered Nurses +VAL,SOCP,C,6,291151,291151,MED-Nurse Anesthetists +VAL,SOCP,C,6,291181,291181,MED-Audiologists +VAL,SOCP,C,6,2911XX,2911XX,"MED-Nurse Practitioners, And Nurse Midwives" +VAL,SOCP,C,6,291291,291291,MED-Acupuncturists +VAL,SOCP,C,6,291299,291299,"MED-Healthcare Diagnosing Or Treating Practitioners, All Other" +VAL,SOCP,C,6,292010,292010,MED-Clinical Laboratory Technologists And Technicians +VAL,SOCP,C,6,291292,291292,MED-Dental Hygienists +VAL,SOCP,C,6,292031,292031,MED-Cardiovascular Technologists And Technicians +VAL,SOCP,C,6,292032,292032,MED-Diagnostic Medical Sonographers +VAL,SOCP,C,6,292034,292034,MED-Radiologic Technologists And Technicians +VAL,SOCP,C,6,292035,292035,MED-Magnetic Resonance Imaging Technologists +VAL,SOCP,C,6,29203X,29203X,MED-Nuclear Medicine Technologists And Medical Dosimetrists +VAL,SOCP,C,6,292042,292042,MED-Emergency Medical Technicians +VAL,SOCP,C,6,292043,292043,MED-Paramedics +VAL,SOCP,C,6,292052,292052,MED-Pharmacy Technicians +VAL,SOCP,C,6,292053,292053,MED-Psychiatric Technicians +VAL,SOCP,C,6,292055,292055,MED-Surgical Technologists +VAL,SOCP,C,6,292056,292056,MED-Veterinary Technologists And Technicians +VAL,SOCP,C,6,29205X,29205X,MED-Dietetic Technicians And Ophthalmic Medical Technicians +VAL,SOCP,C,6,292061,292061,MED-Licensed Practical And Licensed Vocational Nurses +VAL,SOCP,C,6,292072,292072,MED-Medical Records Specialists +VAL,SOCP,C,6,292081,292081,"MED-Opticians, Dispensing" +VAL,SOCP,C,6,292090,292090,MED-Miscellaneous Health Technologists And Technicians +VAL,SOCP,C,6,299000,299000,MED-Other Healthcare Practitioners And Technical Occupations +VAL,SOCP,C,6,311121,311121,HLS-Home Health Aides +VAL,SOCP,C,6,311122,311122,HLS-Personal Care Aides +VAL,SOCP,C,6,311131,311131,HLS-Nursing Assistants +VAL,SOCP,C,6,31113X,31113X,HLS-Orderlies And Psychiatric Aides +VAL,SOCP,C,6,312010,312010,HLS-Occupational Therapy Assistants And Aides +VAL,SOCP,C,6,312020,312020,HLS-Physical Therapist Assistants And Aides +VAL,SOCP,C,6,319011,319011,HLS-Massage Therapists +VAL,SOCP,C,6,319091,319091,HLS-Dental Assistants +VAL,SOCP,C,6,319092,319092,HLS-Medical Assistants +VAL,SOCP,C,6,319094,319094,HLS-Medical Transcriptionists +VAL,SOCP,C,6,319095,319095,HLS-Pharmacy Aides +VAL,SOCP,C,6,319096,319096,HLS-Veterinary Assistants And Laboratory Animal Caretakers +VAL,SOCP,C,6,319097,319097,HLS-Phlebotomists +VAL,SOCP,C,6,31909X,31909X,HLS-Other Healthcare Support Workers +VAL,SOCP,C,6,331011,331011,PRT-First-Line Supervisors Of Correctional Officers +VAL,SOCP,C,6,331012,331012,PRT-First-Line Supervisors Of Police And Detectives +VAL,SOCP,C,6,331021,331021,PRT-First-Line Supervisors Of Firefighting And Prevention Workers +VAL,SOCP,C,6,331090,331090,"PRT-Miscellaneous First-Line Supervisors, Protective Service Workers" +VAL,SOCP,C,6,332011,332011,PRT-Firefighters +VAL,SOCP,C,6,332020,332020,PRT-Fire Inspectors +VAL,SOCP,C,6,333011,333011,PRT-Bailiffs +VAL,SOCP,C,6,333012,333012,PRT-Correctional Officers And Jailers +VAL,SOCP,C,6,333021,333021,PRT-Detectives And Criminal Investigators +VAL,SOCP,C,6,3330XX,3330XX,PRT-Fish And Game Wardens And Parking Enforcement Officers +VAL,SOCP,C,6,333050,333050,PRT-Police Officers +VAL,SOCP,C,6,339011,339011,PRT-Animal Control Workers +VAL,SOCP,C,6,339021,339021,PRT-Private Detectives And Investigators +VAL,SOCP,C,6,339030,339030,PRT-Security Guards And Gambling Surveillance Officers +VAL,SOCP,C,6,339091,339091,PRT-Crossing Guards And Flaggers +VAL,SOCP,C,6,339093,339093,PRT-Transportation Security Screeners +VAL,SOCP,C,6,339094,339094,PRT-School Bus Monitors +VAL,SOCP,C,6,33909X,33909X,PRT-Other Protective Service Workers +VAL,SOCP,C,6,351011,351011,EAT-Chefs And Head Cooks +VAL,SOCP,C,6,351012,351012,EAT-First-Line Supervisors Of Food Preparation And Serving Workers +VAL,SOCP,C,6,352010,352010,EAT-Cooks +VAL,SOCP,C,6,352021,352021,EAT-Food Preparation Workers +VAL,SOCP,C,6,353011,353011,EAT-Bartenders +VAL,SOCP,C,6,353023,353023,EAT-Fast Food And Counter Workers +VAL,SOCP,C,6,353031,353031,EAT-Waiters And Waitresses +VAL,SOCP,C,6,353041,353041,"EAT-Food Servers, Nonrestaurant" +VAL,SOCP,C,6,359011,359011,EAT-Dining Room And Cafeteria Attendants And Bartender Helpers +VAL,SOCP,C,6,359021,359021,EAT-Dishwashers +VAL,SOCP,C,6,359031,359031,"EAT-Hosts And Hostesses, Restaurant, Lounge, And Coffee Shop" +VAL,SOCP,C,6,359099,359099,"EAT-Food Preparation And Serving Related Workers, All Other" +VAL,SOCP,C,6,371011,371011,CLN-First-Line Supervisors Of Housekeeping And Janitorial Workers +VAL,SOCP,C,6,371012,371012,"CLN-First-Line Supervisors Of Landscaping, Lawn Service, And Groundskeeping Workers" +VAL,SOCP,C,6,37201X,37201X,CLN-Janitors And Building Cleaners +VAL,SOCP,C,6,372012,372012,CLN-Maids And Housekeeping Cleaners +VAL,SOCP,C,6,372021,372021,CLN-Pest Control Workers +VAL,SOCP,C,6,373011,373011,CLN-Landscaping And Groundskeeping Workers +VAL,SOCP,C,6,373013,373013,CLN-Tree Trimmers And Pruners +VAL,SOCP,C,6,37301X,37301X,CLN-Other Grounds Maintenance Workers +VAL,SOCP,C,6,391000,391000,PRS-Supervisors of Personal Care And Service Workers +VAL,SOCP,C,6,392011,392011,PRS-Animal Trainers +VAL,SOCP,C,6,392021,392021,PRS-Animal Caretakers +VAL,SOCP,C,6,393010,393010,PRS-Gambling Services Workers +VAL,SOCP,C,6,393031,393031,"PRS-Ushers, Lobby Attendants, And Ticket Takers" +VAL,SOCP,C,6,3930XX,3930XX,PRS-Other Entertainment Attendants And Related Workers +VAL,SOCP,C,6,394031,394031,"PRS-Morticians, Undertakers, And Funeral Arrangers" +VAL,SOCP,C,6,3940XX,3940XX,"PRS-Embalmers, Crematory Operators And Funeral Attendants" +VAL,SOCP,C,6,395011,395011,PRS-Barbers +VAL,SOCP,C,6,395012,395012,"PRS-Hairdressers, Hairstylists, And Cosmetologists" +VAL,SOCP,C,6,395092,395092,PRS-Manicurists and Pedicurists +VAL,SOCP,C,6,395094,395094,PRS-Skincare Specialists +VAL,SOCP,C,6,39509X,39509X,PRS-Other Personal Appearance Workers +VAL,SOCP,C,6,396010,396010,"PRS-Baggage Porters, Bellhops, And Concierges" +VAL,SOCP,C,6,397010,397010,PRS-Tour And Travel Guides +VAL,SOCP,C,6,399011,399011,PRS-Childcare Workers +VAL,SOCP,C,6,399031,399031,PRS-Exercise Trainers And Group Fitness Instructors +VAL,SOCP,C,6,399032,399032,PRS-Recreation Workers +VAL,SOCP,C,6,399041,399041,PRS-Residential Advisors +VAL,SOCP,C,6,399099,399099,"PRS-Personal Care And Service Workers, All Other" +VAL,SOCP,C,6,411011,411011,SAL-First-Line Supervisors Of Retail Sales Workers +VAL,SOCP,C,6,411012,411012,SAL-First-Line Supervisors Of Non-Retail Sales Workers +VAL,SOCP,C,6,412010,412010,SAL-Cashiers +VAL,SOCP,C,6,412021,412021,SAL-Counter And Rental Clerks +VAL,SOCP,C,6,412022,412022,SAL-Parts Salespersons +VAL,SOCP,C,6,412031,412031,SAL-Retail Salespersons +VAL,SOCP,C,6,413011,413011,SAL-Advertising Sales Agents +VAL,SOCP,C,6,413021,413021,SAL-Insurance Sales Agents +VAL,SOCP,C,6,413031,413031,"SAL-Securities, Commodities, And Financial Services Sales Agents" +VAL,SOCP,C,6,413041,413041,SAL-Travel Agents +VAL,SOCP,C,6,413091,413091,"SAL-Sales Representatives Of Services, Except Advertising, Insurance, Financial Services, And Travel" +VAL,SOCP,C,6,414010,414010,"SAL-Sales Representatives, Wholesale And Manufacturing" +VAL,SOCP,C,6,419010,419010,"SAL-Models, Demonstrators, And Product Promoters" +VAL,SOCP,C,6,419020,419020,SAL-Real Estate Brokers And Sales Agents +VAL,SOCP,C,6,419031,419031,SAL-Sales Engineers +VAL,SOCP,C,6,419041,419041,SAL-Telemarketers +VAL,SOCP,C,6,419091,419091,"SAL-Door-To-Door Sales Workers, News And Street Vendors, And Related Workers" +VAL,SOCP,C,6,419099,419099,"SAL-Sales And Related Workers, All Other" +VAL,SOCP,C,6,431011,431011,OFF-First-Line Supervisors Of Office And Administrative Support Workers +VAL,SOCP,C,6,432011,432011,"OFF-Switchboard Operators, Including Answering Service" +VAL,SOCP,C,6,432021,432021,OFF-Telephone Operators +VAL,SOCP,C,6,432099,432099,"OFF-Communications Equipment Operators, All Other" +VAL,SOCP,C,6,433011,433011,OFF-Bill And Account Collectors +VAL,SOCP,C,6,433021,433021,OFF-Billing And Posting Clerks +VAL,SOCP,C,6,433031,433031,"OFF-Bookkeeping, Accounting, And Auditing Clerks" +VAL,SOCP,C,6,433051,433051,OFF-Payroll And Timekeeping Clerks +VAL,SOCP,C,6,433061,433061,OFF-Procurement Clerks +VAL,SOCP,C,6,433071,433071,OFF-Tellers +VAL,SOCP,C,6,4330XX,4330XX,OFF-Other Financial Clerks +VAL,SOCP,C,6,434031,434031,"OFF-Court, Municipal, And License Clerks" +VAL,SOCP,C,6,434041,434041,"OFF-Credit Authorizers, Checkers, And Clerks" +VAL,SOCP,C,6,434051,434051,OFF-Customer Service Representatives +VAL,SOCP,C,6,434061,434061,"OFF-Eligibility Interviewers, Government Programs" +VAL,SOCP,C,6,434071,434071,OFF-File Clerks +VAL,SOCP,C,6,434081,434081,"OFF-Hotel, Motel, And Resort Desk Clerks" +VAL,SOCP,C,6,434111,434111,"OFF-Interviewers, Except Eligibility And Loan" +VAL,SOCP,C,6,434121,434121,"OFF-Library Assistants, Clerical" +VAL,SOCP,C,6,434131,434131,OFF-Loan Interviewers And Clerks +VAL,SOCP,C,6,434141,434141,OFF-New Accounts Clerks +VAL,SOCP,C,6,434XXX,434XXX,OFF-Correspondence Clerks And Order Clerks +VAL,SOCP,C,6,434161,434161,"OFF-Human Resources Assistants, Except Payroll And Timekeeping" +VAL,SOCP,C,6,434171,434171,OFF-Receptionists And Information Clerks +VAL,SOCP,C,6,434181,434181,OFF-Reservation And Transportation Ticket Agents And Travel Clerks +VAL,SOCP,C,6,434YYY,434YYY,OFF-Other Information And Records Clerks +VAL,SOCP,C,6,435011,435011,OFF-Cargo And Freight Agents +VAL,SOCP,C,6,435021,435021,OFF-Couriers And Messengers +VAL,SOCP,C,6,435031,435031,OFF-Public Safety Telecommunicators +VAL,SOCP,C,6,435032,435032,"OFF-Dispatchers, Except Police, Fire, And Ambulance" +VAL,SOCP,C,6,435041,435041,"OFF-Meter Readers, Utilities" +VAL,SOCP,C,6,435051,435051,OFF-Postal Service Clerks +VAL,SOCP,C,6,435052,435052,OFF-Postal Service Mail Carriers +VAL,SOCP,C,6,435053,435053,"OFF-Postal Service Mail Sorters, Processors, And Processing Machine Operators" +VAL,SOCP,C,6,435061,435061,"OFF-Production, Planning, And Expediting Clerks" +VAL,SOCP,C,6,435071,435071,"OFF-Shipping, Receiving, And Inventory Clerks" +VAL,SOCP,C,6,435111,435111,"OFF-Weighers, Measurers, Checkers, And Samplers, Recordkeeping" +VAL,SOCP,C,6,436011,436011,OFF-Executive Secretaries And Executive Administrative Assistants +VAL,SOCP,C,6,436012,436012,OFF-Legal Secretaries And Administrative Assistants +VAL,SOCP,C,6,436013,436013,OFF-Medical Secretaries And Administrative Assistants +VAL,SOCP,C,6,436014,436014,"OFF-Secretaries And Administrative Assistants, Except Legal, Medical, And Executive" +VAL,SOCP,C,6,439021,439021,OFF-Data Entry Keyers +VAL,SOCP,C,6,439022,439022,OFF-Word Processors And Typists +VAL,SOCP,C,6,439041,439041,OFF-Insurance Claims And Policy Processing Clerks +VAL,SOCP,C,6,439051,439051,"OFF-Mail Clerks And Mail Machine Operators, Except Postal Service" +VAL,SOCP,C,6,439061,439061,"OFF-Office Clerks, General" +VAL,SOCP,C,6,439071,439071,"OFF-Office Machine Operators, Except Computer" +VAL,SOCP,C,6,439081,439081,OFF-Proofreaders And Copy Markers +VAL,SOCP,C,6,439111,439111,OFF-Statistical Assistants +VAL,SOCP,C,6,439XXX,439XXX,OFF-Other Office And Administrative Support Workers +VAL,SOCP,C,6,451011,451011,"FFF-First-Line Supervisors Of Farming, Fishing, And Forestry Workers" +VAL,SOCP,C,6,452011,452011,FFF-Agricultural Inspectors +VAL,SOCP,C,6,452041,452041,"FFF-Graders And Sorters, Agricultural Products" +VAL,SOCP,C,6,4520XX,4520XX,FFF-Other Agricultural Workers +VAL,SOCP,C,6,453031,453031,FFF-Fishing And Hunting Workers +VAL,SOCP,C,6,454011,454011,FFF-Forest And Conservation Workers +VAL,SOCP,C,6,454020,454020,FFF-Logging Workers +VAL,SOCP,C,6,471011,471011,CON-First-Line Supervisors Of Construction Trades And Extraction Workers +VAL,SOCP,C,6,472011,472011,CON-Boilermakers +VAL,SOCP,C,6,472031,472031,CON-Carpenters +VAL,SOCP,C,6,472040,472040,"CON-Carpet, Floor, And Tile Installers And Finishers" +VAL,SOCP,C,6,472050,472050,"CON-Cement Masons, Concrete Finishers, And Terrazzo Workers" +VAL,SOCP,C,6,472061,472061,CON-Construction Laborers +VAL,SOCP,C,6,472070,472070,CON-Construction Equipment Operators +VAL,SOCP,C,6,472080,472080,"CON-Drywall Installers, Ceiling Tile Installers, And Tapers" +VAL,SOCP,C,6,472111,472111,CON-Electricians +VAL,SOCP,C,6,472121,472121,CON-Glaziers +VAL,SOCP,C,6,472130,472130,CON-Insulation Workers +VAL,SOCP,C,6,472140,472140,CON-Painters And Paperhangers +VAL,SOCP,C,6,472151,472151,CON-Pipelayers +VAL,SOCP,C,6,472152,472152,"CON-Plumbers, Pipefitters, And Steamfitters" +VAL,SOCP,C,6,472161,472161,CON-Plasterers And Stucco Masons +VAL,SOCP,C,6,472181,472181,CON-Roofers +VAL,SOCP,C,6,472211,472211,CON-Sheet Metal Workers +VAL,SOCP,C,6,472221,472221,CON-Structural Iron And Steel Workers +VAL,SOCP,C,6,472231,472231,CON-Solar Photovoltaic Installers +VAL,SOCP,C,6,472XXX,472XXX,"CON-Brickmasons, Blockmasons, Stonemasons, And Reinforcing Iron And Rebar Workers" +VAL,SOCP,C,6,473010,473010,"CON-Helpers, Construction Trades" +VAL,SOCP,C,6,474011,474011,CON-Construction And Building Inspectors +VAL,SOCP,C,6,474021,474021,CON-Elevator And Escalator Installers And Repairers +VAL,SOCP,C,6,474031,474031,CON-Fence Erectors +VAL,SOCP,C,6,474041,474041,CON-Hazardous Materials Removal Workers +VAL,SOCP,C,6,474051,474051,CON-Highway Maintenance Workers +VAL,SOCP,C,6,474061,474061,CON-Rail-Track Laying And Maintenance Equipment Operators +VAL,SOCP,C,6,4740XX,4740XX,CON-Other Construction And Related Workers +VAL,SOCP,C,6,4750YY,4750YY,"EXT-Derrick, Rotary Drill, And Service Unit Operators, And Roustabouts, Oil And Gas" +VAL,SOCP,C,6,475020,475020,EXT-Surface Mining Machine Operators And Earth Drillers +VAL,SOCP,C,6,475032,475032,"EXT-Explosives Workers, Ordnance Handling Experts, And Blasters" +VAL,SOCP,C,6,475040,475040,EXT-Underground Mining Machine Operators +VAL,SOCP,C,6,4750XX,4750XX,EXT-Other Extraction Workers +VAL,SOCP,C,6,491011,491011,"RPR-First-Line Supervisors Of Mechanics, Installers, And Repairers" +VAL,SOCP,C,6,492011,492011,"RPR-Computer, Automated Teller, And Office Machine Repairers" +VAL,SOCP,C,6,492020,492020,RPR-Radio And Telecommunications Equipment Installers And Repairers +VAL,SOCP,C,6,492091,492091,RPR-Avionics Technicians +VAL,SOCP,C,6,492092,492092,"RPR-Electric Motor, Power Tool, And Related Repairers" +VAL,SOCP,C,6,49209X,49209X,"RPR-Other Electrical And Electronic Equipment Mechanics, Installers, and Repairers" +VAL,SOCP,C,6,492097,492097,RPR-Audiovisual Equipment Installers And Repairers +VAL,SOCP,C,6,492098,492098,RPR-Security And Fire Alarm Systems Installers +VAL,SOCP,C,6,493011,493011,RPR-Aircraft Mechanics And Service Technicians +VAL,SOCP,C,6,493021,493021,RPR-Automotive Body And Related Repairers +VAL,SOCP,C,6,493022,493022,RPR-Automotive Glass Installers And Repairers +VAL,SOCP,C,6,493023,493023,RPR-Automotive Service Technicians And Mechanics +VAL,SOCP,C,6,493031,493031,RPR-Bus And Truck Mechanics And Diesel Engine Specialists +VAL,SOCP,C,6,493040,493040,RPR-Heavy Vehicle And Mobile Equipment Service Technicians And Mechanics +VAL,SOCP,C,6,493050,493050,RPR-Small Engine Mechanics +VAL,SOCP,C,6,493090,493090,"RPR-Miscellaneous Vehicle And Mobile Equipment Mechanics, Installers, And Repairers" +VAL,SOCP,C,6,499010,499010,RPR-Control And Valve Installers And Repairers +VAL,SOCP,C,6,499021,499021,"RPR-Heating, Air Conditioning, And Refrigeration Mechanics And Installers" +VAL,SOCP,C,6,499031,499031,RPR-Home Appliance Repairers +VAL,SOCP,C,6,49904X,49904X,RPR-Industrial And Refractory Machinery Mechanics +VAL,SOCP,C,6,499043,499043,"RPR-Maintenance Workers, Machinery" +VAL,SOCP,C,6,499044,499044,RPR-Millwrights +VAL,SOCP,C,6,499051,499051,RPR-Electrical Power-Line Installers And Repairers +VAL,SOCP,C,6,499052,499052,RPR-Telecommunications Line Installers And Repairers +VAL,SOCP,C,6,499060,499060,RPR-Precision Instrument And Equipment Repairers +VAL,SOCP,C,6,499071,499071,"RPR-Maintenance And Repair Workers, General" +VAL,SOCP,C,6,499091,499091,"RPR-Coin, Vending, And Amusement Machine Servicers And Repairers" +VAL,SOCP,C,6,499094,499094,RPR-Locksmiths And Safe Repairers +VAL,SOCP,C,6,499096,499096,RPR-Riggers +VAL,SOCP,C,6,499098,499098,"RPR-Helpers--Installation, Maintenance, And Repair Workers" +VAL,SOCP,C,6,4990XX,4990XX,"RPR-Other Installation, Maintenance, And Repair Workers" +VAL,SOCP,C,6,511011,511011,PRD-First-Line Supervisors Of Production And Operating Workers +VAL,SOCP,C,6,512020,512020,"PRD-Electrical, Electronics, And Electromechanical Assemblers" +VAL,SOCP,C,6,512031,512031,PRD-Engine And Other Machine Assemblers +VAL,SOCP,C,6,512041,512041,PRD-Structural Metal Fabricators And Fitters +VAL,SOCP,C,6,5120XX,5120XX,PRD-Other Assemblers and Fabricators +VAL,SOCP,C,6,513011,513011,PRD-Bakers +VAL,SOCP,C,6,513020,513020,"PRD-Butchers And Other Meat, Poultry, And Fish Processing Workers" +VAL,SOCP,C,6,513091,513091,"PRD-Food And Tobacco Roasting, Baking, And Drying Machine Operators And Tenders" +VAL,SOCP,C,6,513092,513092,PRD-Food Batchmakers +VAL,SOCP,C,6,513093,513093,PRD-Food Cooking Machine Operators And Tenders +VAL,SOCP,C,6,513099,513099,"PRD-Food Processing Workers, All Other" +VAL,SOCP,C,6,519160,519160,PRD-Computer Numerically Controlled Tool Operators And Programmers +VAL,SOCP,C,6,514020,514020,"PRD-Forming Machine Setters, Operators, And Tenders, Metal And Plastic" +VAL,SOCP,C,6,514031,514031,"PRD-Cutting, Punching, And Press Machine Setters, Operators, And Tenders, Metal And Plastic" +VAL,SOCP,C,6,514033,514033,"PRD-Grinding, Lapping, Polishing, And Buffing Machine Tool Setters, Operators, And Tenders, Metal and Plastic" +VAL,SOCP,C,6,51403X,51403X,"PRD-Other Machine Tool Setters, Operators, And Tenders, Metal And Plastic" +VAL,SOCP,C,6,514041,514041,PRD-Machinists +VAL,SOCP,C,6,514050,514050,"PRD-Metal Furnace Operators, Tenders, Pourers, And Casters" +VAL,SOCP,C,6,5140XX,5140XX,"PRD-Model Makers, Patternmakers, And Molding Machine Setters, Metal And Plastic" +VAL,SOCP,C,6,514111,514111,PRD-Tool And Die Makers +VAL,SOCP,C,6,514120,514120,"PRD-Welding, Soldering, And Brazing Workers" +VAL,SOCP,C,6,514XXX,514XXX,PRD-Other Metal Workers And Plastic Workers +VAL,SOCP,C,6,515111,515111,PRD-Prepress Technicians And Workers +VAL,SOCP,C,6,515112,515112,PRD-Printing Press Operators +VAL,SOCP,C,6,515113,515113,PRD-Print Binding And Finishing Workers +VAL,SOCP,C,6,516011,516011,PRD-Laundry And Dry-Cleaning Workers +VAL,SOCP,C,6,516021,516021,"PRD-Pressers, Textile, Garment, And Related Materials" +VAL,SOCP,C,6,516031,516031,PRD-Sewing Machine Operators +VAL,SOCP,C,6,516040,516040,PRD-Shoe And Leather Workers +VAL,SOCP,C,6,516050,516050,"PRD-Tailors, Dressmakers, And Sewers" +VAL,SOCP,C,6,516060,516060,"PRD-Textile Machine Setters, Operators, And Tenders" +VAL,SOCP,C,6,516093,516093,PRD-Upholsterers +VAL,SOCP,C,6,51609X,51609X,"PRD-Other Textile, Apparel, And Furnishings Workers" +VAL,SOCP,C,6,517011,517011,PRD-Cabinetmakers And Bench Carpenters +VAL,SOCP,C,6,517021,517021,PRD-Furniture Finishers +VAL,SOCP,C,6,517041,517041,"PRD-Sawing Machine Setters, Operators, And Tenders, Wood" +VAL,SOCP,C,6,517042,517042,"PRD-Woodworking Machine Setters, Operators, And Tenders, Except Sawing" +VAL,SOCP,C,6,5170XX,5170XX,PRD-Other Woodworkers +VAL,SOCP,C,6,518010,518010,"PRD-Power Plant Operators, Distributors, And Dispatchers" +VAL,SOCP,C,6,518021,518021,PRD-Stationary Engineers And Boiler Operators +VAL,SOCP,C,6,518031,518031,PRD-Water And Wastewater Treatment Plant And System Operators +VAL,SOCP,C,6,518090,518090,PRD-Miscellaneous Plant And System Operators +VAL,SOCP,C,6,519010,519010,"PRD-Chemical Processing Machine Setters, Operators, And Tenders" +VAL,SOCP,C,6,519020,519020,"PRD-Crushing, Grinding, Polishing, Mixing, And Blending Workers" +VAL,SOCP,C,6,519030,519030,PRD-Cutting Workers +VAL,SOCP,C,6,519041,519041,"PRD-Extruding, Forming, Pressing, And Compacting Machine Setters, Operators, And Tenders" +VAL,SOCP,C,6,519051,519051,"PRD-Furnace, Kiln, Oven, Drier, And Kettle Operators And Tenders" +VAL,SOCP,C,6,519061,519061,"PRD-Inspectors, Testers, Sorters, Samplers, And Weighers" +VAL,SOCP,C,6,519071,519071,PRD-Jewelers And Precious Stone And Metal Workers +VAL,SOCP,C,6,519080,519080,PRD-Dental And Ophthalmic Laboratory Technicians And Medical Appliance Technicians +VAL,SOCP,C,6,519111,519111,PRD-Packaging And Filling Machine Operators And Tenders +VAL,SOCP,C,6,519120,519120,PRD-Painting Workers +VAL,SOCP,C,6,519151,519151,PRD-Photographic Process Workers And Processing Machine Operators +VAL,SOCP,C,6,519191,519191,PRD-Adhesive Bonding Machine Operators And Tenders +VAL,SOCP,C,6,519194,519194,PRD-Etchers And Engravers +VAL,SOCP,C,6,519195,519195,"PRD-Molders, Shapers, And Casters, Except Metal And Plastic" +VAL,SOCP,C,6,519196,519196,"PRD-Paper Goods Machine Setters, Operators, And Tenders" +VAL,SOCP,C,6,519197,519197,PRD-Tire Builders +VAL,SOCP,C,6,519198,519198,PRD-Helpers--Production Workers +VAL,SOCP,C,6,5191XX,5191XX,"PRD-Miscellaneous Production Workers, Including Equipment Operators and Tenders" +VAL,SOCP,C,6,531000,531000,TRN-Supervisors Of Transportation And Material Moving Workers +VAL,SOCP,C,6,532010,532010,TRN-Aircraft Pilots And Flight Engineers +VAL,SOCP,C,6,532020,532020,TRN-Air Traffic Controllers And Airfield Operations Specialists +VAL,SOCP,C,6,532031,532031,TRN-Flight Attendants +VAL,SOCP,C,6,533011,533011,"TRN-Ambulance Drivers And Attendants, Except Emergency Medical Technicians" +VAL,SOCP,C,6,533051,533051,"TRN-Bus Drivers, School" +VAL,SOCP,C,6,533052,533052,"TRN-Bus Drivers, Transit And Intercity" +VAL,SOCP,C,6,533030,533030,TRN-Driver/Sales Workers And Truck Drivers +VAL,SOCP,C,6,533053,533053,TRN-Shuttle Drivers and Chauffeurs +VAL,SOCP,C,6,533054,533054,TRN-Taxi Drivers +VAL,SOCP,C,6,533099,533099,"TRN-Motor Vehicle Operators, All Other" +VAL,SOCP,C,6,534010,534010,TRN-Locomotive Engineers And Operators +VAL,SOCP,C,6,534031,534031,TRN-Railroad Conductors And Yardmasters +VAL,SOCP,C,6,5340XX,5340XX,TRN-Other Rail Transportation Workers +VAL,SOCP,C,6,5350XX,5350XX,"TRN-Sailors And Marine Oilers, And Ship Engineers" +VAL,SOCP,C,6,535020,535020,TRN-Ship And Boat Captains And Operators +VAL,SOCP,C,6,536021,536021,TRN-Parking Attendants +VAL,SOCP,C,6,536030,536030,TRN-Transportation Service Attendants +VAL,SOCP,C,6,536051,536051,TRN-Transportation Inspectors +VAL,SOCP,C,6,536061,536061,TRN-Passenger Attendants +VAL,SOCP,C,6,5360XX,5360XX,TRN-Other Transportation Workers +VAL,SOCP,C,6,537021,537021,TRN-Crane And Tower Operators +VAL,SOCP,C,6,5370XX,5370XX,"TRN-Conveyor, Dredge, And Hoist And Winch Operators" +VAL,SOCP,C,6,537051,537051,TRN-Industrial Truck And Tractor Operators +VAL,SOCP,C,6,537061,537061,TRN-Cleaners Of Vehicles And Equipment +VAL,SOCP,C,6,537062,537062,"TRN-Laborers And Freight, Stock, And Material Movers, Hand" +VAL,SOCP,C,6,537063,537063,TRN-Machine Feeders And Offbearers +VAL,SOCP,C,6,537064,537064,"TRN-Packers And Packagers, Hand" +VAL,SOCP,C,6,537065,537065,TRN-Stockers And Order Fillers +VAL,SOCP,C,6,537070,537070,TRN-Pumping Station Operators +VAL,SOCP,C,6,537081,537081,TRN-Refuse And Recyclable Material Collectors +VAL,SOCP,C,6,5371XX,5371XX,TRN-Other Material Moving Workers +VAL,SOCP,C,6,551010,551010,MIL-Military Officer Special And Tactical Operations Leaders +VAL,SOCP,C,6,552010,552010,MIL-First-Line Enlisted Military Supervisors +VAL,SOCP,C,6,553010,553010,MIL-Military Enlisted Tactical Operations And Air/Weapons Specialists And Crew Members +VAL,SOCP,C,6,559830,559830,"MIL-Military, Rank Not Specified" +VAL,SOCP,C,6,999920,999920,"Unemployed, With No Work Experience In The Last 5 Years Or Earlier Or Never Worked" +NAME,VPS,C,2,Veteran period of service,, +VAL,VPS,C,2,bb,bb,"N/A (less than 17 years old, no active duty)" +VAL,VPS,C,2,01,01,Gulf War: 9/2001 or later +VAL,VPS,C,2,02,02,Gulf War: 9/2001 or later and Gulf War: 8/1990 - 8/2001 +VAL,VPS,C,2,03,03,Gulf War: 9/2001 or later and Gulf War: 8/1990 - 8/2001 and Vietnam Era +VAL,VPS,C,2,04,04,Gulf War: 8/1990 - 8/2001 +VAL,VPS,C,2,05,05,Gulf War: 8/1990 - 8/2001 and Vietnam Era +VAL,VPS,C,2,06,06,Vietnam Era +VAL,VPS,C,2,07,07,Vietnam Era and Korean War +VAL,VPS,C,2,08,08,"Vietnam Era, Korean War, and WWII" +VAL,VPS,C,2,09,09,Korean War +VAL,VPS,C,2,10,10,Korean War and WWII +VAL,VPS,C,2,11,11,WWII +VAL,VPS,C,2,12,12,Between Gulf War and Vietnam Era only +VAL,VPS,C,2,13,13,Between Vietnam Era and Korean War only +VAL,VPS,C,2,14,14,Peacetime service before the Korean War only +NAME,WAOB,C,1,World area of birth,, +VAL,WAOB,C,1,1,1,US state (POBP = 001-059) +VAL,WAOB,C,1,2,2,PR and US Island Areas (POBP = 061-099) +VAL,WAOB,C,1,3,3,"Latin America (POBP = 303,310-399)" +VAL,WAOB,C,1,4,4,"Asia (POBP = 158-159,161,200-299)" +VAL,WAOB,C,1,5,5,"Europe (POBP = 100-157,160,162-199)" +VAL,WAOB,C,1,6,6,Africa (POBP = 400-499) +VAL,WAOB,C,1,7,7,"Northern America (POBP = 300-302,304-309)" +VAL,WAOB,C,1,8,8,"Oceania and at Sea (POBP = 060,500-554)" +NAME,FAGEP,C,1,Age allocation flag,, +VAL,FAGEP,C,1,0,0,No +VAL,FAGEP,C,1,1,1,Yes +NAME,FANCP,C,1,Ancestry allocation flag,, +VAL,FANCP,C,1,0,0,No +VAL,FANCP,C,1,1,1,Yes +NAME,FCITP,C,1,Citizenship allocation flag,, +VAL,FCITP,C,1,0,0,No +VAL,FCITP,C,1,1,1,Yes +NAME,FCITWP,C,1,Year of naturalization write-in allocation flag,, +VAL,FCITWP,C,1,0,0,No +VAL,FCITWP,C,1,1,1,Yes +NAME,FCOWP,C,1,Class of worker allocation flag,, +VAL,FCOWP,C,1,0,0,No +VAL,FCOWP,C,1,1,1,Yes +NAME,FDDRSP,C,1,Self-care difficulty allocation flag,, +VAL,FDDRSP,C,1,0,0,No +VAL,FDDRSP,C,1,1,1,Yes +NAME,FDEARP,C,1,Hearing difficulty allocation flag,, +VAL,FDEARP,C,1,0,0,No +VAL,FDEARP,C,1,1,1,Yes +NAME,FDEYEP,C,1,Vision difficulty allocation flag,, +VAL,FDEYEP,C,1,0,0,No +VAL,FDEYEP,C,1,1,1,Yes +NAME,FDISP,C,1,Disability recode allocation flag,, +VAL,FDISP,C,1,0,0,No +VAL,FDISP,C,1,1,1,Yes +NAME,FDOUTP,C,1,Independent living difficulty allocation flag,, +VAL,FDOUTP,C,1,0,0,No +VAL,FDOUTP,C,1,1,1,Yes +NAME,FDPHYP,C,1,Ambulatory difficulty allocation flag,, +VAL,FDPHYP,C,1,0,0,No +VAL,FDPHYP,C,1,1,1,Yes +NAME,FDRATP,C,1,Disability rating percentage allocation flag,, +VAL,FDRATP,C,1,0,0,No +VAL,FDRATP,C,1,1,1,Yes +NAME,FDRATXP,C,1,Disability rating checkbox allocation flag,, +VAL,FDRATXP,C,1,0,0,No +VAL,FDRATXP,C,1,1,1,Yes +NAME,FDREMP,C,1,Cognitive difficulty allocation flag,, +VAL,FDREMP,C,1,0,0,No +VAL,FDREMP,C,1,1,1,Yes +NAME,FENGP,C,1,Ability to speak English allocation flag,, +VAL,FENGP,C,1,0,0,No +VAL,FENGP,C,1,1,1,Yes +NAME,FESRP,C,1,Employment status recode allocation flag,, +VAL,FESRP,C,1,0,0,No +VAL,FESRP,C,1,1,1,Yes +NAME,FFERP,C,1,Gave birth to child within the past 12 months allocation flag,, +VAL,FFERP,C,1,0,0,No +VAL,FFERP,C,1,1,1,Yes +NAME,FFODP,C,1,Field of Degree allocation flag,, +VAL,FFODP,C,1,0,0,No +VAL,FFODP,C,1,1,1,Yes +NAME,FGCLP,C,1,Grandparents living with grandchildren allocation flag,, +VAL,FGCLP,C,1,0,0,No +VAL,FGCLP,C,1,1,1,Yes +NAME,FGCMP,C,1,Length of time responsible for grandchildren allocation flag,, +VAL,FGCMP,C,1,0,0,No +VAL,FGCMP,C,1,1,1,Yes +NAME,FGCRP,C,1,Grandparents responsible for grandchildren allocation flag,, +VAL,FGCRP,C,1,0,0,No +VAL,FGCRP,C,1,1,1,Yes +NAME,FHICOVP,C,1,Health insurance coverage recode allocation flag,, +VAL,FHICOVP,C,1,0,0,No +VAL,FHICOVP,C,1,1,1,Yes +NAME,FHIMRKSP,C,1,Subsidized Marketplace Coverage allocation flag,, +VAL,FHIMRKSP,C,1,0,0,No +VAL,FHIMRKSP,C,1,1,1,Yes +NAME,FHINS1P,C,1,Insurance through a current or former employer or union allocation flag,, +VAL,FHINS1P,C,1,0,0,No +VAL,FHINS1P,C,1,1,1,Yes +NAME,FHINS2P,C,1,Insurance purchased directly from an insurance company allocation flag,, +VAL,FHINS2P,C,1,0,0,No +VAL,FHINS2P,C,1,1,1,Yes +NAME,FHINS3C,C,1,Medicare coverage given through the eligibility coverage edit,, +VAL,FHINS3C,C,1,b,b,Does not have Medicare coverage (HINS3=2) +VAL,FHINS3C,C,1,0,0,No +VAL,FHINS3C,C,1,1,1,Yes +NAME,FHINS3P,C,1,"Medicare, for people 65 or older, or people with certain disabilities allocation flag",, +VAL,FHINS3P,C,1,0,0,No +VAL,FHINS3P,C,1,1,1,Yes +NAME,FHINS4C,C,1,Medicaid coverage given through the eligibility coverage edit,, +VAL,FHINS4C,C,1,b,b,Does not have Medicaid coverage (HINS4=2) +VAL,FHINS4C,C,1,0,0,No +VAL,FHINS4C,C,1,1,1,Yes +NAME,FHINS4P,C,1,"Medicaid, medical assistance, or any kind of government-assistance plan for people with low incomes or a disability allocation flag",, +VAL,FHINS4P,C,1,0,0,No +VAL,FHINS4P,C,1,1,1,Yes +NAME,FHINS5C,C,1,TRICARE coverage given through the eligibility coverage edit,, +VAL,FHINS5C,C,1,b,b,Does not have TRICARE coverage (HINS5=2) +VAL,FHINS5C,C,1,0,0,No +VAL,FHINS5C,C,1,1,1,Yes +NAME,FHINS5P,C,1,TRICARE or other military health care allocation flag,, +VAL,FHINS5P,C,1,0,0,No +VAL,FHINS5P,C,1,1,1,Yes +NAME,FHINS6P,C,1,VA (enrolled for VA health care) allocation flag,, +VAL,FHINS6P,C,1,0,0,No +VAL,FHINS6P,C,1,1,1,Yes +NAME,FHINS7P,C,1,Indian health service allocation flag,, +VAL,FHINS7P,C,1,0,0,No +VAL,FHINS7P,C,1,1,1,Yes +NAME,FHISP,C,1,Detailed Hispanic origin allocation flag,, +VAL,FHISP,C,1,0,0,No +VAL,FHISP,C,1,1,1,Yes +NAME,FINDP,C,1,Industry allocation flag,, +VAL,FINDP,C,1,0,0,No +VAL,FINDP,C,1,1,1,Yes +NAME,FINTP,C,1,"Interest, dividend, and net rental income allocation flag",, +VAL,FINTP,C,1,0,0,No +VAL,FINTP,C,1,1,1,Yes +NAME,FJWDP,C,1,Time of departure to work allocation flag,, +VAL,FJWDP,C,1,0,0,No +VAL,FJWDP,C,1,1,1,Yes +NAME,FJWMNP,C,1,Travel time to work allocation flag,, +VAL,FJWMNP,C,1,0,0,No +VAL,FJWMNP,C,1,1,1,Yes +NAME,FJWRIP,C,1,Vehicle occupancy allocation flag,, +VAL,FJWRIP,C,1,0,0,No +VAL,FJWRIP,C,1,1,1,Yes +NAME,FJWTRNSP,C,1,Means of transportation to work allocation flag,, +VAL,FJWTRNSP,C,1,0,0,No +VAL,FJWTRNSP,C,1,1,1,Yes +NAME,FLANP,C,1,Language spoken at home allocation flag,, +VAL,FLANP,C,1,0,0,No +VAL,FLANP,C,1,1,1,Yes +NAME,FLANXP,C,1,Language other than English allocation flag,, +VAL,FLANXP,C,1,0,0,No +VAL,FLANXP,C,1,1,1,Yes +NAME,FMARP,C,1,Marital status allocation flag,, +VAL,FMARP,C,1,0,0,No +VAL,FMARP,C,1,1,1,Yes +NAME,FMARHDP,C,1,Divorced in the past 12 months allocation flag,, +VAL,FMARHDP,C,1,0,0,No +VAL,FMARHDP,C,1,1,1,Yes +NAME,FMARHMP,C,1,Married in the past 12 months allocation flag,, +VAL,FMARHMP,C,1,0,0,No +VAL,FMARHMP,C,1,1,1,Yes +NAME,FMARHTP,C,1,Times married allocation flag,, +VAL,FMARHTP,C,1,0,0,No +VAL,FMARHTP,C,1,1,1,Yes +NAME,FMARHWP,C,1,Widowed in the past 12 months allocation flag,, +VAL,FMARHWP,C,1,0,0,No +VAL,FMARHWP,C,1,1,1,Yes +NAME,FMARHYP,C,1,Year last married allocation flag,, +VAL,FMARHYP,C,1,0,0,No +VAL,FMARHYP,C,1,1,1,Yes +NAME,FMIGP,C,1,Mobility status allocation flag,, +VAL,FMIGP,C,1,0,0,No +VAL,FMIGP,C,1,1,1,Yes +NAME,FMIGSP,C,1,Migration state and foreign country allocation flag,, +VAL,FMIGSP,C,1,0,0,No +VAL,FMIGSP,C,1,1,1,Yes +NAME,FMILPP,C,1,Military periods of service allocation flag,, +VAL,FMILPP,C,1,0,0,No +VAL,FMILPP,C,1,1,1,Yes +NAME,FMILSP,C,1,Military service allocation flag,, +VAL,FMILSP,C,1,0,0,No +VAL,FMILSP,C,1,1,1,Yes +NAME,FOCCP,C,1,Occupation allocation flag,, +VAL,FOCCP,C,1,0,0,No +VAL,FOCCP,C,1,1,1,Yes +NAME,FOIP,C,1,All other income allocation flag,, +VAL,FOIP,C,1,0,0,No +VAL,FOIP,C,1,1,1,Yes +NAME,FPAP,C,1,Public assistance income allocation flag,, +VAL,FPAP,C,1,0,0,No +VAL,FPAP,C,1,1,1,Yes +NAME,FPERNP,C,1,Total person's earnings allocation flag,, +VAL,FPERNP,C,1,0,0,No +VAL,FPERNP,C,1,1,1,Yes +NAME,FPINCP,C,1,Total person's income allocation flag,, +VAL,FPINCP,C,1,0,0,No +VAL,FPINCP,C,1,1,1,Yes +NAME,FPOBP,C,1,Place of birth allocation flag,, +VAL,FPOBP,C,1,0,0,No +VAL,FPOBP,C,1,1,1,Yes +NAME,FPOWSP,C,1,Place of work state allocation flag,, +VAL,FPOWSP,C,1,0,0,No +VAL,FPOWSP,C,1,1,1,Yes +NAME,FPRIVCOVP,C,1,Private health insurance coverage recode allocation flag,, +VAL,FPRIVCOVP,C,1,0,0,No +VAL,FPRIVCOVP,C,1,1,1,Yes +NAME,FPUBCOVP,C,1,Public health coverage recode allocation flag,, +VAL,FPUBCOVP,C,1,0,0,No +VAL,FPUBCOVP,C,1,1,1,Yes +NAME,FRACP,C,1,Detailed race allocation flag,, +VAL,FRACP,C,1,0,0,No +VAL,FRACP,C,1,1,1,Yes +NAME,FRELSHIPP,C,1,Relationship allocation flag,, +VAL,FRELSHIPP,C,1,0,0,No +VAL,FRELSHIPP,C,1,1,1,Yes +NAME,FRETP,C,1,Retirement income allocation flag,, +VAL,FRETP,C,1,0,0,No +VAL,FRETP,C,1,1,1,Yes +NAME,FSCHGP,C,1,Grade attending allocation flag,, +VAL,FSCHGP,C,1,0,0,No +VAL,FSCHGP,C,1,1,1,Yes +NAME,FSCHLP,C,1,Highest education allocation flag,, +VAL,FSCHLP,C,1,0,0,No +VAL,FSCHLP,C,1,1,1,Yes +NAME,FSCHP,C,1,School enrollment allocation flag,, +VAL,FSCHP,C,1,0,0,No +VAL,FSCHP,C,1,1,1,Yes +NAME,FSEMP,C,1,Self-employment income allocation flag,, +VAL,FSEMP,C,1,0,0,No +VAL,FSEMP,C,1,1,1,Yes +NAME,FSEXP,C,1,Sex allocation flag,, +VAL,FSEXP,C,1,0,0,No +VAL,FSEXP,C,1,1,1,Yes +NAME,FSSIP,C,1,Supplementary Security Income allocation flag,, +VAL,FSSIP,C,1,0,0,No +VAL,FSSIP,C,1,1,1,Yes +NAME,FSSP,C,1,Social Security income allocation flag,, +VAL,FSSP,C,1,0,0,No +VAL,FSSP,C,1,1,1,Yes +NAME,FWAGP,C,1,Wages and salary income allocation flag,, +VAL,FWAGP,C,1,0,0,No +VAL,FWAGP,C,1,1,1,Yes +NAME,FWKHP,C,1,Usual hours worked per week past 12 months allocation flag,, +VAL,FWKHP,C,1,0,0,No +VAL,FWKHP,C,1,1,1,Yes +NAME,FWKLP,C,1,Last worked allocation flag,, +VAL,FWKLP,C,1,0,0,No +VAL,FWKLP,C,1,1,1,Yes +NAME,FWKWNP,C,1,Weeks worked past 12 months allocation flag,, +VAL,FWKWNP,C,1,0,0,No +VAL,FWKWNP,C,1,1,1,Yes +NAME,FWRKP,C,1,Worked last week allocation flag,, +VAL,FWRKP,C,1,0,0,No +VAL,FWRKP,C,1,1,1,Yes +NAME,FYOEP,C,1,Year of entry allocation flag,, +VAL,FYOEP,C,1,0,0,No +VAL,FYOEP,C,1,1,1,Yes +NAME,PWGTP1,N,5,Person's Weight replicate 1,, +VAL,PWGTP1,N,5,-9999,9999,Integer weight of person +NAME,PWGTP2,N,5,Person's Weight replicate 2,, +VAL,PWGTP2,N,5,-9999,9999,Integer weight of person +NAME,PWGTP3,N,5,Person's Weight replicate 3,, +VAL,PWGTP3,N,5,-9999,9999,Integer weight of person +NAME,PWGTP4,N,5,Person's Weight replicate 4,, +VAL,PWGTP4,N,5,-9999,9999,Integer weight of person +NAME,PWGTP5,N,5,Person's Weight replicate 5,, +VAL,PWGTP5,N,5,-9999,9999,Integer weight of person +NAME,PWGTP6,N,5,Person's Weight replicate 6,, +VAL,PWGTP6,N,5,-9999,9999,Integer weight of person +NAME,PWGTP7,N,5,Person's Weight replicate 7,, +VAL,PWGTP7,N,5,-9999,9999,Integer weight of person +NAME,PWGTP8,N,5,Person's Weight replicate 8,, +VAL,PWGTP8,N,5,-9999,9999,Integer weight of person +NAME,PWGTP9,N,5,Person's Weight replicate 9,, +VAL,PWGTP9,N,5,-9999,9999,Integer weight of person +NAME,PWGTP10,N,5,Person's Weight replicate 10,, +VAL,PWGTP10,N,5,-9999,9999,Integer weight of person +NAME,PWGTP11,N,5,Person's Weight replicate 11,, +VAL,PWGTP11,N,5,-9999,9999,Integer weight of person +NAME,PWGTP12,N,5,Person's Weight replicate 12,, +VAL,PWGTP12,N,5,-9999,9999,Integer weight of person +NAME,PWGTP13,N,5,Person's Weight replicate 13,, +VAL,PWGTP13,N,5,-9999,9999,Integer weight of person +NAME,PWGTP14,N,5,Person's Weight replicate 14,, +VAL,PWGTP14,N,5,-9999,9999,Integer weight of person +NAME,PWGTP15,N,5,Person's Weight replicate 15,, +VAL,PWGTP15,N,5,-9999,9999,Integer weight of person +NAME,PWGTP16,N,5,Person's Weight replicate 16,, +VAL,PWGTP16,N,5,-9999,9999,Integer weight of person +NAME,PWGTP17,N,5,Person's Weight replicate 17,, +VAL,PWGTP17,N,5,-9999,9999,Integer weight of person +NAME,PWGTP18,N,5,Person's Weight replicate 18,, +VAL,PWGTP18,N,5,-9999,9999,Integer weight of person +NAME,PWGTP19,N,5,Person's Weight replicate 19,, +VAL,PWGTP19,N,5,-9999,9999,Integer weight of person +NAME,PWGTP20,N,5,Person's Weight replicate 20,, +VAL,PWGTP20,N,5,-9999,9999,Integer weight of person +NAME,PWGTP21,N,5,Person's Weight replicate 21,, +VAL,PWGTP21,N,5,-9999,9999,Integer weight of person +NAME,PWGTP22,N,5,Person's Weight replicate 22,, +VAL,PWGTP22,N,5,-9999,9999,Integer weight of person +NAME,PWGTP23,N,5,Person's Weight replicate 23,, +VAL,PWGTP23,N,5,-9999,9999,Integer weight of person +NAME,PWGTP24,N,5,Person's Weight replicate 24,, +VAL,PWGTP24,N,5,-9999,9999,Integer weight of person +NAME,PWGTP25,N,5,Person's Weight replicate 25,, +VAL,PWGTP25,N,5,-9999,9999,Integer weight of person +NAME,PWGTP26,N,5,Person's Weight replicate 26,, +VAL,PWGTP26,N,5,-9999,9999,Integer weight of person +NAME,PWGTP27,N,5,Person's Weight replicate 27,, +VAL,PWGTP27,N,5,-9999,9999,Integer weight of person +NAME,PWGTP28,N,5,Person's Weight replicate 28,, +VAL,PWGTP28,N,5,-9999,9999,Integer weight of person +NAME,PWGTP29,N,5,Person's Weight replicate 29,, +VAL,PWGTP29,N,5,-9999,9999,Integer weight of person +NAME,PWGTP30,N,5,Person's Weight replicate 30,, +VAL,PWGTP30,N,5,-9999,9999,Integer weight of person +NAME,PWGTP31,N,5,Person's Weight replicate 31,, +VAL,PWGTP31,N,5,-9999,9999,Integer weight of person +NAME,PWGTP32,N,5,Person's Weight replicate 32,, +VAL,PWGTP32,N,5,-9999,9999,Integer weight of person +NAME,PWGTP33,N,5,Person's Weight replicate 33,, +VAL,PWGTP33,N,5,-9999,9999,Integer weight of person +NAME,PWGTP34,N,5,Person's Weight replicate 34,, +VAL,PWGTP34,N,5,-9999,9999,Integer weight of person +NAME,PWGTP35,N,5,Person's Weight replicate 35,, +VAL,PWGTP35,N,5,-9999,9999,Integer weight of person +NAME,PWGTP36,N,5,Person's Weight replicate 36,, +VAL,PWGTP36,N,5,-9999,9999,Integer weight of person +NAME,PWGTP37,N,5,Person's Weight replicate 37,, +VAL,PWGTP37,N,5,-9999,9999,Integer weight of person +NAME,PWGTP38,N,5,Person's Weight replicate 38,, +VAL,PWGTP38,N,5,-9999,9999,Integer weight of person +NAME,PWGTP39,N,5,Person's Weight replicate 39,, +VAL,PWGTP39,N,5,-9999,9999,Integer weight of person +NAME,PWGTP40,N,5,Person's Weight replicate 40,, +VAL,PWGTP40,N,5,-9999,9999,Integer weight of person +NAME,PWGTP41,N,5,Person's Weight replicate 41,, +VAL,PWGTP41,N,5,-9999,9999,Integer weight of person +NAME,PWGTP42,N,5,Person's Weight replicate 42,, +VAL,PWGTP42,N,5,-9999,9999,Integer weight of person +NAME,PWGTP43,N,5,Person's Weight replicate 43,, +VAL,PWGTP43,N,5,-9999,9999,Integer weight of person +NAME,PWGTP44,N,5,Person's Weight replicate 44,, +VAL,PWGTP44,N,5,-9999,9999,Integer weight of person +NAME,PWGTP45,N,5,Person's Weight replicate 45,, +VAL,PWGTP45,N,5,-9999,9999,Integer weight of person +NAME,PWGTP46,N,5,Person's Weight replicate 46,, +VAL,PWGTP46,N,5,-9999,9999,Integer weight of person +NAME,PWGTP47,N,5,Person's Weight replicate 47,, +VAL,PWGTP47,N,5,-9999,9999,Integer weight of person +NAME,PWGTP48,N,5,Person's Weight replicate 48,, +VAL,PWGTP48,N,5,-9999,9999,Integer weight of person +NAME,PWGTP49,N,5,Person's Weight replicate 49,, +VAL,PWGTP49,N,5,-9999,9999,Integer weight of person +NAME,PWGTP50,N,5,Person's Weight replicate 50,, +VAL,PWGTP50,N,5,-9999,9999,Integer weight of person +NAME,PWGTP51,N,5,Person's Weight replicate 51,, +VAL,PWGTP51,N,5,-9999,9999,Integer weight of person +NAME,PWGTP52,N,5,Person's Weight replicate 52,, +VAL,PWGTP52,N,5,-9999,9999,Integer weight of person +NAME,PWGTP53,N,5,Person's Weight replicate 53,, +VAL,PWGTP53,N,5,-9999,9999,Integer weight of person +NAME,PWGTP54,N,5,Person's Weight replicate 54,, +VAL,PWGTP54,N,5,-9999,9999,Integer weight of person +NAME,PWGTP55,N,5,Person's Weight replicate 55,, +VAL,PWGTP55,N,5,-9999,9999,Integer weight of person +NAME,PWGTP56,N,5,Person's Weight replicate 56,, +VAL,PWGTP56,N,5,-9999,9999,Integer weight of person +NAME,PWGTP57,N,5,Person's Weight replicate 57,, +VAL,PWGTP57,N,5,-9999,9999,Integer weight of person +NAME,PWGTP58,N,5,Person's Weight replicate 58,, +VAL,PWGTP58,N,5,-9999,9999,Integer weight of person +NAME,PWGTP59,N,5,Person's Weight replicate 59,, +VAL,PWGTP59,N,5,-9999,9999,Integer weight of person +NAME,PWGTP60,N,5,Person's Weight replicate 60,, +VAL,PWGTP60,N,5,-9999,9999,Integer weight of person +NAME,PWGTP61,N,5,Person's Weight replicate 61,, +VAL,PWGTP61,N,5,-9999,9999,Integer weight of person +NAME,PWGTP62,N,5,Person's Weight replicate 62,, +VAL,PWGTP62,N,5,-9999,9999,Integer weight of person +NAME,PWGTP63,N,5,Person's Weight replicate 63,, +VAL,PWGTP63,N,5,-9999,9999,Integer weight of person +NAME,PWGTP64,N,5,Person's Weight replicate 64,, +VAL,PWGTP64,N,5,-9999,9999,Integer weight of person +NAME,PWGTP65,N,5,Person's Weight replicate 65,, +VAL,PWGTP65,N,5,-9999,9999,Integer weight of person +NAME,PWGTP66,N,5,Person's Weight replicate 66,, +VAL,PWGTP66,N,5,-9999,9999,Integer weight of person +NAME,PWGTP67,N,5,Person's Weight replicate 67,, +VAL,PWGTP67,N,5,-9999,9999,Integer weight of person +NAME,PWGTP68,N,5,Person's Weight replicate 68,, +VAL,PWGTP68,N,5,-9999,9999,Integer weight of person +NAME,PWGTP69,N,5,Person's Weight replicate 69,, +VAL,PWGTP69,N,5,-9999,9999,Integer weight of person +NAME,PWGTP70,N,5,Person's Weight replicate 70,, +VAL,PWGTP70,N,5,-9999,9999,Integer weight of person +NAME,PWGTP71,N,5,Person's Weight replicate 71,, +VAL,PWGTP71,N,5,-9999,9999,Integer weight of person +NAME,PWGTP72,N,5,Person's Weight replicate 72,, +VAL,PWGTP72,N,5,-9999,9999,Integer weight of person +NAME,PWGTP73,N,5,Person's Weight replicate 73,, +VAL,PWGTP73,N,5,-9999,9999,Integer weight of person +NAME,PWGTP74,N,5,Person's Weight replicate 74,, +VAL,PWGTP74,N,5,-9999,9999,Integer weight of person +NAME,PWGTP75,N,5,Person's Weight replicate 75,, +VAL,PWGTP75,N,5,-9999,9999,Integer weight of person +NAME,PWGTP76,N,5,Person's Weight replicate 76,, +VAL,PWGTP76,N,5,-9999,9999,Integer weight of person +NAME,PWGTP77,N,5,Person's Weight replicate 77,, +VAL,PWGTP77,N,5,-9999,9999,Integer weight of person +NAME,PWGTP78,N,5,Person's Weight replicate 78,, +VAL,PWGTP78,N,5,-9999,9999,Integer weight of person +NAME,PWGTP79,N,5,Person's Weight replicate 79,, +VAL,PWGTP79,N,5,-9999,9999,Integer weight of person +NAME,PWGTP80,N,5,Person's Weight replicate 80,, +VAL,PWGTP80,N,5,-9999,9999,Integer weight of person \ No newline at end of file diff --git a/data/pums_variables.rda b/data/pums_variables.rda index e7940c3..0256d5e 100644 Binary files a/data/pums_variables.rda and b/data/pums_variables.rda differ diff --git a/man/pums_variables.Rd b/man/pums_variables.Rd index fbd93c5..cbb3974 100644 --- a/man/pums_variables.Rd +++ b/man/pums_variables.Rd @@ -5,7 +5,7 @@ \alias{pums_variables} \title{Dataset with PUMS variables and codes} \format{ -An object of class \code{tbl_df} (inherits from \code{tbl}, \code{data.frame}) with 58580 rows and 12 columns. +An object of class \code{tbl_df} (inherits from \code{tbl}, \code{data.frame}) with 63966 rows and 12 columns. } \usage{ data(pums_variables)