diff --git a/data/cosmos_chronic/ingest.R b/data/cosmos_chronic/ingest.R index 2a0b674..60c7baa 100644 --- a/data/cosmos_chronic/ingest.R +++ b/data/cosmos_chronic/ingest.R @@ -254,9 +254,9 @@ if (!identical(process$raw_state, current_state)) { mutate( yr_num = as.integer(sub("yr", "", yr_idx)), time = year_dates[yr_num], - suppressed_flag = as.integer( - trimws(as.character(.data[[measure_names[3]]])) == "10 or fewer" - ) + # suppressed_flag = as.integer( + # trimws(as.character(.data[[measure_names[3]]])) == "10 or fewer" + # ) ) %>% mutate(across( all_of(measure_names), @@ -266,7 +266,7 @@ if (!identical(process$raw_state, current_state)) { as.numeric(gsub("%", "", v)) } )) %>% - select(age, geography, time, all_of(measure_names), suppressed_flag) + select(age, geography, time, all_of(measure_names)) } # --------------------------------------------------------------------------- @@ -287,20 +287,38 @@ if (!identical(process$raw_state, current_state)) { ob_csv, skip_rows = 14, measure_names = c("obesity_dx_ccw", "obesity_bmi", "n_patients_ob") - ) %>% - select(-n_patients_ob) + ) # %>% + # rename(suppressed_flag_ob = suppressed_flag) # --------------------------------------------------------------------------- # 5. Combine state data and write # --------------------------------------------------------------------------- combined_state <- full_join(dm, ob, by = c("age", "geography", "time")) %>% select(age, geography, time, diabetes_a1c_6_5, diabetes_dx_ccw, - obesity_bmi, obesity_dx_ccw, n_patients_chronic, - suppressed_flag) %>% + obesity_bmi, obesity_dx_ccw, n_patients_chronic, n_patients_ob) %>% + mutate( + suppressed_diabetes_a1c_6_5 = as.integer(is.na(diabetes_a1c_6_5)), + suppressed_diabetes_dx_ccw = as.integer(is.na(diabetes_dx_ccw)), + suppressed_obesity_bmi = as.integer(is.na(obesity_bmi)), + suppressed_obesity_dx_ccw = as.integer(is.na(obesity_dx_ccw)), + suppressed_n_patients_chronic = as.integer(is.na(n_patients_chronic)), + suppressed_n_patients_ob = as.integer(is.na(n_patients_ob)), + across(c(diabetes_a1c_6_5, diabetes_dx_ccw, obesity_bmi, obesity_dx_ccw, + n_patients_chronic, n_patients_ob), + ~ replace(.x, is.na(.x), 0)) + ) %>% arrange(geography, age, time) vroom::vroom_write(combined_state, "standard/state_year.csv.gz", ",") +tmp <- combined_state %>% select(diabetes_a1c_6_5, suppressed_diabetes_a1c_6_5, + diabetes_dx_ccw, suppressed_diabetes_dx_ccw, + obesity_bmi, suppressed_obesity_bmi, + obesity_dx_ccw, suppressed_obesity_dx_ccw, + n_patients_chronic, suppressed_n_patients_chronic, + n_patients_ob, suppressed_n_patients_ob +) + # --------------------------------------------------------------------------- # 6. County-level import function (CSV files from staging_chronic) # --------------------------------------------------------------------------- @@ -325,9 +343,9 @@ if (!identical(process$raw_state, current_state)) { age = gsub("65 Years or more", "65+ Years", age), age = if_else(grepl("Total", age), "Total", age), - suppressed_flag = as.integer( - trimws(n_patients_chronic) == "10 or fewer" - ), + # suppressed_flag = as.integer( + # trimws(n_patients_chronic) == "10 or fewer" + #), ccw = as.numeric(na_if(gsub("%", "", ccw), "-")), lab = as.numeric(na_if(gsub("%", "", lab), "-")), n_patients_chronic = as.numeric(if_else( @@ -348,7 +366,7 @@ if (!identical(process$raw_state, current_state)) { time = paste0(yearset, "-01-01") ) %>% dplyr::select(age, geography, time, ccw, lab, - n_patients_chronic, suppressed_flag) %>% + n_patients_chronic) %>% #, suppressed_flag filter(!is.na(geography)) } @@ -360,18 +378,29 @@ if (!identical(process$raw_state, current_state)) { rename(diabetes_a1c_6_5 = lab, diabetes_dx_ccw = ccw) - all_obesity_county <- lapply(stage_obesity_county, chronic_import_county) %>% - bind_rows() %>% - rename(obesity_bmi = lab, - obesity_dx_ccw = ccw) %>% + all_obesity_county <- lapply(stage_obesity_county, chronic_import_county) |> + bind_rows() |> + rename(obesity_bmi = lab, + obesity_dx_ccw = ccw, + n_patients_ob_county = n_patients_chronic) |> #, suppressed_flag_ob = suppressed_flag unique() - combined_county <- all_obesity_county %>% - dplyr::select(-n_patients_chronic, -suppressed_flag) %>% - full_join(all_diabetes_county, by = c("geography", "time", "age")) %>% + combined_county <- all_obesity_county |> + full_join(all_diabetes_county, by = c("geography", "time", "age")) |> select(age, geography, time, diabetes_a1c_6_5, diabetes_dx_ccw, obesity_bmi, obesity_dx_ccw, n_patients_chronic, - suppressed_flag) %>% + n_patients_ob_county) |> + mutate( + suppressed_diabetes_a1c_6_5 = as.integer(is.na(diabetes_a1c_6_5)), + suppressed_diabetes_dx_ccw = as.integer(is.na(diabetes_dx_ccw)), + suppressed_obesity_bmi = as.integer(is.na(obesity_bmi)), + suppressed_obesity_dx_ccw = as.integer(is.na(obesity_dx_ccw)), + suppressed_n_patients_chronic = as.integer(is.na(n_patients_chronic)), + suppressed_n_patients_ob_county = as.integer(is.na(n_patients_ob_county)), + across(c(diabetes_a1c_6_5, diabetes_dx_ccw, obesity_bmi, obesity_dx_ccw, + n_patients_chronic, n_patients_ob_county), + ~ replace(.x, is.na(.x), 0)) + ) |> arrange(geography, age, time) vroom::vroom_write(combined_county, "standard/county_year.csv.gz", ",") diff --git a/data/cosmos_chronic/measure_info.json b/data/cosmos_chronic/measure_info.json index 34432df..bbe8abf 100644 --- a/data/cosmos_chronic/measure_info.json +++ b/data/cosmos_chronic/measure_info.json @@ -15,22 +15,34 @@ "id": "n_patients_chronic", "short_name": "Number of patients (chronic)", "long_name": "Number of patients in the chronic disease sample", - "short_description": "Total number of patients in the state-level chronic disease sample.", - "long_description": "Total number of patients in the state-level chronic disease sample (diabetes denominator). Data accessed via Epic Cosmos SlicerDicer. Counts fewer than 10 are suppressed and imputed as 5.", + "short_description": "Total number of patients in the chronic disease sample.", + "long_description": "Total number of patients in the chronic disease sample (diabetes denominator). Data accessed via Epic Cosmos SlicerDicer. Counts fewer than 10 are suppressed and imputed as 5.", "measure_type": "Count", "unit": "patients", "time_resolution": "Year", "sources": [{ "id": "epic_cosmos" }] }, - "n_obesity_county": { - "id": "n_obesity_county", - "short_name": "Number of patients (chronic, county)", + "n_patients_ob": { + "id": "n_patients_ob", + "short_name": "Number of patients (obesity, state)", + "long_name": "Number of patients in the state-level obesity sample", + "short_description": "Total number of patients in the state-level obesity sample.", + "long_description": "Total number of patients in the state-level obesity sample. Data accessed via Epic Cosmos SlicerDicer. Counts fewer than 10 are suppressed and imputed as 5.", + "measure_type": "Count", + "unit": "patients", + "time_resolution": "Year", + "sources": [{ "id": "epic_cosmos" }] + }, + + "n_patients_ob_county": { + "id": "n_patients_ob_county", + "short_name": "Number of patients (obesity, county)", "long_name": "Number of patients in the county-level obesity sample", "short_description": "Total number of patients in the county-level obesity sample.", - "long_description": "Total number of patients within the county-level obesity sample. Data from Epic Cosmos. County-level data may have high missingness in some states.", - "measure_type": "integer", - "unit": "patient", + "long_description": "Total number of patients in the county-level obesity sample. Data accessed via Epic Cosmos SlicerDicer. County-level data may have high missingness in some states. Counts fewer than 10 are suppressed and imputed as 5.", + "measure_type": "Count", + "unit": "patients", "time_resolution": "Year", "sources": [{ "id": "epic_cosmos" }] }, @@ -71,18 +83,6 @@ "sources": [{ "id": "epic_cosmos" }] }, - "suppressed_flag": { - "id": "suppressed_flag", - "short_name": "Suppressed flag", - "long_name": "Suppression flag for imputed counts", - "short_description": "Indicates whether the value was suppressed and imputed.", - "long_description": "Flag indicating whether the original count was suppressed due to privacy protections (counts fewer than 10) and imputed as 5. A value of 1 indicates the count was suppressed and imputed; 0 indicates the reported value is exact.", - "measure_type": "Binary", - "unit": "0/1", - "time_resolution": "Year", - "sources": [{ "id": "epic_cosmos" }] - }, - "diabetes_dx_ccw": { "id": "diabetes_dx_ccw", "short_name": "Diabetes CCW definition", @@ -95,6 +95,90 @@ "sources": [{ "id": "epic_cosmos" }] }, + "suppressed_diabetes_a1c_6_5": { + "id": "suppressed_diabetes_a1c_6_5", + "short_name": "Suppressed flag (diabetes A1c)", + "long_name": "Suppression flag for diabetes A1c >= 6.5% percent", + "short_description": "Indicates whether the diabetes_a1c_6_5 value was suppressed.", + "long_description": "Due to privacy protections, percents with fewer than 5 events are suppressed and coded as 0.", + "measure_type": "Binary", + "unit": "0/1", + "time_resolution": "Year", + "sources": [{ "id": "epic_cosmos" }] + }, + + "suppressed_diabetes_dx_ccw": { + "id": "suppressed_diabetes_dx_ccw", + "short_name": "Suppressed flag (diabetes CCW)", + "long_name": "Suppression flag for diabetes CCW definition percent", + "short_description": "Indicates whether the diabetes_dx_ccw value was suppressed.", + "long_description": "Due to privacy protections, percents with fewer than 5 events are suppressed and coded as 0.", + "measure_type": "Binary", + "unit": "0/1", + "time_resolution": "Year", + "sources": [{ "id": "epic_cosmos" }] + }, + + "suppressed_obesity_bmi": { + "id": "suppressed_obesity_bmi", + "short_name": "Suppressed flag (BMI)", + "long_name": "Suppression flag for BMI >= 30 percent", + "short_description": "Indicates whether the obesity_bmi value was suppressed.", + "long_description": "Due to privacy protections, percents with fewer than 5 events are suppressed and coded as 0.", + "measure_type": "Binary", + "unit": "0/1", + "time_resolution": "Year", + "sources": [{ "id": "epic_cosmos" }] + }, + + "suppressed_obesity_dx_ccw": { + "id": "suppressed_obesity_dx_ccw", + "short_name": "Suppressed flag (obesity CCW)", + "long_name": "Suppression flag for obesity CCW definition percent", + "short_description": "Indicates whether the obesity_dx_ccw value was suppressed.", + "long_description": "Due to privacy protections, percents with fewer than 5 events are suppressed and coded as 0.", + "measure_type": "Binary", + "unit": "0/1", + "time_resolution": "Year", + "sources": [{ "id": "epic_cosmos" }] + }, + + "suppressed_n_patients_chronic": { + "id": "suppressed_n_patients_chronic", + "short_name": "Suppressed flag (chronic patients)", + "long_name": "Suppression flag for number of patients in the chronic disease sample", + "short_description": "Indicates whether the n_patients_chronic value was suppressed.", + "long_description": "Due to privacy protections, percents with fewer than 5 events are suppressed and coded as 0.", + "measure_type": "Binary", + "unit": "0/1", + "time_resolution": "Year", + "sources": [{ "id": "epic_cosmos" }] + }, + + "suppressed_n_patients_ob": { + "id": "suppressed_n_patients_ob", + "short_name": "Suppressed flag (obesity patients, state)", + "long_name": "Suppression flag for number of patients in the state-level obesity sample", + "short_description": "Indicates whether the n_patients_ob value was suppressed.", + "long_description": "Due to privacy protections, percents with fewer than 5 events are suppressed and coded as 0.", + "measure_type": "Binary", + "unit": "0/1", + "time_resolution": "Year", + "sources": [{ "id": "epic_cosmos" }] + }, + + "suppressed_n_patients_ob_county": { + "id": "suppressed_n_patients_ob_county", + "short_name": "Suppressed flag (obesity patients, county)", + "long_name": "Suppression flag for number of patients in the county-level obesity sample", + "short_description": "Indicates whether the n_patients_ob_county value was suppressed.", + "long_description": "Due to privacy protections, percents with fewer than 5 events are suppressed and coded as 0.", + "measure_type": "Binary", + "unit": "0/1", + "time_resolution": "Year", + "sources": [{ "id": "epic_cosmos" }] + }, + "_sources": { "epic_cosmos": { "name": "Epic Cosmos", diff --git a/data/cosmos_chronic/raw/diabetes_decrypted.csv b/data/cosmos_chronic/raw/diabetes_decrypted.csv new file mode 100644 index 0000000..60749d7 --- /dev/null +++ b/data/cosmos_chronic/raw/diabetes_decrypted.csv @@ -0,0 +1,453 @@ +Session Title,DM in ICD10 by State Age 2023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Session ID,2819613,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Data Model,Patients,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Population Base,All Patients,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Population Criteria Filters: These criteria are a summary and do not fully reflect the content of the exported session.,Country of Care: United States of America,Has Any Encounters?,Base Patient,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Session Date Range,1/1/2016 - 4/14/2026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Export User,Daniel Weinberger,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Date of Export,5/8/2026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Measures,A1c 6.5+ (%),,,,,,,,,,,Diabetes CCW definition (%),,,,,,,,,,,Number of Patients,,,,,,,,,, +,,Jan 1 – Dec 31 2016,Jan 1 – Dec 31 2017,Jan 1 – Dec 31 2018,Jan 1 – Dec 31 2019,Jan 1 – Dec 31 2020,Jan 1 – Dec 31 2021,Jan 1 – Dec 31 2022,Jan 1 – Dec 31 2023,Jan 1 – Dec 31 2024,Jan 1 – Dec 31 2025,Jan 1 – Apr 14 2026,Jan 1 – Dec 31 2016,Jan 1 – Dec 31 2017,Jan 1 – Dec 31 2018,Jan 1 – Dec 31 2019,Jan 1 – Dec 31 2020,Jan 1 – Dec 31 2021,Jan 1 – Dec 31 2022,Jan 1 – Dec 31 2023,Jan 1 – Dec 31 2024,Jan 1 – Dec 31 2025,Jan 1 – Apr 14 2026,Jan 1 – Dec 31 2016,Jan 1 – Dec 31 2017,Jan 1 – Dec 31 2018,Jan 1 – Dec 31 2019,Jan 1 – Dec 31 2020,Jan 1 – Dec 31 2021,Jan 1 – Dec 31 2022,Jan 1 – Dec 31 2023,Jan 1 – Dec 31 2024,Jan 1 – Dec 31 2025,Jan 1 – Apr 14 2026 +Age at Encounter in Years,State of Residence,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Less than 18 Years,Puerto Rico,,,,,,,,,0.09%,0.14%,0.19%,,,,,,,,0.59%,0.48%,0.52%,0.66%,268,333,408,369,310,416,478,5218,13465,19214,9875 +,Ohio,0.28%,0.27%,0.27%,0.29%,0.35%,0.36%,0.35%,0.32%,0.30%,0.31%,0.40%,0.51%,0.50%,0.50%,0.49%,0.50%,0.49%,0.48%,0.47%,0.46%,0.47%,0.59%,887225,949395,978105,1008547,976223,1096774,1174516,1382861,1490726,1455259,906179 +,Kentucky,0.22%,0.25%,0.32%,0.36%,0.49%,0.58%,0.59%,0.56%,0.54%,0.55%,0.77%,0.52%,0.54%,0.53%,0.53%,0.66%,0.74%,0.74%,0.73%,0.71%,0.72%,0.95%,260871,294406,312367,326531,314848,399236,442613,466695,489563,481281,293936 +,West Virginia,0.53%,0.51%,0.83%,0.82%,0.88%,0.79%,0.53%,0.38%,0.33%,0.34%,0.49%,1.55%,1.45%,1.30%,1.19%,1.19%,1.05%,0.73%,0.57%,0.54%,0.56%,0.75%,64666,73756,87417,99638,99808,113293,126133,158546,183913,192521,110267 +,Pennsylvania,0.26%,0.25%,0.24%,0.24%,0.25%,0.27%,0.28%,0.27%,0.25%,0.25%,0.33%,0.41%,0.40%,0.43%,0.44%,0.45%,0.46%,0.46%,0.46%,0.44%,0.45%,0.58%,947571,1104081,1196139,1275182,1262285,1462751,1499068,1540878,1573274,1515853,842116 +,Michigan,0.47%,0.45%,0.45%,0.48%,0.47%,0.43%,0.39%,0.37%,0.40%,0.42%,0.61%,0.68%,0.62%,0.62%,0.62%,0.58%,0.55%,0.55%,0.54%,0.58%,0.61%,0.82%,456265,517680,545396,557559,645376,725874,739494,761641,870617,898688,526401 +,Mississippi,0.24%,0.25%,0.24%,0.23%,0.27%,0.25%,0.23%,0.29%,0.33%,0.39%,0.50%,0.46%,0.48%,0.48%,0.43%,0.46%,0.42%,0.41%,0.51%,0.59%,0.61%,0.74%,96735,104086,118566,153325,146265,180347,197030,206122,217437,215145,117367 +,Alabama,0.70%,0.68%,0.73%,0.64%,0.68%,0.45%,0.37%,1.03%,0.99%,1.03%,1.51%,0.92%,0.91%,1.00%,0.94%,0.99%,0.75%,0.65%,1.44%,1.29%,1.28%,1.80%,21506,24093,24051,29163,29255,49298,58731,189660,231425,228307,125736 +,North Carolina,0.41%,0.41%,0.39%,0.40%,0.44%,0.43%,0.44%,0.43%,0.47%,0.49%,0.70%,0.61%,0.60%,0.59%,0.60%,0.64%,0.61%,0.61%,0.61%,0.64%,0.65%,0.89%,586606,630962,708133,795588,768041,1045889,1154561,1219325,1346089,1337634,774149 +,Arkansas,0.62%,0.72%,0.81%,0.74%,0.79%,0.73%,0.74%,0.75%,0.75%,0.80%,1.27%,0.78%,0.84%,0.93%,0.87%,0.93%,0.91%,0.91%,0.92%,0.93%,0.96%,1.46%,85027,114577,147906,168808,169873,201507,210602,216172,223355,220848,119238 +,Louisiana,0.34%,0.31%,0.37%,0.44%,0.49%,0.46%,0.43%,0.39%,0.38%,0.38%,0.51%,0.46%,0.45%,0.49%,0.55%,0.59%,0.56%,0.53%,0.51%,0.52%,0.52%,0.68%,227938,261783,324153,364318,354967,409596,446200,478470,488737,490670,290592 +,North Dakota,0.33%,0.32%,0.33%,0.32%,0.35%,0.34%,0.35%,0.37%,0.36%,0.35%,0.50%,0.45%,0.45%,0.46%,0.46%,0.48%,0.47%,0.48%,0.50%,0.49%,0.50%,0.68%,99935,104091,106715,110929,109242,115914,120280,124313,133283,133757,82563 +,Indiana,0.19%,0.19%,0.21%,0.22%,0.26%,0.25%,0.25%,0.25%,0.24%,0.27%,0.38%,0.37%,0.37%,0.37%,0.37%,0.41%,0.40%,0.40%,0.42%,0.44%,0.47%,0.58%,313408,355239,384282,409421,394600,464811,494029,504846,518266,498889,286328 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,11,13,10 or fewer,10 or fewer,15,24,18,10 or fewer +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,23,17,13,18,10 or fewer +,Rhode Island,0.49%,0.47%,0.48%,0.54%,0.64%,0.64%,0.59%,0.51%,0.44%,0.44%,0.63%,0.68%,0.65%,0.65%,0.69%,0.78%,0.76%,0.71%,0.64%,0.57%,0.58%,0.80%,75416,82740,84603,85728,73700,80231,92294,105604,123759,118795,66396 +,Iowa,0.54%,0.54%,0.54%,0.54%,0.58%,0.57%,0.57%,0.54%,0.50%,0.51%,0.68%,0.64%,0.64%,0.63%,0.63%,0.66%,0.65%,0.65%,0.63%,0.58%,0.59%,0.79%,264214,279607,288748,295489,289909,314031,323930,345392,370464,384592,238960 +,Delaware,0.55%,0.54%,0.53%,0.54%,0.61%,0.61%,0.59%,0.55%,0.51%,0.52%,0.75%,0.60%,0.61%,0.63%,0.63%,0.68%,0.68%,0.67%,0.66%,0.64%,0.66%,0.93%,90169,97886,102357,107234,104101,114101,117877,123032,125746,124976,76061 +,South Carolina,0.65%,0.55%,0.54%,0.51%,0.55%,0.58%,0.55%,0.53%,0.52%,0.51%,0.68%,0.76%,0.67%,0.67%,0.64%,0.71%,0.73%,0.70%,0.69%,0.69%,0.70%,0.89%,235511,297917,319619,353460,343545,462324,526615,583728,603907,599815,370806 +,Massachusetts,0.18%,0.22%,0.26%,0.32%,0.35%,0.34%,0.33%,0.30%,0.47%,0.50%,0.72%,0.37%,0.42%,0.44%,0.46%,0.51%,0.49%,0.49%,0.46%,0.66%,0.67%,0.94%,212679,256407,302276,312243,292131,327888,377559,417116,546929,577998,347980 +,Maryland,0.68%,0.62%,0.60%,0.51%,0.57%,0.52%,0.53%,0.50%,0.47%,0.45%,0.72%,0.94%,0.89%,0.80%,0.73%,0.79%,0.72%,0.75%,0.76%,0.75%,0.79%,1.08%,72426,94562,115459,144086,140700,177167,183601,189794,194834,191796,94482 +,Tennessee,0.40%,0.59%,0.56%,0.52%,0.54%,0.50%,0.48%,0.46%,0.39%,0.54%,0.85%,0.71%,0.89%,0.84%,0.77%,0.95%,0.83%,0.79%,0.76%,0.81%,0.89%,1.30%,53291,82737,98830,105568,101490,128737,145170,156516,196271,230375,126300 +,Wisconsin,0.39%,0.41%,0.41%,0.40%,0.42%,0.42%,0.40%,0.40%,0.39%,0.42%,0.61%,0.52%,0.52%,0.52%,0.51%,0.53%,0.53%,0.52%,0.51%,0.50%,0.51%,0.71%,597528,613421,633264,651077,633873,674039,690728,700222,708047,690000,420827 +,Missouri,0.27%,0.24%,0.24%,0.22%,0.22%,0.21%,0.16%,0.12%,0.13%,0.13%,0.11%,0.48%,0.48%,0.48%,0.45%,0.43%,0.41%,0.33%,0.31%,0.33%,0.35%,0.36%,36559,52924,60973,70777,67808,78320,99674,126094,144940,142980,76571 +,Illinois,0.31%,0.32%,0.32%,0.38%,0.44%,0.47%,0.46%,0.49%,0.47%,0.49%,0.74%,0.42%,0.43%,0.46%,0.54%,0.60%,0.64%,0.64%,0.63%,0.62%,0.64%,0.93%,765146,789800,844789,903041,859195,950885,1002037,1033878,1064616,1025136,551346 +,Idaho,0.63%,0.63%,0.62%,0.62%,0.65%,0.63%,0.55%,0.51%,0.49%,0.51%,0.75%,0.73%,0.72%,0.73%,0.74%,0.77%,0.73%,0.62%,0.60%,0.61%,0.64%,0.90%,91810,105554,111069,118007,119784,130692,161790,167411,176024,176555,103856 +,Connecticut,0.55%,0.56%,0.56%,0.56%,0.56%,0.51%,0.53%,0.53%,0.52%,0.53%,0.81%,0.73%,0.72%,0.72%,0.72%,0.73%,0.65%,0.68%,0.72%,0.73%,0.71%,1.00%,280762,297237,313531,325294,326563,394163,379987,371709,381604,380676,208508 +,Georgia,0.39%,0.43%,0.39%,0.37%,0.45%,0.49%,0.45%,0.41%,0.40%,0.42%,0.58%,0.72%,0.78%,0.71%,0.69%,0.81%,0.84%,0.78%,0.76%,0.76%,0.83%,1.26%,472215,526026,612066,667900,595172,695444,785292,836373,861344,831868,420435 +,Minnesota,0.27%,0.29%,0.29%,0.31%,0.34%,0.35%,0.35%,0.35%,0.35%,0.36%,0.50%,0.39%,0.42%,0.43%,0.44%,0.48%,0.49%,0.49%,0.48%,0.49%,0.52%,0.68%,383224,395516,404614,417028,390328,433164,433376,442388,449627,434310,241601 +,Florida,0.79%,0.77%,0.74%,0.74%,0.79%,0.71%,0.54%,0.48%,0.48%,0.52%,0.81%,1.08%,1.07%,1.04%,1.02%,1.08%,0.97%,0.78%,0.70%,0.70%,0.75%,1.11%,489793,519510,549687,564084,545018,736217,1045123,1259852,1328323,1350699,716910 +,Virginia,0.40%,0.38%,0.39%,0.38%,0.46%,0.46%,0.51%,0.49%,0.47%,0.50%,0.83%,0.69%,0.64%,0.65%,0.61%,0.73%,0.72%,0.75%,0.73%,0.70%,0.72%,1.16%,350707,401935,408187,430334,382146,448652,525216,572924,592406,566968,278603 +,Kansas,0.38%,0.41%,0.40%,0.38%,0.45%,0.42%,0.36%,0.27%,0.28%,0.25%,0.25%,0.79%,0.70%,0.63%,0.58%,0.62%,0.57%,0.52%,0.46%,0.48%,0.47%,0.50%,77718,81839,83925,84638,78929,87701,91759,108119,116497,123607,75179 +,Maine,0.82%,0.68%,0.63%,0.57%,0.57%,0.54%,0.50%,0.52%,0.50%,0.52%,0.72%,0.91%,0.77%,0.72%,0.67%,0.66%,0.61%,0.58%,0.58%,0.56%,0.59%,0.81%,64690,80276,86466,91910,88890,102367,106633,105897,108722,106637,64997 +,Texas,0.44%,0.41%,0.43%,0.43%,0.51%,0.47%,0.47%,0.45%,0.43%,0.44%,0.65%,0.61%,0.57%,0.59%,0.58%,0.65%,0.62%,0.61%,0.59%,0.58%,0.59%,0.84%,1281634,1447977,1770043,1897156,1837306,2237549,2371345,2462179,2620460,2658095,1487191 +,Oklahoma,0.14%,0.11%,0.12%,0.13%,0.16%,0.16%,0.15%,0.23%,0.58%,0.63%,0.96%,0.34%,0.33%,0.35%,0.37%,0.41%,0.42%,0.42%,0.82%,0.83%,0.84%,1.21%,105236,142073,171075,181189,171050,186164,210329,266888,301011,305632,170637 +,New Jersey,0.75%,0.71%,0.64%,0.59%,0.61%,0.55%,0.58%,0.57%,0.51%,0.52%,0.81%,0.90%,0.84%,0.75%,0.71%,0.74%,0.77%,0.85%,0.80%,0.76%,0.79%,1.17%,143781,160437,189933,211482,210539,275443,314559,358954,421754,425483,218937 +,Nebraska,0.29%,0.27%,0.26%,0.23%,0.25%,0.23%,0.23%,0.22%,0.20%,0.22%,0.27%,0.49%,0.51%,0.46%,0.46%,0.50%,0.47%,0.44%,0.46%,0.42%,0.45%,0.55%,34072,39145,55904,64075,64167,73599,77097,78059,85654,85963,45304 +,New York,0.36%,0.35%,0.38%,0.34%,0.35%,0.35%,0.36%,0.34%,0.36%,0.37%,0.55%,0.50%,0.47%,0.51%,0.49%,0.53%,0.51%,0.55%,0.55%,0.57%,0.57%,0.77%,577113,662888,744673,864980,888998,1078103,1079968,1095137,1167645,1152187,636235 +,Montana,0.39%,0.41%,0.39%,0.40%,0.43%,0.43%,0.41%,0.37%,0.32%,0.35%,0.40%,0.59%,0.53%,0.51%,0.54%,0.58%,0.56%,0.53%,0.52%,0.53%,0.57%,0.66%,37602,40339,41717,42426,41054,44721,46234,52990,64716,64339,33843 +,South Dakota,0.41%,0.43%,0.42%,0.40%,0.43%,0.40%,0.40%,0.43%,0.42%,0.42%,0.56%,0.46%,0.52%,0.51%,0.51%,0.54%,0.53%,0.53%,0.55%,0.56%,0.57%,0.75%,70160,73758,80620,82246,81483,88254,89867,91071,92521,89611,54591 +,New Mexico,0.60%,0.57%,0.52%,0.49%,0.54%,0.51%,0.48%,0.46%,0.43%,0.39%,0.53%,0.73%,0.69%,0.67%,0.68%,0.72%,0.68%,0.65%,0.60%,0.55%,0.51%,0.66%,92747,97792,103154,108209,96012,101419,107111,107889,110595,112639,61566 +,New Hampshire,0.78%,0.72%,0.70%,0.69%,0.69%,0.69%,0.60%,0.61%,0.64%,0.64%,0.88%,0.90%,0.81%,0.79%,0.78%,0.79%,0.79%,0.70%,0.69%,0.75%,0.76%,1.02%,69867,78091,78929,81884,79441,83501,85129,84553,90915,93968,59344 +,Arizona,0.18%,0.24%,0.36%,0.42%,0.54%,0.44%,0.27%,0.25%,0.23%,0.23%,0.34%,0.36%,0.42%,0.56%,0.61%,0.72%,0.62%,0.39%,0.37%,0.35%,0.38%,0.50%,55740,61433,63839,65915,60327,87037,168381,198067,219606,216586,111586 +,Utah,0.09%,0.10%,0.11%,0.09%,0.09%,0.10%,0.08%,0.08%,0.08%,0.64%,1.25%,0.49%,0.45%,0.33%,0.38%,0.42%,0.45%,0.45%,0.45%,0.53%,1.30%,1.65%,92009,98538,101556,107011,104654,114683,121426,126735,134766,219801,157355 +,Oregon,0.62%,0.60%,0.58%,0.55%,0.57%,0.53%,0.55%,0.54%,0.52%,0.54%,0.75%,0.75%,0.72%,0.70%,0.67%,0.72%,0.67%,0.69%,0.69%,0.67%,0.69%,0.93%,265973,283885,306690,324862,307056,359120,360519,361749,387412,387433,231762 +,Wyoming,0.33%,0.36%,0.35%,0.37%,0.49%,0.51%,0.47%,0.45%,0.49%,0.56%,0.81%,0.58%,0.67%,0.62%,0.65%,0.78%,0.70%,0.66%,0.69%,0.76%,0.93%,1.15%,17972,19058,20285,22136,21136,23689,25049,28352,29681,31652,17600 +,California,0.40%,0.35%,0.36%,0.37%,0.37%,0.36%,0.34%,0.31%,0.27%,0.27%,0.34%,0.75%,0.69%,0.68%,0.60%,0.69%,0.64%,0.60%,0.57%,0.53%,0.52%,0.67%,513915,614453,657782,796412,940500,1195777,1360131,1471064,1631677,1628462,904713 +,Vermont,1.09%,1.07%,1.08%,0.92%,0.78%,0.70%,0.70%,0.67%,0.71%,0.71%,0.98%,1.23%,1.20%,1.20%,1.03%,0.90%,0.79%,0.80%,0.78%,0.81%,0.84%,1.18%,25979,26628,28104,32983,39798,46415,46680,47510,49045,47693,29200 +,Nevada,0.27%,0.38%,0.41%,0.39%,0.39%,0.38%,0.36%,0.35%,0.36%,0.41%,0.70%,0.51%,0.70%,0.57%,0.56%,0.59%,0.59%,0.55%,0.54%,0.54%,0.63%,0.98%,45748,56638,80884,93113,98771,109504,121888,125791,133152,140415,71769 +,Colorado,0.32%,0.33%,0.34%,0.35%,0.39%,0.37%,0.37%,0.36%,0.37%,0.37%,0.48%,0.60%,0.60%,0.60%,0.57%,0.60%,0.56%,0.54%,0.53%,0.53%,0.55%,0.70%,343531,375328,393177,413286,416077,501666,521649,551401,572241,542919,298597 +,Washington,0.36%,0.34%,0.30%,0.29%,0.35%,0.33%,0.28%,0.26%,0.24%,0.25%,0.37%,0.50%,0.47%,0.44%,0.43%,0.47%,0.46%,0.41%,0.41%,0.40%,0.42%,0.57%,140130,155081,168185,170905,155382,177167,200059,232311,242265,230037,110839 +,Alaska,,,,,,,,,,,,,,,,,,,,,,,1555,1824,2179,2111,2025,2225,1997,1885,1891,1711,808 +,Hawaii,0.38%,0.41%,0.43%,0.42%,0.46%,0.37%,0.41%,0.43%,0.44%,0.46%,0.75%,0.47%,0.47%,0.47%,0.46%,0.54%,0.42%,0.46%,0.48%,0.51%,0.55%,0.86%,68357,70731,71473,73584,64725,98575,95548,93638,99364,93204,43151 +,District of Columbia,0.69%,0.67%,0.62%,0.67%,0.88%,,,,,,,0.93%,1.09%,0.96%,0.97%,1.25%,0.61%,0.66%,0.47%,,0.48%,,2042,1928,1771,1644,1359,2147,2583,2575,2795,2486,826 +,"Total: Total includes all data under the Less than 18 Years bucket, including data from rows not currently displayed.",0.40%,0.39%,0.40%,0.40%,0.44%,0.43%,0.42%,0.41%,0.40%,0.42%,0.61%,0.60%,0.59%,0.59%,0.58%,0.63%,0.61%,0.60%,0.60%,0.60%,0.62%,0.85%,12774949,14233531,15627888,16811861,16527267,19650892,21329681,22916249,24518698,24454849,13808069 +≥ 18 and < 25 Years,Puerto Rico,,,,,,,,0.63%,0.53%,0.84%,1.35%,,,,,,,,2.69%,1.97%,2.25%,3.08%,106,130,188,219,197,292,281,1899,5292,7158,3249 +,Ohio,0.90%,0.95%,1.00%,1.03%,1.10%,1.09%,1.14%,1.16%,1.17%,1.20%,1.54%,1.62%,1.72%,1.84%,1.90%,1.91%,1.83%,1.88%,1.92%,1.91%,1.91%,2.39%,421002,440622,455297,472865,486726,558661,562562,610443,645278,643818,364253 +,Kentucky,0.83%,0.93%,1.08%,1.16%,1.31%,1.38%,1.55%,1.62%,1.58%,1.59%,2.06%,1.70%,1.87%,1.95%,1.94%,2.07%,2.07%,2.28%,2.39%,2.39%,2.42%,3.04%,96306,112231,120123,126930,134879,169927,178804,183807,189748,188537,107700 +,West Virginia,0.90%,0.98%,1.10%,1.54%,1.73%,1.69%,1.53%,1.35%,1.18%,1.19%,1.58%,2.46%,2.50%,2.56%,2.66%,2.70%,2.46%,2.34%,2.15%,2.03%,2.13%,2.68%,27976,31986,36850,41034,43835,49958,50926,59774,66070,69621,38284 +,Pennsylvania,0.81%,0.82%,0.87%,0.90%,0.91%,0.88%,0.97%,0.98%,0.97%,0.98%,1.31%,1.36%,1.46%,1.54%,1.61%,1.64%,1.55%,1.64%,1.66%,1.64%,1.65%,2.14%,313519,378951,427998,461773,482313,580715,557891,573784,596663,585718,298111 +,Michigan,0.99%,0.99%,1.10%,1.15%,1.13%,1.10%,1.16%,1.17%,1.17%,1.26%,1.69%,1.74%,1.65%,1.69%,1.75%,1.68%,1.66%,1.75%,1.76%,1.81%,1.98%,2.52%,204134,228338,241742,245889,303325,337890,327129,335649,376453,390610,216493 +,Mississippi,1.01%,0.98%,0.98%,1.04%,1.10%,1.08%,1.11%,1.16%,1.29%,1.38%,1.89%,1.84%,1.81%,1.67%,1.74%,1.79%,1.76%,1.87%,1.97%,2.15%,2.29%,2.96%,38049,42052,53077,66634,70748,86609,92326,96007,100112,100916,50160 +,Alabama,1.65%,1.83%,1.82%,1.80%,1.64%,1.24%,1.36%,1.98%,2.55%,2.91%,3.99%,2.25%,2.50%,2.50%,2.61%,2.68%,2.50%,2.73%,3.51%,3.91%,4.12%,5.43%,9645,10569,11481,13819,15438,25430,28232,35593,40225,41221,19250 +,North Carolina,0.99%,1.06%,1.09%,1.13%,1.19%,1.12%,1.26%,1.31%,1.40%,1.48%,2.03%,1.68%,1.74%,1.77%,1.81%,1.89%,1.78%,1.92%,1.99%,2.04%,2.13%,2.80%,243748,264419,288823,323720,341876,437054,462220,484633,538545,540399,292827 +,Arkansas,1.21%,1.39%,1.48%,1.54%,1.53%,1.58%,1.60%,1.77%,1.81%,1.92%,2.59%,2.48%,2.37%,2.53%,2.54%,2.53%,2.54%,2.59%,2.81%,2.74%,2.87%,3.63%,32725,38566,42624,49057,56258,65783,61694,60198,61369,60832,31720 +,Louisiana,0.92%,0.97%,1.01%,1.07%,1.11%,1.00%,1.10%,1.11%,1.11%,1.15%,1.44%,1.73%,1.77%,1.76%,1.78%,1.79%,1.63%,1.75%,1.79%,1.85%,1.93%,2.42%,85471,95763,110071,120113,129909,157502,164319,180864,191986,194836,106589 +,North Dakota,0.94%,0.92%,1.00%,0.98%,1.04%,0.99%,1.03%,1.08%,1.10%,1.10%,1.39%,1.40%,1.39%,1.49%,1.47%,1.48%,1.43%,1.47%,1.57%,1.56%,1.60%,2.00%,37896,39248,39745,41017,43161,45946,45609,44976,48258,49615,29524 +,Indiana,0.91%,1.00%,1.07%,1.20%,1.29%,1.20%,1.21%,1.20%,1.16%,1.23%,1.58%,1.57%,1.69%,1.75%,1.81%,1.88%,1.85%,1.92%,1.95%,1.94%,1.96%,2.40%,118882,132561,142541,151831,156559,181662,188183,192103,196917,194253,105868 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,11,13,15,13,10 or fewer +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,12,15,10 or fewer +,Rhode Island,0.94%,1.05%,1.13%,1.23%,1.24%,1.22%,1.28%,1.30%,1.22%,1.26%,1.89%,1.61%,1.74%,1.75%,1.89%,1.94%,1.83%,1.91%,1.87%,1.78%,1.86%,2.65%,30360,34686,35708,36468,34415,37602,41515,44142,51159,47318,23777 +,Iowa,1.15%,1.22%,1.29%,1.37%,1.33%,1.29%,1.35%,1.32%,1.30%,1.38%,1.83%,1.55%,1.67%,1.75%,1.81%,1.77%,1.72%,1.78%,1.77%,1.75%,1.84%,2.43%,97493,101264,104541,108247,113355,124555,123134,128216,133890,140547,80261 +,Delaware,1.90%,1.75%,1.83%,1.69%,1.70%,1.66%,1.70%,1.62%,1.61%,1.71%,2.44%,2.22%,2.35%,2.49%,2.45%,2.36%,2.22%,2.32%,2.33%,2.33%,2.52%,3.22%,10622,14693,17237,19728,21749,25907,27370,29984,31425,31938,16852 +,South Carolina,1.49%,1.39%,1.47%,1.47%,1.47%,1.42%,1.43%,1.50%,1.55%,1.54%,1.89%,2.09%,2.08%,2.19%,2.16%,2.18%,2.14%,2.19%,2.28%,2.34%,2.33%,2.80%,71954,95712,106726,122283,132757,174224,200091,223519,238866,239660,141536 +,Massachusetts,0.54%,0.64%,0.71%,0.86%,0.88%,0.83%,0.94%,0.94%,1.17%,1.31%,1.91%,1.10%,1.25%,1.29%,1.39%,1.43%,1.34%,1.48%,1.48%,1.79%,1.93%,2.65%,102884,122410,147154,155538,159138,186984,195063,215317,244255,249973,138366 +,Maryland,1.04%,0.96%,1.05%,1.11%,0.99%,0.92%,1.15%,1.16%,1.18%,1.20%,1.75%,1.71%,1.79%,1.92%,1.96%,1.70%,1.56%,1.92%,2.01%,2.07%,2.08%,2.82%,44251,56572,66163,78954,97586,120245,106405,109691,113761,113372,54646 +,Tennessee,0.98%,1.06%,1.12%,1.20%,1.20%,1.14%,1.31%,1.36%,1.31%,1.34%,1.76%,1.97%,2.06%,2.18%,2.25%,2.29%,2.20%,2.38%,2.43%,2.36%,2.45%,3.22%,31579,41757,48768,52284,55891,67101,70138,73045,81524,93399,45831 +,Wisconsin,1.01%,1.07%,1.15%,1.18%,1.19%,1.15%,1.25%,1.28%,1.29%,1.35%,1.73%,1.44%,1.48%,1.53%,1.56%,1.56%,1.53%,1.66%,1.67%,1.68%,1.73%,2.19%,198940,203578,209966,217928,231748,266202,255668,257408,259684,251045,147841 +,Missouri,1.26%,1.27%,1.31%,1.18%,1.19%,1.12%,1.12%,1.09%,1.15%,1.18%,1.55%,2.04%,2.21%,2.20%,2.06%,2.00%,1.94%,1.96%,1.86%,1.81%,1.90%,2.47%,25498,33035,38051,40642,43029,49891,52892,65039,70799,71839,37522 +,Illinois,0.93%,0.99%,1.05%,1.07%,1.13%,1.18%,1.31%,1.40%,1.42%,1.48%,1.95%,1.20%,1.25%,1.39%,1.61%,1.74%,1.78%,1.96%,1.98%,1.98%,2.05%,2.66%,248235,259022,280227,305248,321939,374554,361311,379034,391956,385744,206275 +,Idaho,1.26%,1.39%,1.52%,1.59%,1.51%,1.46%,1.46%,1.47%,1.42%,1.41%,2.06%,1.76%,2.02%,2.10%,2.13%,2.00%,1.96%,1.95%,2.00%,1.96%,1.97%,2.78%,27596,32315,34586,38062,44205,49752,57350,59977,64865,67611,36611 +,Connecticut,0.82%,0.97%,1.06%,1.13%,1.16%,1.05%,1.15%,1.19%,1.20%,1.19%,1.76%,1.68%,1.86%,1.93%,1.94%,1.90%,1.72%,1.87%,1.91%,1.95%,1.94%,2.66%,98899,113049,124609,132875,146613,180160,166611,166620,170884,176225,93555 +,Georgia,0.86%,0.89%,0.88%,1.01%,1.08%,1.09%,1.14%,1.12%,1.18%,1.27%,1.77%,1.81%,1.84%,1.85%,2.01%,2.14%,2.11%,2.12%,2.11%,2.19%,2.33%,3.22%,108518,133919,172585,195249,202301,238590,254597,283599,301350,303819,144184 +,Minnesota,0.97%,1.00%,1.03%,1.11%,1.11%,1.07%,1.13%,1.18%,1.19%,1.26%,1.60%,1.40%,1.44%,1.46%,1.53%,1.55%,1.50%,1.58%,1.63%,1.65%,1.77%,2.30%,144404,148051,151565,155839,161596,183619,172949,174870,176072,171583,90680 +,Florida,1.30%,1.32%,1.36%,1.48%,1.47%,1.23%,1.02%,1.06%,1.12%,1.29%,1.87%,2.45%,2.53%,2.55%,2.64%,2.61%,2.24%,2.04%,2.02%,2.05%,2.21%,2.98%,138752,155470,166898,172847,182498,255648,369650,464311,503159,526269,261419 +,Virginia,0.96%,0.98%,1.08%,1.09%,1.11%,1.09%,1.23%,1.25%,1.26%,1.33%,1.86%,1.66%,1.62%,1.78%,1.82%,1.88%,1.86%,2.04%,2.04%,2.00%,2.05%,2.82%,156976,179336,184633,196526,206229,243484,245675,270245,279269,276780,137116 +,Kansas,1.41%,1.56%,1.53%,1.36%,1.28%,1.24%,1.30%,1.08%,1.08%,1.15%,1.42%,2.80%,2.76%,2.58%,2.41%,2.17%,2.09%,2.10%,1.96%,1.95%,2.01%,2.54%,30280,32949,35020,37012,39444,44955,44387,56057,60848,64276,37212 +,Maine,1.57%,1.33%,1.45%,1.49%,1.57%,1.45%,1.46%,1.51%,1.53%,1.50%,1.92%,1.76%,1.66%,1.86%,1.98%,2.06%,1.88%,1.91%,1.95%,1.98%,2.00%,2.56%,22901,29709,32494,34863,35341,41716,41904,40969,42378,42536,24599 +,Texas,1.10%,1.10%,1.16%,1.19%,1.23%,1.09%,1.26%,1.26%,1.25%,1.31%,1.78%,1.92%,1.92%,1.98%,2.00%,2.09%,1.91%,2.16%,2.16%,2.14%,2.20%,2.86%,269821,335768,393055,443333,483309,671947,622171,654855,703619,735733,361388 +,Oklahoma,0.63%,0.52%,0.55%,0.62%,0.65%,0.62%,0.62%,0.68%,1.23%,1.59%,2.30%,1.29%,1.44%,1.59%,1.74%,1.72%,1.71%,1.66%,2.23%,2.41%,2.53%,3.29%,36428,51094,66029,70155,73891,79963,84385,95550,104451,107561,57062 +,New Jersey,1.17%,1.25%,1.17%,1.12%,1.11%,0.96%,1.07%,1.16%,1.20%,1.24%,1.82%,1.84%,1.85%,1.74%,1.71%,1.73%,1.53%,1.80%,1.91%,1.97%,2.05%,2.83%,41725,53667,71795,89509,102403,140373,149279,170629,192318,198685,96735 +,Nebraska,1.59%,1.42%,1.32%,1.35%,1.41%,1.35%,1.33%,1.33%,1.27%,1.28%,1.58%,2.17%,1.96%,1.86%,1.90%,1.99%,1.92%,1.92%,1.94%,1.88%,1.94%,2.41%,21738,27641,36751,40743,43384,49374,52676,53546,59634,64330,36769 +,New York,0.87%,0.86%,0.95%,0.95%,0.91%,0.85%,1.01%,1.01%,1.04%,1.12%,1.62%,1.35%,1.38%,1.51%,1.57%,1.52%,1.47%,1.73%,1.82%,1.85%,1.93%,2.56%,244612,284423,314566,360390,425906,562590,512765,525985,556489,548698,278921 +,Montana,1.03%,1.13%,1.07%,1.17%,1.14%,0.96%,1.02%,1.03%,1.03%,1.12%,1.55%,1.44%,1.45%,1.48%,1.51%,1.42%,1.31%,1.44%,1.48%,1.63%,1.68%,2.19%,16951,18564,19332,20008,21848,25892,25980,29282,31713,32237,16567 +,South Dakota,1.18%,1.22%,1.13%,1.21%,1.19%,1.07%,1.13%,1.17%,1.12%,1.15%,1.51%,1.33%,1.56%,1.49%,1.52%,1.44%,1.35%,1.44%,1.57%,1.56%,1.65%,2.02%,22616,23789,26499,27571,30541,33950,32925,31642,33275,33662,19610 +,New Mexico,1.32%,1.33%,1.30%,1.27%,1.19%,1.18%,1.27%,1.30%,1.32%,1.35%,1.74%,2.02%,2.02%,2.05%,2.05%,1.98%,1.87%,1.94%,1.94%,1.85%,1.88%,2.38%,31944,36364,40178,42728,45292,48460,47983,48521,49045,49880,26018 +,New Hampshire,1.46%,1.43%,1.52%,1.54%,1.51%,1.59%,1.46%,1.49%,1.52%,1.59%,2.15%,1.71%,1.78%,1.89%,1.88%,1.86%,2.01%,1.83%,1.83%,1.91%,2.04%,2.72%,25161,27523,28856,30298,31577,33548,34391,34332,35818,35859,20712 +,Arizona,0.68%,0.82%,0.87%,0.93%,0.96%,0.84%,0.84%,0.83%,0.85%,0.93%,1.27%,1.33%,1.57%,1.61%,1.73%,1.65%,1.45%,1.40%,1.32%,1.30%,1.39%,1.78%,30633,36431,38379,39002,41636,55330,70390,87157,104615,108444,54210 +,Utah,0.76%,1.12%,1.20%,1.29%,1.14%,0.97%,1.06%,1.06%,1.03%,1.06%,1.58%,1.82%,1.80%,1.87%,2.03%,1.90%,1.68%,1.86%,1.86%,1.80%,2.01%,2.53%,29758,32656,34863,37658,42715,54677,48034,51071,54317,94762,68216 +,Oregon,1.22%,1.24%,1.24%,1.27%,1.18%,0.95%,1.18%,1.26%,1.27%,1.25%,1.57%,1.92%,1.87%,1.84%,1.83%,1.73%,1.44%,1.77%,1.86%,1.89%,1.88%,2.31%,89036,94563,104911,111562,121194,160010,134233,133596,139152,142174,76439 +,Wyoming,1.15%,1.37%,1.30%,1.27%,1.28%,1.30%,1.41%,1.30%,1.38%,1.27%,1.65%,1.92%,2.14%,2.10%,1.92%,1.95%,1.85%,1.93%,2.03%,2.05%,2.01%,2.72%,5320,5420,5860,6524,6940,8433,8292,9445,10295,11706,6130 +,California,0.97%,0.90%,0.96%,0.96%,0.86%,0.75%,0.83%,0.86%,0.83%,0.97%,1.26%,1.93%,1.82%,1.85%,1.79%,1.68%,1.52%,1.66%,1.69%,1.66%,1.75%,2.18%,174008,220279,250508,305692,394793,505586,505666,538162,630527,642237,325443 +,Vermont,1.67%,1.77%,1.95%,1.69%,1.47%,1.25%,1.22%,1.12%,1.22%,1.30%,1.87%,2.13%,2.26%,2.40%,2.23%,1.96%,1.73%,1.87%,1.81%,1.82%,1.91%,2.67%,11953,12181,12271,14105,18430,21549,21246,22506,23146,22760,12833 +,Nevada,0.62%,0.64%,0.69%,0.73%,0.52%,0.53%,0.74%,0.73%,0.80%,0.80%,1.29%,1.39%,1.36%,1.35%,1.41%,0.99%,1.05%,1.41%,1.54%,1.49%,1.45%,2.17%,20582,27559,38085,43116,69609,70349,54762,54650,56100,64000,27049 +,Colorado,0.81%,0.88%,0.90%,0.97%,0.99%,0.93%,1.00%,1.02%,1.04%,1.07%,1.37%,1.55%,1.65%,1.70%,1.71%,1.66%,1.55%,1.64%,1.67%,1.71%,1.78%,2.20%,106163,121814,135136,144117,157938,202890,187351,198147,204826,200304,103426 +,Washington,0.84%,0.91%,0.99%,1.04%,1.01%,0.90%,0.95%,0.95%,0.92%,0.85%,1.06%,1.37%,1.43%,1.50%,1.54%,1.53%,1.42%,1.52%,1.47%,1.39%,1.35%,1.68%,58746,64396,70803,74376,78976,91170,90557,100782,106368,107561,50294 +,Alaska,,,,,,,,,,,,,,1.23%,1.33%,1.55%,1.02%,1.09%,1.30%,1.12%,1.05%,,833,915,976,976,1033,1181,1103,1076,1252,1625,748 +,Hawaii,0.89%,0.93%,0.94%,0.99%,1.09%,0.74%,0.91%,1.06%,1.14%,1.13%,1.66%,1.50%,1.57%,1.41%,1.52%,1.58%,1.16%,1.39%,1.63%,1.64%,1.70%,2.29%,25060,25013,24999,25529,24842,38182,33520,33900,34913,34838,15403 +,District of Columbia,0.97%,0.98%,0.81%,0.80%,0.74%,0.53%,0.75%,0.92%,0.85%,1.01%,1.71%,1.58%,1.51%,1.27%,1.34%,1.21%,0.84%,1.39%,1.62%,1.47%,1.72%,2.45%,4115,4775,5209,5371,5927,10185,8766,7599,8913,7627,2693 +,"Total: Total includes all data under the ≥ 18 and < 25 Years bucket, including data from rows not currently displayed.",0.98%,1.01%,1.06%,1.11%,1.12%,1.05%,1.14%,1.17%,1.19%,1.25%,1.70%,1.65%,1.70%,1.77%,1.82%,1.82%,1.73%,1.86%,1.91%,1.92%,2.00%,2.59%,4556970,5185251,5729172,6234710,6807279,8332689,8331064,8880946,9509839,9654900,5081628 +≥ 25 and < 35 Years,Puerto Rico,,,,,,,,0.98%,1.08%,1.90%,2.85%,,,4.17%,,,3.93%,5.36%,5.30%,4.62%,4.83%,6.07%,189,262,312,320,347,458,448,2642,7295,9991,4945 +,Ohio,1.65%,1.77%,1.85%,1.91%,2.01%,2.05%,2.20%,2.28%,2.35%,2.44%,2.88%,3.03%,3.24%,3.39%,3.48%,3.54%,3.51%,3.65%,3.82%,3.89%,4.00%,4.74%,645086,677722,707958,730372,750855,841022,850544,924153,973546,976158,611034 +,Kentucky,1.58%,1.78%,1.92%,1.97%,2.06%,2.16%,2.43%,2.62%,2.68%,2.72%,3.31%,3.07%,3.26%,3.32%,3.31%,3.39%,3.47%,3.90%,4.23%,4.40%,4.49%,5.30%,151879,173380,184098,193274,205527,253716,266131,278073,286613,284919,177005 +,West Virginia,1.22%,0.89%,1.09%,1.98%,2.33%,2.47%,2.58%,2.45%,2.39%,2.45%,2.92%,3.52%,3.59%,4.13%,4.19%,4.36%,4.11%,4.13%,4.10%,4.37%,4.56%,5.54%,37160,43335,51185,56841,62095,70728,71710,84654,95390,99742,59534 +,Pennsylvania,1.19%,1.26%,1.36%,1.43%,1.47%,1.40%,1.56%,1.66%,1.73%,1.89%,2.33%,2.18%,2.36%,2.50%,2.63%,2.74%,2.67%,2.93%,3.07%,3.14%,3.25%,3.94%,464179,569971,656176,715289,754915,912161,862886,887233,917930,902561,508550 +,Michigan,1.54%,1.59%,1.80%,1.87%,1.84%,1.86%,1.96%,1.93%,1.92%,2.04%,2.53%,3.03%,2.89%,2.97%,3.01%,2.91%,2.92%,3.09%,3.06%,3.18%,3.46%,4.17%,285415,327030,350410,356871,451755,502613,488026,509276,586942,621954,382067 +,Mississippi,1.71%,1.73%,1.73%,1.95%,2.15%,2.11%,2.21%,2.42%,2.64%,2.76%,3.68%,3.35%,3.28%,3.24%,3.26%,3.47%,3.44%,3.68%,3.98%,4.34%,4.63%,5.93%,56951,63323,80204,101697,107945,129482,138631,143207,145974,149310,80812 +,Alabama,2.22%,2.24%,2.49%,2.58%,2.43%,1.97%,2.21%,2.51%,2.76%,3.31%,4.52%,3.47%,3.48%,3.69%,3.82%,4.12%,4.19%,4.69%,5.13%,5.50%,5.78%,7.42%,16770,18471,19157,22553,25638,42225,46326,50926,51857,49931,24545 +,North Carolina,1.76%,1.84%,1.93%,1.97%,2.10%,2.00%,2.23%,2.37%,2.49%,2.65%,3.26%,3.04%,3.13%,3.24%,3.30%,3.41%,3.26%,3.54%,3.69%,3.84%,4.03%,4.86%,383226,418456,451766,506695,533835,674614,703364,739084,819174,824188,493814 +,Arkansas,1.56%,1.83%,1.92%,1.93%,1.91%,2.01%,2.25%,2.51%,2.56%,2.75%,3.29%,3.83%,3.94%,4.10%,3.98%,3.92%,4.00%,4.23%,4.72%,4.84%,5.02%,5.85%,53306,61816,65413,73289,82914,96795,89193,86431,88762,85724,51685 +,Louisiana,1.90%,1.83%,1.75%,1.74%,1.79%,1.66%,1.81%,1.87%,1.94%,2.04%,2.53%,3.50%,3.51%,3.39%,3.32%,3.27%,3.07%,3.31%,3.49%,3.79%,4.00%,4.89%,136161,151532,170384,183554,197167,234669,240807,258167,272858,273985,162170 +,North Dakota,1.51%,1.45%,1.59%,1.68%,1.68%,1.73%,1.83%,1.90%,1.93%,2.02%,2.38%,2.35%,2.40%,2.53%,2.60%,2.54%,2.60%,2.78%,2.99%,3.05%,3.20%,3.77%,56711,59225,60772,63261,67342,69601,70193,69468,74668,76564,49433 +,Indiana,1.76%,1.90%,2.04%,2.24%,2.34%,2.30%,2.34%,2.37%,2.46%,2.65%,3.12%,3.14%,3.26%,3.32%,3.42%,3.56%,3.63%,3.84%,4.06%,4.25%,4.43%,5.09%,179748,200975,215351,230961,239397,274507,283617,291515,299141,295698,179655 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,12,10 or fewer,15,14,16,16,12,10 or fewer,10 or fewer +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,16,19,39,43,75,98,16 +,Rhode Island,1.18%,1.38%,1.33%,1.44%,1.54%,1.58%,1.63%,1.90%,1.91%,2.08%,2.54%,2.76%,3.06%,3.05%,3.14%,3.21%,3.05%,3.06%,3.33%,3.37%,3.76%,4.36%,41086,47625,49535,52494,51851,57074,64711,66241,79034,69728,38224 +,Iowa,1.52%,1.59%,1.66%,1.72%,1.78%,1.84%,2.03%,2.13%,2.28%,2.57%,3.08%,2.46%,2.63%,2.69%,2.78%,2.86%,2.93%,3.15%,3.33%,3.55%,3.90%,4.72%,137940,142575,146550,151389,157707,170598,168588,176583,184355,191134,118832 +,Delaware,1.29%,1.51%,1.58%,1.74%,2.05%,2.11%,2.16%,2.13%,2.26%,2.49%,2.80%,2.64%,2.98%,3.18%,3.37%,3.48%,3.44%,3.62%,3.70%,3.96%,4.27%,4.93%,12409,19054,22102,24645,26269,31513,33122,36659,38259,38211,21840 +,South Carolina,1.97%,2.01%,2.15%,2.30%,2.32%,2.12%,2.21%,2.35%,2.54%,2.64%,3.11%,3.09%,3.31%,3.54%,3.67%,3.67%,3.49%,3.74%,3.94%,4.18%,4.27%,4.96%,113963,147147,161647,185141,202064,268541,306890,344889,364791,365926,235184 +,Massachusetts,1.00%,1.08%,1.19%,1.35%,1.33%,1.28%,1.43%,1.54%,1.74%,1.92%,2.46%,2.12%,2.21%,2.34%,2.48%,2.48%,2.35%,2.55%,2.66%,2.87%,3.08%,3.90%,160401,194909,231944,245182,258484,300180,314410,351986,386056,392217,232726 +,Maryland,1.56%,1.50%,1.56%,1.69%,1.69%,1.53%,1.81%,1.88%,1.95%,2.08%,2.78%,2.97%,2.98%,3.16%,3.34%,3.28%,2.89%,3.42%,3.57%,3.70%,3.93%,4.90%,80421,101955,119462,139703,160530,211879,190246,192559,197192,197619,101893 +,Tennessee,1.65%,1.64%,1.68%,1.70%,1.68%,1.64%,1.71%,1.83%,1.88%,2.17%,3.13%,3.43%,3.28%,3.50%,3.50%,3.44%,3.45%,3.55%,3.70%,3.77%,4.24%,5.65%,46926,62893,73706,78718,86100,102577,108340,114370,129263,148849,78391 +,Wisconsin,1.65%,1.73%,1.79%,1.84%,1.83%,1.85%,2.07%,2.21%,2.30%,2.46%,2.88%,2.55%,2.58%,2.59%,2.62%,2.64%,2.66%,2.93%,3.09%,3.18%,3.36%,3.97%,297640,304966,315722,326205,346944,390773,372859,376737,380843,369562,237736 +,Missouri,1.69%,1.89%,2.06%,2.18%,2.25%,2.17%,2.16%,2.08%,2.15%,2.27%,2.79%,3.39%,3.60%,3.64%,3.73%,3.73%,3.60%,3.59%,3.56%,3.59%,3.77%,4.63%,43208,54198,60555,65201,68951,79951,85843,104043,112649,113808,66509 +,Illinois,1.68%,1.74%,1.79%,1.80%,1.90%,2.02%,2.29%,2.39%,2.50%,2.67%,3.23%,2.22%,2.32%,2.42%,2.74%,2.96%,3.13%,3.52%,3.64%,3.77%,3.99%,4.80%,357127,372435,403449,439281,474272,545552,524842,558896,584312,580413,339043 +,Idaho,1.44%,1.58%,1.72%,1.88%,1.90%,2.03%,2.11%,2.24%,2.27%,2.29%,2.94%,2.51%,2.70%,2.86%,3.02%,3.04%,2.99%,3.29%,3.59%,3.61%,3.60%,4.46%,44142,50695,53649,58599,66989,76072,85253,87817,93194,95855,56129 +,Connecticut,0.85%,1.03%,1.15%,1.27%,1.28%,1.27%,1.46%,1.58%,1.71%,1.82%,2.33%,2.43%,2.75%,2.99%,3.09%,3.01%,2.86%,3.20%,3.38%,3.48%,3.61%,4.50%,141157,166173,186323,201102,225733,267721,251710,251748,260901,272081,160804 +,Georgia,1.58%,1.53%,1.56%,1.70%,1.86%,1.79%,1.91%,1.94%,2.08%,2.28%,3.00%,3.16%,2.97%,3.07%,3.29%,3.50%,3.35%,3.49%,3.60%,3.79%,4.07%,5.17%,159142,196271,252268,286281,294526,350794,379881,433898,460836,463143,237785 +,Minnesota,1.67%,1.68%,1.72%,1.82%,1.84%,1.79%,1.97%,2.07%,2.18%,2.38%,2.85%,2.51%,2.56%,2.59%,2.69%,2.68%,2.67%,2.95%,3.09%,3.25%,3.48%,4.22%,233444,241211,245312,249927,256327,290728,264711,268834,262686,252463,144524 +,Florida,1.33%,1.34%,1.38%,1.51%,1.56%,1.36%,1.22%,1.41%,1.58%,1.94%,2.64%,3.54%,3.57%,3.54%,3.51%,3.53%,3.17%,3.11%,3.27%,3.47%,3.79%,4.84%,202788,223218,238140,247342,262007,374904,558185,713794,779263,817268,431419 +,Virginia,1.76%,1.78%,1.86%,1.86%,1.92%,1.87%,2.05%,2.01%,2.08%,2.19%,2.88%,2.91%,2.98%,3.06%,3.10%,3.23%,3.24%,3.54%,3.52%,3.52%,3.64%,4.69%,266354,300807,310811,332939,346152,401328,405493,447906,458451,456185,248909 +,Kansas,1.99%,2.10%,2.23%,2.23%,2.26%,2.18%,2.32%,2.04%,2.08%,2.23%,2.64%,4.16%,4.11%,3.99%,3.96%,3.82%,3.58%,3.80%,3.67%,3.71%,3.93%,4.62%,49526,52623,55538,57487,60362,69375,67957,86237,93972,97930,63698 +,Maine,1.73%,1.61%,1.78%,1.83%,1.86%,1.82%,1.95%,2.02%,2.17%,2.27%,2.93%,2.33%,2.36%,2.73%,2.85%,2.85%,2.70%,2.98%,3.10%,3.24%,3.33%,4.22%,34908,46514,50705,55556,57731,67891,68516,65995,66968,65496,40047 +,Texas,1.55%,1.66%,1.76%,1.76%,1.75%,1.61%,1.81%,1.93%,2.01%,2.22%,2.86%,3.16%,3.38%,3.55%,3.57%,3.71%,3.51%,3.84%,3.99%,4.05%,4.28%,5.24%,420964,532120,608850,678617,740840,1006213,962376,1020661,1120671,1190061,642815 +,Oklahoma,1.24%,1.08%,1.21%,1.25%,1.31%,1.33%,1.40%,1.56%,1.78%,2.21%,2.95%,2.60%,2.83%,3.18%,3.40%,3.51%,3.57%,3.72%,4.14%,4.25%,4.40%,5.31%,59525,83272,107005,113283,117887,127830,132674,146926,159842,161003,91915 +,New Jersey,1.13%,1.18%,1.22%,1.30%,1.36%,1.30%,1.55%,1.73%,1.85%,1.97%,2.58%,2.23%,2.32%,2.40%,2.51%,2.59%,2.46%,2.84%,3.08%,3.28%,3.47%,4.36%,59906,82813,117013,146801,171142,228241,241234,276023,312093,327196,172805 +,Nebraska,2.37%,2.24%,1.94%,2.15%,2.30%,2.29%,2.38%,2.48%,2.41%,2.58%,3.09%,3.83%,3.56%,3.35%,3.44%,3.59%,3.61%,3.68%,3.92%,3.91%,4.21%,5.02%,30125,36439,50013,56526,61016,68313,71887,73606,84439,89955,56331 +,New York,1.45%,1.43%,1.41%,1.42%,1.33%,1.35%,1.69%,1.77%,1.81%,1.97%,2.53%,2.34%,2.42%,2.61%,2.83%,2.66%,2.59%,3.16%,3.33%,3.41%,3.60%,4.41%,374323,437985,484317,561081,710556,935567,838693,867456,920172,918797,514434 +,Montana,1.40%,1.61%,1.66%,1.68%,1.77%,1.69%,1.64%,1.64%,1.75%,1.96%,2.50%,2.23%,2.40%,2.42%,2.35%,2.46%,2.29%,2.31%,2.44%,2.82%,3.07%,3.86%,24358,26816,28438,29562,31521,36740,36355,43322,47793,48997,27920 +,South Dakota,1.74%,1.77%,1.67%,1.77%,1.75%,1.67%,1.80%,1.94%,1.91%,2.04%,2.42%,2.32%,2.45%,2.39%,2.44%,2.41%,2.27%,2.46%,2.75%,2.78%,3.01%,3.64%,32958,33771,37381,38604,42513,47502,45447,43600,45434,46064,28806 +,New Mexico,2.02%,1.91%,2.04%,2.24%,2.13%,2.12%,2.48%,2.62%,2.64%,2.70%,3.23%,3.54%,3.61%,3.83%,4.07%,3.86%,3.83%,3.98%,4.02%,3.87%,3.89%,4.61%,46877,54723,61603,65562,69916,74965,74348,75044,76869,77242,43663 +,New Hampshire,1.43%,1.42%,1.50%,1.64%,1.66%,1.77%,1.82%,1.87%,2.01%,2.12%,2.63%,2.00%,2.23%,2.39%,2.49%,2.52%,2.76%,2.77%,2.84%,2.90%,3.12%,3.84%,36067,39901,42792,44895,47611,49800,50752,50311,50956,49911,30792 +,Arizona,1.71%,1.71%,1.82%,1.88%,1.83%,1.63%,1.89%,1.99%,2.01%,2.16%,2.71%,3.17%,3.23%,3.22%,3.26%,3.06%,2.73%,2.99%,3.02%,2.99%,3.19%,3.93%,50514,61024,64841,67467,74227,99795,118737,143659,169611,178559,96609 +,Utah,1.29%,1.69%,1.96%,1.96%,1.85%,1.67%,1.94%,1.95%,1.87%,1.68%,2.22%,2.87%,2.90%,2.94%,3.17%,3.10%,2.85%,3.27%,3.33%,3.32%,3.17%,3.81%,49234,52226,54021,57732,64351,84579,72103,77840,83332,143215,107989 +,Oregon,1.49%,1.65%,1.61%,1.67%,1.60%,1.33%,1.72%,1.80%,1.86%,1.97%,2.49%,2.96%,2.98%,2.82%,2.85%,2.77%,2.30%,2.91%,3.05%,3.19%,3.35%,4.10%,144188,151606,170506,180264,198327,266619,218016,217075,224442,227133,131982 +,Wyoming,1.81%,1.99%,2.04%,2.16%,2.23%,2.16%,2.27%,2.10%,2.14%,1.95%,2.65%,3.17%,3.09%,3.17%,3.46%,3.51%,3.49%,3.67%,3.29%,3.44%,3.28%,4.35%,8620,9154,9728,10188,10545,12199,11964,13698,14530,16811,9199 +,California,1.31%,1.28%,1.38%,1.38%,1.28%,1.19%,1.35%,1.44%,1.50%,1.86%,2.41%,3.01%,2.86%,2.93%,2.96%,2.85%,2.60%,2.89%,3.05%,3.11%,3.35%,4.03%,279858,358232,409567,508815,650925,840779,844335,896784,1046677,1055783,571357 +,Vermont,1.82%,1.85%,1.81%,1.63%,1.42%,1.38%,1.28%,1.16%,1.40%,1.56%,1.98%,2.67%,2.65%,2.59%,2.49%,2.35%,2.43%,2.59%,2.68%,2.83%,2.94%,3.64%,20047,20656,21350,25008,32036,36611,35469,36944,36987,35600,21142 +,Nevada,1.27%,1.20%,1.07%,1.08%,0.67%,0.77%,1.05%,1.16%,1.33%,1.40%,2.11%,2.63%,2.47%,2.41%,2.47%,1.68%,1.79%,2.25%,2.53%,2.72%,2.71%,3.74%,31637,42380,61559,71429,116301,119868,98223,97720,100658,114373,52189 +,Colorado,1.20%,1.26%,1.31%,1.41%,1.40%,1.25%,1.42%,1.42%,1.51%,1.61%,2.08%,2.40%,2.59%,2.65%,2.59%,2.53%,2.25%,2.56%,2.57%,2.70%,2.84%,3.58%,161478,188050,214788,230989,257827,342842,321794,348275,370631,364772,206816 +,Washington,1.14%,1.30%,1.47%,1.60%,1.68%,1.50%,1.50%,1.58%,1.66%,1.67%,2.14%,2.09%,2.20%,2.40%,2.48%,2.59%,2.45%,2.46%,2.50%,2.53%,2.56%,3.23%,102385,111947,122368,129050,138288,160482,172666,199138,207738,205404,103813 +,Alaska,1.97%,2.16%,2.15%,2.14%,1.77%,1.39%,1.22%,1.53%,1.71%,1.26%,1.64%,2.99%,3.24%,3.07%,3.55%,3.08%,2.63%,2.20%,2.32%,2.74%,2.05%,2.22%,1270,1387,1629,1635,1691,1866,1636,1506,1642,1901,854 +,Hawaii,1.80%,1.82%,1.82%,1.94%,1.86%,1.47%,1.80%,2.02%,2.19%,2.33%,2.97%,3.29%,3.43%,3.43%,3.39%,3.31%,2.58%,3.09%,3.55%,3.76%,4.04%,4.91%,43834,43948,43767,45021,45141,63235,55967,56302,59250,57302,28786 +,District of Columbia,0.87%,0.96%,0.76%,0.93%,0.84%,0.49%,0.93%,1.22%,1.19%,1.35%,2.10%,1.71%,1.79%,1.64%,1.75%,1.62%,1.13%,1.91%,2.09%,1.92%,2.15%,3.20%,3685,4361,5256,6046,7828,20055,20778,21501,28854,26222,10802 +,"Total: Total includes all data under the ≥ 25 and < 35 Years bucket, including data from rows not currently displayed.",1.53%,1.58%,1.65%,1.71%,1.72%,1.66%,1.84%,1.93%,2.01%,2.18%,2.75%,2.81%,2.89%,2.99%,3.08%,3.09%,2.99%,3.28%,3.43%,3.54%,3.73%,4.56%,6972043,7975561,8828379,9630935,10615857,12954824,12954494,13883079,14892450,15145415,8680558 +≥ 35 and < 45 Years,Puerto Rico,,,4.47%,5.79%,4.23%,2.69%,3.97%,2.28%,3.41%,5.07%,6.66%,5.45%,6.87%,8.68%,9.74%,8.99%,8.74%,10.23%,12.45%,11.45%,11.39%,13.69%,257,335,380,380,378,446,479,2674,6865,9207,5017 +,Ohio,4.27%,4.48%,4.62%,4.73%,4.93%,4.96%,5.19%,5.26%,5.32%,5.34%,5.91%,7.10%,7.52%,7.78%,7.95%,8.01%,7.87%,8.00%,8.27%,8.33%,8.44%,9.66%,658283,684740,716036,739034,762436,856024,879411,970654,1029321,1044010,697820 +,Kentucky,4.26%,4.67%,4.92%,5.13%,5.33%,5.31%,5.73%,5.98%,5.91%,5.91%,6.60%,7.25%,7.65%,7.79%,7.88%,8.00%,8.00%,8.62%,9.13%,9.25%,9.37%,10.55%,168758,191245,204469,212520,221680,268149,281731,293369,302860,302733,198724 +,West Virginia,2.84%,2.15%,2.38%,4.86%,5.54%,5.78%,6.12%,5.65%,5.31%,5.28%,5.95%,8.18%,8.27%,9.24%,9.80%,9.70%,9.03%,9.38%,9.18%,9.45%,9.70%,11.32%,41697,47982,57318,63228,67370,76578,77593,91145,102594,106892,67132 +,Pennsylvania,3.05%,3.21%,3.38%,3.46%,3.49%,3.25%,3.56%,3.69%,3.74%,3.95%,4.54%,5.31%,5.67%,5.87%,6.02%,6.16%,5.90%,6.33%,6.54%,6.61%,6.74%,7.73%,459156,559386,647799,707945,744733,913033,895588,943978,995455,1005490,602107 +,Michigan,4.07%,4.18%,4.55%,4.69%,4.51%,4.44%,4.58%,4.40%,4.19%,4.35%,4.99%,7.13%,6.84%,7.03%,7.09%,6.82%,6.64%,6.87%,6.74%,6.76%,7.16%,8.29%,276831,312197,330728,336672,431144,483853,476867,502616,596380,647268,427765 +,Mississippi,4.51%,4.39%,4.33%,4.91%,5.47%,5.32%,5.56%,5.75%,5.94%,6.12%,7.33%,8.05%,7.88%,7.72%,7.91%,8.40%,8.15%,8.69%,9.18%,9.66%,10.22%,12.16%,61569,68558,90473,114258,120991,144755,154719,160228,165229,166898,98119 +,Alabama,4.96%,5.36%,5.94%,5.78%,5.25%,4.41%,4.86%,5.43%,5.93%,6.73%,8.49%,7.93%,8.12%,8.60%,8.40%,8.49%,8.69%,10.03%,10.69%,11.08%,11.50%,13.94%,22349,23753,24545,28588,31231,50765,55151,60622,61476,59934,32191 +,North Carolina,4.53%,4.70%,4.86%,5.00%,5.19%,4.85%,5.29%,5.49%,5.66%,5.79%,6.69%,7.29%,7.38%,7.58%,7.76%,7.92%,7.36%,7.82%,8.10%,8.32%,8.60%,10.01%,418493,447806,476819,527055,545809,695006,726051,769401,854250,870091,556994 +,Arkansas,3.34%,4.23%,4.65%,4.80%,4.66%,4.77%,5.18%,5.45%,5.38%,5.51%,6.11%,8.44%,8.83%,9.14%,9.24%,9.09%,8.95%,9.16%,9.63%,9.69%,10.00%,11.03%,56676,66833,71030,78537,86261,99886,94647,93479,96020,93804,61408 +,Louisiana,4.91%,4.79%,4.62%,4.63%,4.65%,4.23%,4.52%,4.52%,4.57%,4.60%,5.18%,8.30%,8.22%,8.22%,8.18%,8.01%,7.39%,7.90%,8.11%,8.56%,8.84%,10.16%,140967,156909,178347,195088,210965,253015,266024,285487,304666,308942,196853 +,North Dakota,3.75%,3.76%,3.82%,3.93%,3.97%,3.95%,4.01%,4.12%,4.00%,4.02%,4.44%,6.02%,6.15%,6.06%,6.11%,6.03%,6.02%,6.27%,6.50%,6.48%,6.59%,7.57%,48645,51787,54249,57808,62304,66744,68805,71290,78519,81786,54911 +,Indiana,4.65%,4.95%,5.18%,5.59%,5.85%,5.74%,5.74%,5.72%,5.69%,5.95%,6.69%,7.47%,7.85%,8.03%,8.15%,8.35%,8.35%,8.67%,8.96%,9.17%,9.47%,10.68%,188440,208172,224870,241034,249289,286775,298365,306914,316408,316002,203020 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,11,17,18,16,12,16,18,21,19,14,10 or fewer +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,12,25,34,10 or fewer +,Rhode Island,2.78%,3.21%,3.46%,3.62%,3.78%,3.88%,3.87%,4.30%,4.34%,4.53%,5.08%,6.32%,6.67%,6.81%,7.03%,7.02%,6.67%,6.69%,7.17%,7.20%,7.50%,8.41%,41305,46928,48145,50574,49701,55739,63704,67475,80302,74415,44345 +,Iowa,3.97%,4.08%,4.11%,4.20%,4.18%,4.19%,4.49%,4.72%,5.08%,5.46%,6.24%,6.02%,6.29%,6.27%,6.33%,6.26%,6.27%,6.64%,7.05%,7.55%,8.06%,9.56%,130238,135948,142515,149819,157676,173388,173039,183415,193714,205590,133541 +,Delaware,3.18%,3.78%,4.21%,4.34%,4.84%,5.28%,5.58%,5.37%,5.38%,5.80%,6.17%,5.53%,6.72%,7.35%,7.32%,7.48%,7.56%,8.21%,8.42%,8.47%,9.14%,10.06%,12088,18380,21497,24367,26553,32600,34173,38699,40978,42276,25781 +,South Carolina,4.47%,4.72%,5.05%,5.34%,5.45%,4.90%,5.02%,5.15%,5.37%,5.44%,6.08%,7.02%,7.56%,7.99%,8.30%,8.28%,7.58%,8.03%,8.35%,8.70%,8.86%,10.01%,124326,155840,168374,192018,207510,281814,326189,367217,394824,402182,271137 +,Massachusetts,2.81%,2.97%,3.07%,3.27%,3.25%,3.11%,3.34%,3.52%,3.77%,4.16%,4.92%,5.44%,5.49%,5.56%,5.76%,5.83%,5.50%,5.84%,5.94%,6.21%,6.46%,7.65%,154276,190198,227942,239882,247169,285273,308413,347872,389815,408009,262242 +,Maryland,3.92%,3.76%,3.84%,4.09%,4.15%,3.55%,4.19%,4.28%,4.34%,4.50%,5.54%,7.02%,7.20%,7.26%,7.41%,7.30%,6.21%,7.30%,7.54%,7.79%,7.95%,9.47%,73715,93423,112865,136829,155250,213658,197121,205647,216093,221425,125583 +,Tennessee,4.19%,4.09%,4.19%,4.25%,4.16%,4.04%,4.18%,4.13%,4.13%,4.58%,5.99%,8.04%,7.83%,8.03%,8.09%,7.99%,7.81%,7.98%,8.08%,8.27%,8.98%,11.14%,52134,67165,77372,82151,87511,104607,110484,118056,135439,158390,92676 +,Wisconsin,4.16%,4.30%,4.39%,4.43%,4.45%,4.40%,4.86%,4.97%,5.12%,5.33%,5.92%,6.04%,6.08%,6.10%,6.11%,6.05%,6.06%,6.57%,6.74%,6.89%,7.15%,8.12%,289902,298825,312456,326885,349849,397671,387599,396724,404106,398691,268867 +,Missouri,3.90%,4.36%,4.78%,4.85%,5.01%,4.83%,4.73%,4.88%,5.01%,5.00%,5.79%,7.38%,8.09%,8.21%,8.21%,8.14%,7.83%,7.75%,7.82%,7.92%,8.11%,9.33%,45546,56093,63563,68984,72857,83636,89962,108204,116752,117999,73975 +,Illinois,4.37%,4.53%,4.62%,4.64%,4.81%,4.95%,5.43%,5.54%,5.64%,5.85%,6.71%,5.27%,5.48%,5.81%,6.58%,7.03%,7.25%,7.87%,8.07%,8.31%,8.69%,10.19%,373490,388512,420447,457262,483199,550532,541515,576992,606422,607565,376817 +,Idaho,2.98%,3.15%,3.49%,3.58%,3.82%,4.08%,4.32%,4.48%,4.56%,4.53%,5.58%,5.20%,5.49%,5.83%,5.85%,5.98%,6.03%,6.50%,6.81%,7.07%,7.11%,8.59%,49041,54961,58268,64393,72334,82896,93558,96860,101452,103159,63459 +,Connecticut,1.77%,2.12%,2.27%,2.49%,2.62%,2.56%,2.88%,3.07%,3.27%,3.56%,4.21%,5.27%,5.87%,6.13%,6.30%,6.23%,5.83%,6.29%,6.56%,6.77%,6.95%,8.09%,151043,174001,195260,209848,232808,278529,269528,274856,288663,308870,199362 +,Georgia,4.03%,3.99%,4.07%,4.42%,4.72%,4.47%,4.64%,4.46%,4.65%,4.93%,6.09%,7.36%,7.06%,7.34%,7.78%,8.10%,7.65%,7.82%,7.94%,8.24%,8.61%,10.43%,178937,218728,267562,300079,308322,368594,409576,473355,506350,514065,287297 +,Minnesota,3.94%,3.99%,4.06%,4.23%,4.23%,3.98%,4.41%,4.51%,4.64%,4.83%,5.46%,5.64%,5.68%,5.80%,5.94%,5.91%,5.68%,6.31%,6.49%,6.78%,7.08%,8.27%,217117,228877,239703,250358,258208,304396,281020,291486,291158,285281,172604 +,Florida,2.79%,2.84%,2.93%,3.16%,3.17%,2.78%,2.51%,3.01%,3.38%,4.12%,5.21%,7.08%,7.24%,7.29%,7.27%,7.21%,6.59%,6.61%,6.99%,7.38%,7.92%,9.63%,204379,226238,241843,252739,269629,391807,599237,774892,849467,911553,519683 +,Virginia,4.29%,4.32%,4.38%,4.36%,4.47%,4.35%,4.59%,4.38%,4.39%,4.50%,5.51%,6.59%,6.74%,6.83%,6.81%,7.07%,6.94%,7.41%,7.25%,7.21%,7.32%,8.96%,280177,322004,339190,369255,388103,452436,466111,518300,532721,536251,315672 +,Kansas,4.34%,4.52%,4.80%,4.84%,4.89%,4.66%,4.80%,4.40%,4.49%,4.65%,5.00%,7.83%,7.89%,7.97%,7.93%,7.80%,7.31%,7.57%,7.49%,7.52%,7.75%,8.54%,51685,55888,59631,62952,66082,76497,76052,97240,106191,111850,77488 +,Maine,3.85%,3.61%,4.01%,4.13%,4.24%,3.97%,4.14%,4.27%,4.35%,4.36%,5.07%,5.05%,5.00%,5.75%,5.95%,6.00%,5.48%,5.92%,6.13%,6.18%,6.20%,7.11%,36165,47601,52164,57661,59996,72445,75258,74402,77785,79031,52083 +,Texas,3.94%,4.20%,4.47%,4.45%,4.37%,3.93%,4.24%,4.40%,4.55%,4.90%,5.92%,7.40%,8.17%,8.51%,8.56%,8.75%,8.13%,8.75%,8.93%,9.05%,9.33%,11.04%,453558,580935,666902,738999,798709,1083993,1052624,1125194,1258241,1337463,780953 +,Oklahoma,3.15%,2.98%,3.26%,3.37%,3.45%,3.38%,3.56%,3.65%,3.81%,4.53%,5.64%,6.77%,7.32%,7.93%,8.42%,8.40%,8.17%,8.38%,8.63%,8.75%,9.07%,10.64%,62205,86312,111220,120590,125482,138848,145767,163626,177697,179834,107008 +,New Jersey,2.38%,2.39%,2.49%,2.71%,3.03%,2.89%,3.43%,3.79%,4.01%,4.20%,5.10%,4.78%,5.07%,5.23%,5.43%,5.70%,5.32%,6.04%,6.48%,6.86%,7.25%,8.81%,60607,82543,122301,157631,178586,243545,264179,305417,345790,363661,207706 +,Nebraska,4.83%,4.84%,4.24%,4.36%,4.63%,4.51%,4.54%,4.62%,4.50%,4.66%,5.33%,7.85%,7.53%,7.09%,7.21%,7.30%,7.08%,7.23%,7.47%,7.46%,7.91%,9.27%,27607,33593,47831,55178,60472,69649,73305,76961,88458,94240,61435 +,New York,3.69%,3.71%,3.49%,3.60%,3.53%,3.48%,4.13%,4.25%,4.27%,4.51%,5.46%,5.56%,5.74%,5.95%,6.53%,6.33%,6.04%,6.98%,7.28%,7.40%,7.68%,9.00%,374654,430043,480816,561384,676818,895115,839254,876882,940447,962116,585023 +,Montana,3.17%,3.27%,3.32%,3.38%,3.40%,3.35%,3.56%,3.30%,3.31%,3.59%,4.40%,4.83%,4.77%,4.88%,4.74%,4.60%,4.54%,4.86%,4.80%,5.14%,5.59%,6.89%,23252,25519,27298,28730,30896,35424,35428,43018,50505,52363,31560 +,South Dakota,4.19%,4.16%,3.88%,3.89%,3.81%,3.55%,3.87%,4.02%,4.07%,4.22%,4.81%,5.69%,5.70%,5.38%,5.26%,5.08%,4.83%,5.34%,5.73%,5.97%,6.34%,7.39%,31240,33076,37114,38962,42991,49200,47321,47298,48187,48392,30886 +,New Mexico,5.42%,5.18%,5.52%,5.74%,5.23%,5.19%,5.66%,6.00%,5.98%,5.94%,6.87%,8.58%,8.75%,9.12%,9.46%,8.82%,8.58%,8.82%,8.86%,8.46%,8.33%,9.58%,43933,51729,58811,63461,68018,74753,75897,78105,80209,82179,49288 +,New Hampshire,3.04%,3.09%,3.35%,3.53%,3.44%,3.54%,3.52%,3.58%,3.69%,3.84%,4.36%,4.01%,4.63%,5.10%,5.29%,5.19%,5.33%,5.29%,5.35%,5.48%,5.63%,6.46%,38953,42052,45001,46706,48694,51806,54135,54274,56217,57699,38158 +,Arizona,4.18%,4.33%,4.57%,4.76%,4.44%,4.01%,4.51%,4.78%,4.85%,5.14%,6.08%,6.93%,7.10%,7.34%,7.47%,6.78%,6.21%,6.77%,6.92%,6.85%,7.21%,8.61%,53695,63230,67144,69340,76777,103170,123783,146216,168665,179895,104480 +,Utah,2.77%,3.38%,3.66%,3.78%,3.67%,3.35%,3.81%,3.63%,3.51%,3.12%,3.97%,5.72%,5.71%,5.76%,6.02%,6.17%,5.75%,6.43%,6.32%,6.31%,6.17%,7.26%,47680,51677,54253,58207,63129,79522,70112,75665,80089,140413,108252 +,Oregon,3.81%,4.11%,4.10%,4.05%,3.88%,3.09%,3.84%,3.97%,4.10%,4.26%,5.14%,7.02%,6.99%,6.75%,6.59%,6.33%,5.06%,6.22%,6.49%,6.68%,6.82%,8.04%,139765,148330,167246,178735,193567,268144,222213,225622,235808,244009,150598 +,Wyoming,4.62%,4.72%,4.72%,4.83%,4.97%,4.59%,4.68%,4.40%,3.90%,3.64%,4.57%,7.46%,7.30%,7.13%,7.57%,7.45%,6.96%,7.23%,6.80%,6.48%,6.24%,7.72%,8759,9384,10218,11241,11855,13627,13743,15652,17010,19572,11309 +,California,2.82%,2.70%,2.90%,3.00%,2.93%,2.73%,3.16%,3.37%,3.55%,4.41%,5.43%,6.50%,6.17%,6.38%,6.71%,6.60%,5.96%,6.58%,6.79%,6.97%,7.46%,8.75%,267245,358348,412281,505641,631946,828764,841356,907666,1069155,1098094,641589 +,Vermont,2.93%,3.10%,3.09%,2.82%,2.59%,2.45%,2.12%,1.82%,2.12%,2.42%,3.14%,4.61%,4.74%,4.91%,4.70%,4.50%,4.42%,4.72%,4.67%,4.73%,4.99%,5.88%,22607,23274,24191,28546,35577,41025,41587,44005,45661,45415,28690 +,Nevada,3.31%,2.89%,2.64%,2.75%,1.80%,1.88%,2.46%,2.66%,3.01%,3.18%,4.36%,5.92%,5.62%,5.65%,5.97%,4.14%,4.28%,5.38%,5.67%,6.06%,6.05%,7.81%,30399,39623,55860,64051,101323,109798,93825,95177,102288,118298,59659 +,Colorado,2.86%,3.06%,3.12%,3.23%,3.17%,2.79%,3.09%,2.95%,3.00%,3.15%,3.84%,5.24%,5.57%,5.63%,5.55%,5.36%,4.76%,5.27%,5.18%,5.36%,5.54%,6.51%,146496,169308,193862,210779,236641,311853,301931,330702,364288,370253,226149 +,Washington,3.09%,3.33%,3.54%,3.76%,4.01%,3.67%,3.49%,3.61%,3.71%,3.77%,4.60%,5.28%,5.41%,5.68%,5.73%,5.94%,5.48%,5.35%,5.38%,5.45%,5.62%,6.83%,92180,101684,113103,121149,129382,151939,169016,203924,218121,220395,122633 +,Alaska,4.64%,4.14%,3.84%,3.83%,4.28%,4.19%,4.08%,3.93%,3.75%,3.70%,4.97%,7.06%,6.57%,5.72%,5.71%,6.18%,6.38%,5.95%,5.50%,5.35%,5.61%,6.62%,991,1111,1329,1436,1473,1646,1496,1474,1440,1515,785 +,Hawaii,4.00%,4.21%,4.24%,4.34%,4.39%,3.43%,4.08%,4.51%,4.75%,4.88%,6.11%,7.47%,7.76%,7.83%,7.69%,7.49%,6.04%,7.03%,7.72%,8.07%,8.56%,10.57%,47306,48479,49141,51053,51483,70840,63956,65552,68997,67990,36682 +,District of Columbia,2.83%,2.47%,2.30%,2.07%,1.94%,1.08%,2.10%,2.60%,2.47%,2.82%,4.10%,4.97%,5.30%,4.16%,4.13%,3.41%,2.79%,4.10%,4.51%,4.10%,4.78%,6.49%,2053,2304,2912,3438,4787,14263,16775,17794,23860,21806,9766 +,"Total: Total includes all data under the ≥ 35 and < 45 Years bucket, including data from rows not currently displayed.",3.82%,3.93%,4.04%,4.16%,4.18%,3.96%,4.27%,4.37%,4.46%,4.72%,5.56%,6.52%,6.73%,6.91%,7.09%,7.09%,6.74%,7.23%,7.43%,7.60%,7.88%,9.23%,7067921,8074997,8975181,9821359,10711972,13178474,13464703,14610517,15837699,16359309,10045364 +≥ 45 and < 55 Years,Puerto Rico,7.75%,6.93%,9.63%,9.06%,9.41%,7.50%,6.70%,4.76%,6.99%,10.98%,14.67%,15.78%,15.80%,19.45%,19.06%,19.02%,18.74%,15.63%,23.29%,21.25%,21.59%,25.25%,374,462,509,530,510,587,627,3212,7787,10206,6167 +,Ohio,7.98%,8.55%,8.97%,9.38%,9.85%,9.99%,10.61%,10.87%,11.06%,11.11%,11.59%,12.64%,13.52%,14.20%,14.78%,15.12%,14.99%,15.48%,16.17%,16.46%,16.70%,18.31%,801554,816844,831178,832878,833884,911253,912836,999047,1041234,1047123,746426 +,Kentucky,8.16%,8.82%,9.44%,9.92%,10.49%,10.75%,11.67%,12.14%,12.13%,12.08%,12.84%,13.04%,13.79%,14.23%,14.56%,15.01%,15.48%,16.73%,17.70%,18.13%,18.45%,20.09%,205909,231174,243430,247848,250962,290749,305104,315360,321260,321807,225107 +,West Virginia,5.03%,3.98%,4.36%,9.22%,10.98%,11.66%,12.36%,11.30%,10.79%,10.72%,11.73%,14.05%,14.54%,16.56%,17.62%,18.18%,17.77%,18.38%,18.14%,19.00%,19.65%,22.17%,52748,60697,72149,78394,81567,89376,90140,105943,119855,124019,83134 +,Pennsylvania,5.89%,6.39%,6.99%,7.26%,7.42%,7.04%,7.62%,7.92%,8.06%,8.49%,9.29%,9.98%,10.83%,11.50%,11.94%,12.39%,12.14%,12.87%,13.31%,13.53%,13.81%,15.20%,589936,699493,784452,828577,834826,963111,934539,955399,979888,975612,611256 +,Michigan,7.83%,8.14%,9.03%,9.48%,9.27%,9.23%,9.65%,9.42%,8.90%,9.24%,9.97%,12.71%,12.54%,13.15%,13.60%,13.36%,13.30%,13.88%,13.77%,13.89%,14.58%,16.05%,337732,375749,387899,383342,478380,517798,498912,510423,606541,645285,459441 +,Mississippi,8.36%,8.34%,8.24%,9.11%,10.04%,9.95%,10.55%,10.93%,11.37%,11.72%,13.19%,14.32%,14.16%,13.88%,14.32%,15.15%,15.23%,16.24%,17.14%,18.13%,19.10%,21.81%,75807,84121,109362,138361,141172,164432,176398,183665,191550,195385,127382 +,Alabama,8.77%,9.18%,9.87%,9.87%,9.77%,8.25%,8.85%,9.76%,10.15%,11.60%,13.75%,13.42%,13.84%,14.33%,14.48%,15.17%,15.50%,17.27%,18.41%,19.18%,20.01%,23.31%,30671,33145,34128,39489,41627,64236,69351,74914,76497,74762,43936 +,North Carolina,8.66%,9.16%,9.53%,9.94%,10.47%,9.91%,10.81%,11.24%,11.66%,11.73%,12.98%,13.33%,13.71%,14.14%,14.73%,15.10%,14.36%,15.31%,15.86%,16.38%,16.77%,18.85%,505508,542127,574716,620737,629126,774834,803139,834412,906939,912665,620371 +,Arkansas,5.69%,7.41%,8.08%,8.30%,8.46%,8.90%,9.56%,10.04%,9.82%,10.07%,11.30%,13.38%,14.76%,15.65%,16.12%,16.17%,16.15%,16.58%,17.33%,17.65%,18.07%,20.03%,69172,80305,83736,90712,95561,106020,102998,103970,107864,106046,70709 +,Louisiana,9.15%,9.23%,9.01%,9.28%,9.51%,8.96%,9.33%,9.31%,9.26%,9.31%,10.02%,14.46%,14.98%,15.30%,15.75%,15.84%,14.98%,15.83%,16.32%,16.99%,17.45%,19.39%,172214,184055,199822,209695,216102,245963,260159,275936,295872,301587,209046 +,North Dakota,6.78%,6.96%,7.58%,7.96%,8.01%,7.96%,8.11%,8.10%,8.16%,8.41%,9.21%,10.86%,11.26%,11.84%,12.12%,12.13%,12.18%,12.70%,13.01%,13.45%,13.76%,15.63%,50432,51255,51389,52555,53716,55677,56766,58747,64338,66571,47546 +,Indiana,8.87%,9.37%,9.85%,10.92%,11.64%,11.51%,11.57%,11.58%,11.62%,12.02%,12.89%,13.42%,14.21%,14.58%,15.31%,16.02%,16.17%,16.69%,17.28%,17.76%,18.23%,20.06%,220871,238946,251823,263790,266269,298777,308734,316345,323385,323832,220523 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,21,23,23,24,20,17,22,23,18,21,10 or fewer +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer +,Rhode Island,5.36%,6.25%,6.84%,7.27%,7.86%,8.03%,8.16%,9.09%,9.20%,9.59%,10.03%,11.23%,12.19%,12.95%,13.21%,13.49%,13.06%,13.23%,13.91%,14.02%,14.63%,15.47%,57364,63207,62983,63463,59757,62771,67464,69258,77723,72295,46090 +,Iowa,7.72%,7.97%,8.28%,8.52%,8.73%,8.84%,9.32%,9.73%,10.37%,10.84%,11.79%,11.52%,12.02%,12.28%,12.58%,12.69%,12.82%,13.33%,14.02%,14.83%,15.53%,17.66%,140869,142735,143837,145787,149534,160744,159472,169673,179985,197009,136578 +,Delaware,5.97%,7.02%,8.20%,8.76%,10.22%,11.16%,11.66%,11.06%,11.25%,12.13%,12.34%,9.63%,11.90%,13.51%,13.89%,14.55%,14.70%,15.54%,15.77%,16.40%,16.95%,17.93%,18259,25848,28353,30312,30855,35936,36374,39734,41232,42580,27795 +,South Carolina,7.79%,8.61%,9.39%,10.16%,10.57%,9.80%,10.07%,10.59%,10.99%,10.91%,11.61%,12.31%,13.62%,14.49%,15.29%,15.50%,14.62%,15.44%,16.30%,16.93%,17.22%,18.79%,162425,198868,210260,233321,244533,312958,357275,388958,412313,415654,294494 +,Massachusetts,5.82%,6.12%,6.33%,6.86%,6.94%,6.69%,7.23%,7.68%,8.09%,8.67%,9.64%,10.64%,10.93%,11.11%,11.53%,11.65%,11.15%,11.74%,12.17%,12.52%,12.91%,14.55%,188209,230195,271343,276081,271673,297935,319456,343403,381531,402315,279585 +,Maryland,7.05%,6.98%,7.39%,8.31%,8.54%,7.48%,8.85%,8.89%,9.03%,9.36%,11.02%,12.39%,13.10%,13.76%,14.36%,14.14%,12.25%,14.36%,14.77%,15.18%,15.57%,17.71%,98012,118033,138461,160599,172893,221634,196991,201506,206718,207764,127749 +,Tennessee,7.19%,7.18%,7.53%,7.74%,7.72%,7.71%,8.11%,8.28%,8.06%,8.97%,10.93%,13.02%,13.19%,13.96%,14.35%,14.48%,14.39%,15.05%,15.36%,15.71%,17.09%,19.97%,69153,87670,99218,103787,108415,125308,131381,138324,157533,181917,114380 +,Wisconsin,7.79%,8.14%,8.50%,8.74%,8.97%,9.08%,9.91%,10.29%,10.50%,10.92%,11.82%,10.87%,11.13%,11.44%,11.70%,11.96%,12.14%,13.12%,13.57%,13.82%,14.27%,15.88%,346038,345943,345800,347674,355936,385794,371987,375385,379394,375754,266703 +,Missouri,6.90%,8.18%,8.97%,9.46%,9.83%,9.54%,9.40%,9.76%,10.18%,10.21%,11.32%,13.06%,14.52%,15.01%,15.26%,15.26%,14.99%,14.93%,15.31%,15.74%,16.11%,18.14%,58344,68824,75040,79017,80571,88397,92359,108031,114871,115759,76658 +,Illinois,7.91%,8.41%,8.73%,8.98%,9.50%,9.84%,10.74%,11.04%,11.32%,11.66%,12.86%,9.26%,9.77%,10.68%,12.42%,13.52%,14.01%,15.18%,15.73%,16.25%,16.90%,19.07%,440428,453423,480218,510619,523957,577188,567600,598132,627938,631281,419427 +,Idaho,5.21%,5.68%,6.29%,6.67%,7.18%,7.94%,8.54%,8.79%,8.87%,8.55%,9.86%,9.00%,9.68%,10.16%,10.46%,10.95%,11.28%,12.23%,12.80%,12.93%,12.91%,14.81%,55963,61255,63295,68559,73784,82954,94449,99193,104130,106462,69761 +,Connecticut,3.30%,3.97%,4.39%,4.76%,5.13%,5.21%,5.89%,6.32%,6.86%,7.35%,8.25%,9.63%,10.74%,11.41%,11.74%,11.71%,11.17%,11.96%,12.48%,12.99%,13.30%,14.91%,210236,235995,253407,261722,274684,307220,289101,285745,291240,304778,208006 +,Georgia,8.08%,7.93%,8.20%,8.93%,9.47%,9.04%,9.31%,9.01%,9.41%,9.75%,11.40%,13.43%,13.20%,13.68%,14.61%,15.15%,14.54%,14.72%,15.10%,15.80%,16.42%,19.08%,218841,267306,319663,352051,356686,410729,464450,532474,561605,565063,340701 +,Minnesota,7.71%,7.85%,8.15%,8.63%,8.82%,8.35%,9.12%,9.40%,9.62%,9.91%,10.69%,10.55%,10.68%,11.10%,11.48%,11.72%,11.29%,12.45%,12.90%,13.39%,13.93%,15.72%,243389,248660,249090,250116,247169,281020,257331,262956,263898,261504,169401 +,Florida,5.10%,5.30%,5.44%,5.96%,5.96%,5.35%,4.96%,6.01%,6.75%,8.13%,9.76%,12.19%,12.55%,12.80%,13.05%,13.00%,12.38%,12.68%,13.40%,14.23%,15.11%,17.54%,274820,301506,312867,317502,328806,449886,664563,830994,892009,952671,588608 +,Virginia,8.13%,8.20%,8.54%,8.62%,8.87%,8.73%,9.14%,8.83%,8.88%,8.96%,10.42%,11.92%,12.29%,12.66%,12.89%,13.42%,13.29%,14.04%,14.00%,14.03%,14.23%,16.58%,348195,398438,408334,427910,440275,491166,499790,539187,548310,550157,347737 +,Kansas,7.91%,8.40%,8.94%,9.26%,9.40%,8.86%,9.19%,8.56%,8.82%,9.35%,9.70%,12.95%,13.45%,13.88%,14.16%,14.04%,13.33%,13.99%,14.11%,14.26%,15.02%,16.24%,62980,65440,67217,68391,68500,76020,75604,96052,104725,111593,80801 +,Maine,7.20%,6.71%,7.46%,7.72%,8.12%,7.76%,8.32%,8.74%,9.06%,8.80%,9.64%,8.53%,9.05%,10.45%,10.85%,10.93%,10.31%,11.45%,11.88%,12.30%,12.11%,13.40%,50519,65079,68092,72401,71655,81087,81078,79153,80263,80532,55446 +,Texas,7.41%,7.82%,8.37%,8.49%,8.64%,7.92%,8.34%,8.78%,9.06%,9.60%,11.06%,13.70%,15.07%,15.77%,16.00%,16.50%,15.65%,16.75%,17.23%,17.44%,17.87%,20.38%,503059,648878,734504,799041,846658,1096378,1075089,1138792,1269901,1343092,849188 +,Oklahoma,5.60%,5.69%,6.42%,6.74%,7.08%,7.06%,7.38%,7.31%,7.45%,8.64%,10.22%,12.33%,13.52%,14.77%,15.62%,16.08%,15.90%,16.45%,16.62%,16.67%,16.94%,19.18%,74815,102294,124403,131889,133864,143052,149107,167563,181540,185126,117546 +,New Jersey,4.73%,5.18%,5.37%,5.78%,6.36%,5.99%,6.95%,7.53%,8.10%,8.54%,9.85%,9.20%,10.09%,10.68%,11.12%,11.56%,10.86%,11.95%,12.57%,13.37%,14.10%,16.30%,78728,104428,153571,192740,210974,278957,304202,343917,376126,386551,234488 +,Nebraska,8.34%,8.87%,8.18%,8.50%,9.17%,9.16%,9.19%,8.86%,8.88%,9.13%,10.02%,13.40%,13.61%,13.03%,13.51%,13.86%,13.73%,13.99%,14.06%,14.25%,14.75%,16.57%,31460,36568,49967,55864,59855,66690,69387,73881,83893,89154,61278 +,New York,7.25%,7.49%,7.22%,7.42%,7.49%,7.48%,8.58%,8.90%,8.94%,9.41%,10.96%,10.71%,11.36%,11.86%,12.83%,12.78%,12.29%,13.74%,14.33%,14.57%,14.95%,16.89%,501847,554169,602989,674117,756026,943204,891207,909152,944802,952411,612637 +,Montana,5.81%,6.39%,6.72%,6.97%,7.15%,7.11%,7.30%,6.98%,7.02%,7.50%,8.83%,8.89%,9.41%,9.57%,9.77%,9.71%,9.56%,9.87%,9.83%,10.73%,11.50%,13.40%,26140,27549,28173,28562,29303,32465,32317,39154,47093,49138,31713 +,South Dakota,7.94%,7.99%,7.60%,7.93%,8.06%,7.68%,8.24%,8.52%,8.53%,8.74%,9.50%,10.44%,10.64%,10.30%,10.53%,10.46%,9.93%,10.91%,11.62%,12.05%,12.54%,14.30%,33327,34393,37579,37734,39235,43577,41714,41954,42845,43772,29163 +,New Mexico,9.61%,9.31%,9.86%,10.67%,9.83%,9.74%,10.86%,11.67%,11.96%,11.98%,13.35%,14.07%,14.68%,15.30%,16.15%,15.63%,15.50%,16.19%,16.40%,16.23%,16.16%,18.03%,50724,57757,63723,66476,68407,73469,73669,75800,76969,78861,50206 +,New Hampshire,5.27%,5.26%,5.77%,6.40%,6.66%,7.01%,7.08%,7.23%,7.52%,7.78%,8.26%,7.01%,7.96%,8.90%,9.57%,9.71%,10.04%,10.07%,10.21%,10.69%,11.06%,12.42%,55222,60393,61799,61663,61474,62469,62405,60685,60614,61756,42397 +,Arizona,7.33%,7.38%,8.05%,8.54%,8.25%,7.40%,8.60%,9.14%,9.36%,9.75%,11.22%,11.53%,11.71%,12.22%,12.52%,11.88%,11.11%,12.32%,12.77%,13.12%,13.74%,15.92%,69228,80788,83379,84289,89510,114852,133110,151536,168394,176248,108353 +,Utah,5.25%,6.40%,6.92%,7.03%,6.92%,6.60%,7.30%,6.82%,6.47%,5.57%,7.09%,10.06%,10.24%,10.38%,11.15%,11.44%,10.98%,11.91%,11.72%,11.58%,11.39%,13.19%,43652,46521,47829,50231,53054,64855,59790,65887,72097,137867,112468 +,Oregon,7.12%,7.73%,8.04%,8.22%,8.19%,6.72%,8.26%,8.50%,8.79%,9.00%,10.32%,12.67%,12.83%,12.83%,12.95%,12.81%,10.50%,12.68%,13.10%,13.56%,13.70%,15.61%,144697,150821,162563,170416,178413,242521,204267,207327,214706,223410,147743 +,Wyoming,6.84%,7.87%,8.07%,8.54%,8.73%,8.64%,8.93%,8.17%,8.19%,7.97%,8.94%,11.29%,12.02%,12.16%,12.60%,12.88%,12.68%,13.02%,12.42%,12.57%,13.57%,15.72%,11002,11186,11842,12408,12415,13917,14151,16023,17365,19553,12241 +,California,5.18%,4.93%,5.31%,5.55%,5.68%,5.40%,6.32%,6.79%,7.45%,9.28%,11.07%,11.64%,11.09%,11.68%,12.66%,12.86%,11.69%,12.91%,13.47%,14.01%,14.88%,16.96%,311139,419561,470075,554733,653349,827079,827400,885278,1016938,1033840,643870 +,Vermont,4.49%,4.92%,5.00%,4.83%,5.12%,4.99%,4.30%,3.76%,4.18%,4.75%,5.59%,7.15%,7.85%,8.19%,8.13%,8.43%,8.36%,8.82%,8.86%,9.04%,9.25%,10.37%,32198,32042,32129,35742,41624,45270,44911,46070,46723,46235,30521 +,Nevada,6.25%,5.53%,5.27%,5.51%,3.92%,4.00%,5.27%,5.65%,6.35%,6.95%,9.21%,10.61%,10.87%,11.16%,11.73%,8.61%,8.76%,10.75%,11.35%,12.13%,12.64%,15.69%,38276,48823,63422,68973,100084,107363,90582,90178,96320,107640,59407 +,Colorado,5.58%,6.05%,6.23%,6.51%,6.54%,5.83%,6.56%,6.34%,6.41%,6.64%,7.70%,9.77%,10.42%,10.53%,10.52%,10.35%,9.26%,10.41%,10.34%,10.73%,11.01%,12.47%,154738,171742,189921,201546,218866,280985,271327,294222,322103,325728,211729 +,Washington,5.57%,6.20%,6.81%,7.38%,7.92%,7.45%,7.26%,7.46%,7.79%,8.06%,9.30%,9.45%,9.95%,10.46%,10.92%,11.36%,10.73%,10.83%,10.79%,11.11%,11.48%,13.28%,98224,106854,115630,119551,124720,141703,153513,181583,190080,190551,115230 +,Alaska,7.71%,8.98%,8.89%,9.31%,8.82%,8.70%,9.06%,8.38%,8.82%,8.27%,9.23%,11.87%,13.59%,13.33%,13.42%,12.95%,12.23%,13.49%,13.19%,14.14%,12.92%,15.18%,1154,1280,1440,1461,1452,1529,1357,1349,1315,1269,672 +,Hawaii,6.80%,7.33%,7.61%,7.96%,7.95%,6.73%,7.67%,8.28%,8.64%,8.85%,10.33%,12.77%,13.63%,13.81%,14.04%,13.88%,11.75%,13.34%,14.33%,14.79%,15.50%,17.92%,60017,61020,60698,61523,60055,77583,70252,71660,74231,72671,42208 +,District of Columbia,4.50%,4.20%,4.46%,4.90%,4.12%,2.32%,5.37%,6.23%,5.85%,6.23%,8.51%,9.19%,8.95%,8.70%,8.55%,7.46%,7.15%,10.11%,10.86%,9.90%,10.80%,14.46%,1622,1855,2333,2572,3256,9689,12206,12864,15954,14921,7593 +,"Total: Total includes all data under the ≥ 45 and < 55 Years bucket, including data from rows not currently displayed.",7.15%,7.46%,7.80%,8.18%,8.41%,8.10%,8.70%,8.95%,9.18%,9.62%,10.83%,11.74%,12.32%,12.86%,13.42%,13.66%,13.20%,14.11%,14.59%,15.00%,15.47%,17.46%,8574976,9640376,10429875,11080776,11640464,13730783,13957613,14903238,15924533,16354154,10722909 +≥ 55 and < 65 Years,Puerto Rico,13.02%,13.22%,14.48%,15.18%,14.64%,12.45%,12.09%,7.93%,10.93%,16.60%,22.18%,24.50%,26.07%,29.98%,28.64%,28.51%,24.40%,26.96%,32.69%,31.62%,31.54%,36.77%,453,537,587,639,649,787,827,4075,9276,11712,7735 +,Ohio,11.48%,12.20%,12.64%,13.12%,13.78%,13.89%,14.79%,15.24%,15.75%,16.06%,16.58%,18.41%,19.45%,20.17%,20.88%,21.36%,21.07%,21.80%,22.82%,23.46%,24.08%,26.02%,885334,925980,965947,986745,992761,1081979,1071339,1164645,1192795,1192052,891998 +,Kentucky,11.62%,12.57%,13.14%,13.78%,14.50%,14.80%,16.09%,16.86%,17.19%,17.29%,18.27%,18.91%,19.80%,19.97%,20.32%,20.88%,21.52%,23.18%,24.52%,25.41%,26.04%,27.91%,223333,253408,274533,286916,292575,337017,349623,357224,359117,358297,262674 +,West Virginia,6.69%,5.35%,5.56%,12.10%,14.81%,15.82%,16.74%,15.37%,15.02%,15.34%,16.57%,18.91%,19.77%,22.34%,23.75%,24.54%,24.02%,25.01%,24.65%,26.21%,27.53%,30.52%,59352,69355,84025,92458,97172,106465,106875,124866,139597,144490,102198 +,Pennsylvania,8.73%,9.38%,10.13%,10.48%,10.78%,10.35%,11.16%,11.67%,12.06%,12.98%,14.15%,14.92%,16.01%,16.86%,17.34%,17.98%,17.84%,18.81%,19.54%,20.07%,20.80%,22.80%,681225,824156,945773,1019997,1040522,1191112,1163543,1176006,1188462,1177645,765887 +,Michigan,11.51%,11.90%,12.94%,13.38%,13.11%,13.00%,13.57%,13.44%,12.85%,13.50%,14.44%,18.49%,18.34%,18.93%,19.33%,19.07%,18.93%,19.82%,19.83%,20.14%,21.38%,23.26%,375845,427829,452182,459528,579793,630001,602272,607341,718142,760985,568802 +,Mississippi,12.05%,11.77%,11.34%,12.31%,13.68%,13.48%,14.14%,14.70%,15.32%,16.10%,18.00%,20.86%,20.34%,19.42%,19.62%,21.02%,20.93%,22.35%,23.39%,24.69%,26.22%,29.49%,86247,96995,129986,167909,169071,194959,205457,212421,220834,223684,154155 +,Alabama,12.20%,12.71%,13.61%,13.34%,13.10%,11.17%,11.94%,12.96%,13.80%,15.40%,17.97%,19.02%,19.44%,19.60%,19.96%,20.62%,20.84%,23.12%,24.42%,25.49%,26.55%,30.13%,38022,41713,43990,51516,53966,81648,86254,91785,92519,91040,57251 +,North Carolina,12.46%,12.93%,13.30%,13.89%,14.75%,14.11%,15.38%,16.02%,16.69%,16.89%,18.24%,19.72%,19.92%,20.32%,21.27%,21.85%,20.96%,22.17%,22.91%,23.72%,24.40%,26.75%,512329,561106,610963,675844,691913,845574,873305,907547,994540,1015540,739543 +,Arkansas,7.41%,9.82%,10.78%,10.92%,11.12%,11.71%,12.29%,12.79%,12.73%,13.27%,14.80%,18.12%,19.96%,21.18%,21.72%,21.91%,21.78%,22.16%,23.00%,23.43%,24.43%,26.95%,79403,92787,98877,109519,113783,124361,120047,121180,124306,122115,82940 +,Louisiana,13.39%,13.41%,12.81%,13.01%,13.35%,12.79%,13.15%,13.33%,13.54%,13.72%,14.39%,21.00%,21.59%,22.01%,22.39%,22.54%,21.53%,22.54%,23.32%,24.54%,25.50%,27.62%,194414,210807,233950,251321,258819,289919,307704,319004,337523,339260,247563 +,North Dakota,9.95%,9.81%,10.16%,10.60%,11.03%,10.90%,11.16%,10.89%,11.46%,11.95%,12.86%,16.02%,16.39%,16.50%,16.83%,17.11%,17.31%,17.88%,18.21%,19.04%,19.82%,22.08%,57844,60368,61923,64019,64828,66394,66025,66221,70068,69233,50646 +,Indiana,12.75%,13.20%,13.60%,14.93%,15.85%,15.78%,15.78%,15.75%,16.01%,16.93%,18.00%,19.49%,20.16%,20.61%,21.33%,22.21%,22.57%,23.11%,23.82%,24.58%,25.52%,27.65%,242083,265988,285679,304209,308879,342171,350683,353059,355063,353863,252653 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,27,32,33,34,25,22,27,29,32,27,10 or fewer +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer +,Rhode Island,7.68%,8.82%,9.61%,10.35%,11.00%,11.14%,11.52%,12.97%,13.53%,14.05%,14.78%,16.53%,17.58%,18.06%,18.54%,18.78%,18.42%,18.88%,19.73%,20.30%,21.40%,22.64%,64433,73716,76423,79211,77554,82809,88055,90846,98992,93516,63105 +,Iowa,10.97%,11.09%,11.27%,11.58%,11.80%,11.88%,12.53%,13.23%,14.15%,15.14%,16.22%,16.94%,17.40%,17.54%,17.85%,17.88%,17.89%,18.55%,19.59%,20.76%,22.18%,24.76%,155922,161861,167643,172594,176377,187794,183731,190280,196882,214138,154000 +,Delaware,8.10%,9.65%,10.85%,11.71%,13.64%,14.98%,16.24%,15.75%,16.00%,17.24%,17.44%,13.78%,16.69%,18.47%,19.39%,19.85%,20.35%,21.89%,22.35%,23.25%,24.05%,25.38%,23729,33663,38436,42597,44677,52337,52326,55374,56509,59515,42374 +,South Carolina,10.59%,11.61%,12.61%,13.65%,14.11%,13.19%,13.80%,14.36%,15.38%,15.40%,16.30%,17.27%,18.77%,19.86%,20.98%,21.24%,20.32%,21.69%,22.57%,23.78%,24.45%,26.34%,185963,227907,244623,277424,294337,373273,421046,467364,484179,489376,363224 +,Massachusetts,8.98%,9.13%,9.45%,10.20%,10.45%,10.19%,10.92%,11.69%,12.37%,13.20%,14.38%,16.62%,16.84%,16.99%,17.51%,17.76%,17.11%,17.91%,18.61%,19.07%,19.62%,21.71%,186671,240839,291317,305825,308230,341881,378256,403546,453100,482636,354454 +,Maryland,9.69%,9.74%,10.31%,11.71%,12.20%,10.90%,12.51%,12.84%,13.10%,13.84%,15.68%,17.15%,18.37%,19.31%,20.45%,20.36%,17.99%,20.61%,21.39%,22.09%,22.85%,25.15%,109154,134153,162436,191678,211279,267715,243840,248915,254164,254958,167831 +,Tennessee,10.26%,10.07%,10.28%,10.45%,10.40%,10.29%,10.85%,10.92%,10.80%,12.42%,14.97%,18.89%,18.78%,19.33%,19.77%,20.07%,19.88%,20.61%,20.98%,21.48%,23.89%,27.44%,76794,100323,113837,121675,128870,149165,156165,163915,189596,219989,146479 +,Wisconsin,11.61%,11.83%,12.21%,12.38%,12.50%,12.48%,13.50%,13.96%,14.47%,15.26%,16.48%,16.37%,16.43%,16.58%,16.78%,16.88%,17.09%,18.20%,18.84%,19.50%,20.35%,22.35%,372354,388235,401013,413957,431785,470665,452975,450167,445256,433939,317059 +,Missouri,9.05%,10.76%,12.02%,12.60%,13.18%,12.68%,12.98%,13.36%,14.34%,14.80%,16.22%,18.23%,20.01%,20.66%,20.85%,21.09%,20.62%,21.06%,21.58%,22.56%,23.53%,26.07%,71100,84815,93507,99652,102238,112361,113038,129317,133664,132403,91554 +,Illinois,11.05%,11.71%,12.06%,12.32%,13.03%,13.43%,14.43%,14.71%,15.21%,15.90%,17.24%,13.54%,14.12%,15.25%,17.73%,19.20%,19.89%,21.37%,22.00%,22.78%,23.82%,26.33%,483968,512648,556234,604315,620902,679065,658599,679737,700319,697889,486440 +,Idaho,7.52%,8.16%,8.78%,9.35%,10.07%,11.14%,12.13%,12.67%,13.04%,12.90%,14.40%,13.07%,13.89%,14.46%,14.76%,15.26%,16.01%,17.40%,18.17%,18.71%,18.86%,21.35%,65262,72828,76126,83226,87003,95610,105290,107875,111203,112361,76856 +,Connecticut,4.67%,5.75%,6.32%,6.92%,7.54%,7.94%,8.83%,9.49%,10.51%,11.51%,12.47%,14.37%,15.63%,16.38%,16.80%,17.02%,16.75%,17.66%,18.32%,19.23%,19.89%,21.73%,221104,259479,289008,309143,332873,369056,357827,356819,364389,380042,277975 +,Georgia,12.04%,11.57%,11.74%,12.67%,13.45%,12.79%,13.20%,12.97%,13.68%,14.21%,16.17%,20.36%,19.48%,19.99%,21.23%,22.05%,21.01%,21.25%,21.92%,23.03%,24.01%,27.15%,212706,267087,326025,369069,380297,451232,510232,581641,614161,625392,407419 +,Minnesota,11.13%,11.22%,11.46%,11.98%,12.38%,11.81%,12.71%,13.20%,13.66%,14.36%,15.32%,15.49%,15.53%,15.72%,16.14%,16.54%,16.05%,17.46%,18.17%,18.98%,20.07%,22.40%,269879,285847,296991,306813,304972,342493,313276,312509,309893,298211,199456 +,Florida,7.11%,7.44%,7.63%,8.17%,8.18%,7.42%,6.96%,8.32%,9.38%,11.61%,13.62%,17.19%,17.67%,18.04%,18.34%,18.23%,17.67%,18.19%,19.28%,20.44%,21.88%,24.68%,329587,373740,397338,414008,438036,580319,835155,1014026,1082866,1165721,765801 +,Virginia,11.98%,11.98%,12.35%,12.42%,12.78%,12.76%,13.32%,12.87%,13.12%,13.39%,15.17%,17.78%,18.06%,18.60%,18.93%,19.66%,19.78%,20.77%,20.74%,20.99%,21.52%,24.24%,372341,444263,469073,501953,522815,578210,590613,631552,636143,636008,427589 +,Kansas,11.16%,11.81%,12.47%,13.02%,13.35%,12.84%,13.11%,12.46%,13.02%,13.83%,14.36%,18.82%,19.26%,19.47%,19.88%,19.96%,19.26%,19.80%,20.04%,20.72%,21.74%,23.39%,77457,82454,87211,89973,90509,97304,94967,114137,121215,125506,93505 +,Maine,9.92%,9.32%,10.14%,10.44%,11.13%,10.84%,11.64%,12.19%,12.97%,12.91%,14.17%,11.80%,12.50%,14.34%,14.82%,15.27%,14.58%,16.08%,16.61%,17.52%,17.61%,19.34%,63601,83510,89515,98554,99133,112052,111472,107514,106895,106403,75703 +,Texas,9.88%,10.32%,11.18%,11.46%,11.84%,10.99%,11.48%,12.22%,12.75%,13.66%,15.24%,19.26%,21.02%,22.07%,22.43%,23.14%,22.13%,23.57%,24.35%,24.74%,25.55%,28.37%,527444,694641,796234,876096,923763,1168200,1133834,1180322,1300507,1368006,912786 +,Oklahoma,7.63%,7.92%,8.81%,9.18%,9.50%,9.49%,10.06%,9.99%,10.40%,12.47%,14.63%,17.68%,19.21%,20.67%,21.65%,22.21%,22.01%,22.76%,22.99%,23.39%,24.18%,27.12%,88136,122349,149962,161030,162202,170809,172790,191554,203887,204245,135785 +,New Jersey,6.70%,7.31%,7.77%,8.60%,9.72%,9.12%,10.37%,11.30%,12.19%,13.10%,14.92%,13.86%,15.00%,16.28%,17.16%,17.99%,16.94%,18.32%,19.24%,20.50%,21.71%,24.64%,89762,122147,182379,231778,257196,342062,380376,426822,464351,475535,307758 +,Nebraska,10.27%,11.10%,10.34%,10.72%,11.90%,11.84%,12.06%,12.09%,12.10%,12.74%,13.99%,17.45%,17.74%,17.46%,18.06%,18.82%,18.82%,19.06%,19.70%,20.10%,21.19%,23.43%,38102,45610,64330,72779,77282,84033,85686,87295,96603,99569,69092 +,New York,10.78%,11.09%,10.74%,11.00%,11.18%,11.33%,12.59%,12.95%,13.22%,14.04%,16.03%,16.19%,17.10%,17.84%,19.13%,19.33%,18.85%,20.52%,21.29%,21.82%,22.51%,24.93%,539331,611624,691846,796606,897404,1113758,1092833,1123436,1165826,1180506,800440 +,Montana,8.26%,8.83%,9.35%,9.63%,9.90%,9.96%,10.26%,10.01%,10.19%,11.19%,12.83%,12.63%,13.01%,13.29%,13.54%,13.48%,13.31%,13.87%,13.99%,15.49%,16.77%,19.44%,32902,35553,36930,37765,37554,39998,38462,45233,54191,54750,36307 +,South Dakota,11.31%,10.91%,10.08%,10.59%,10.82%,10.29%,11.31%,11.41%,11.83%,12.27%,13.82%,15.21%,15.00%,14.17%,14.51%,14.45%,13.77%,15.11%,15.84%,16.53%,17.65%,20.42%,37408,40552,46768,47691,49039,53882,50174,48589,47691,46933,31594 +,New Mexico,12.89%,12.04%,12.56%,13.37%,12.38%,12.17%,13.69%,14.90%,15.59%,16.04%,17.92%,18.84%,18.72%,19.41%,20.37%,19.96%,19.56%,20.75%,21.21%,21.29%,21.71%,24.17%,58632,70284,79568,84817,87181,93988,93083,94035,93663,93914,62036 +,New Hampshire,7.64%,7.38%,8.25%,8.81%,9.22%,9.48%,9.92%,10.04%,10.52%,11.14%,12.19%,10.38%,11.46%,12.90%,13.46%,13.69%,14.05%,14.24%,14.51%,14.93%,15.77%,17.74%,63989,73354,78299,81275,83154,86783,87596,86079,86308,88827,63046 +,Arizona,9.46%,9.25%,9.97%,10.81%,10.58%,9.56%,11.20%,11.75%,12.00%,12.72%,14.00%,15.19%,15.25%,15.82%,16.22%,15.78%,14.95%,16.70%,17.15%,17.36%,18.30%,20.48%,80613,97141,103739,107145,112687,141648,157408,175007,191283,199307,129045 +,Utah,6.90%,8.17%,8.72%,9.04%,9.10%,8.72%,9.76%,9.69%,9.43%,8.32%,10.57%,14.32%,14.29%,14.42%,15.64%,16.19%,15.81%,17.06%,17.52%,17.64%,17.45%,19.87%,47332,50635,52075,53800,54177,62599,56972,60587,63795,125678,104248 +,Oregon,9.56%,10.30%,10.84%,11.02%,11.44%,9.73%,11.83%,12.39%,12.95%,13.46%,15.16%,17.35%,17.57%,17.57%,17.80%,18.03%,15.43%,18.23%,18.96%,19.70%,20.32%,22.54%,163090,171248,183857,191094,193285,249050,213306,212115,215568,221375,153196 +,Wyoming,9.20%,9.65%,10.08%,10.86%,11.32%,11.54%,11.84%,11.22%,10.98%,10.85%,12.17%,15.73%,16.04%,16.14%,16.55%,16.85%,16.72%,17.09%,16.73%,17.05%,18.10%,20.64%,14714,15701,16932,18012,18217,19175,19049,20946,21775,23668,15239 +,California,7.70%,7.07%,7.47%,7.83%,8.20%,7.92%,9.14%,9.76%,10.79%,13.44%,15.80%,17.19%,16.19%,16.77%,18.29%,18.76%,17.36%,19.03%,19.76%,20.70%,21.96%,24.55%,330930,462771,532732,634804,730265,898740,898292,952104,1079326,1095079,713761 +,Vermont,5.91%,6.33%,6.30%,6.28%,6.99%,6.89%,5.94%,5.36%,6.01%,6.99%,8.32%,10.17%,10.66%,10.95%,11.08%,11.95%,11.92%,12.42%,12.72%,13.12%,13.76%,15.45%,41860,43348,45075,50185,56488,60707,60025,60109,60206,59200,40325 +,Nevada,8.96%,8.19%,8.04%,8.28%,6.76%,6.72%,8.12%,8.32%,9.26%,10.31%,13.25%,15.30%,15.55%,16.61%,17.29%,14.33%,14.02%,16.32%,16.80%,17.82%,18.89%,22.56%,43952,55987,70309,77299,98874,111990,98871,100098,105616,120287,72098 +,Colorado,7.88%,8.47%,8.78%,9.24%,9.49%,8.58%,9.45%,9.29%,9.53%,10.09%,11.50%,14.02%,14.81%,15.24%,15.19%,15.10%,13.73%,15.25%,15.37%,15.96%,16.69%,18.63%,169816,190393,210298,224563,238731,295054,282060,297612,326772,326776,220771 +,Washington,8.44%,8.94%,9.75%,10.40%,11.02%,10.41%,10.30%,10.64%,11.31%,11.80%,13.55%,14.51%,14.99%,15.45%,15.82%,16.33%,15.49%,15.71%,15.86%,16.33%,17.05%,19.58%,102152,115741,129137,135659,141061,156898,165817,191573,197538,197420,125218 +,Alaska,9.21%,8.75%,10.18%,11.25%,10.89%,9.34%,10.73%,10.71%,11.44%,13.06%,16.69%,14.49%,14.60%,15.75%,16.17%,16.09%,14.62%,16.94%,16.86%,18.20%,19.53%,23.01%,1325,1623,1905,1929,1846,2024,1789,1821,1731,1623,869 +,Hawaii,9.00%,9.47%,9.81%,10.36%,10.64%,9.36%,10.64%,11.74%,12.47%,12.73%,14.39%,17.45%,18.29%,18.83%,19.20%,19.25%,17.06%,19.19%,20.55%,21.54%,22.61%,25.73%,65948,68978,70255,72850,71769,89453,81717,83201,85388,84131,51825 +,District of Columbia,6.09%,5.54%,5.52%,6.65%,6.46%,3.84%,7.84%,9.95%,10.14%,10.90%,13.80%,12.61%,12.68%,12.69%,13.09%,12.83%,12.66%,16.74%,18.59%,17.85%,19.51%,22.85%,1428,1624,1955,2254,2463,8926,12480,12859,14967,14184,7796 +,"Total: Total includes all data under the ≥ 55 and < 65 Years bucket, including data from rows not currently displayed.",10.22%,10.53%,10.91%,11.40%,11.81%,11.47%,12.21%,12.61%,13.10%,13.92%,15.42%,17.08%,17.70%,18.33%,19.06%,19.48%,18.99%,20.15%,20.85%,21.58%,22.46%,24.88%,9417263,10861755,12029806,13038366,13739435,16031237,16296123,17208001,18186475,18614262,12840004 +65 Years or more,Puerto Rico,7.49%,9.59%,11.62%,11.67%,13.72%,12.95%,11.47%,7.15%,10.40%,15.36%,21.39%,24.93%,26.49%,29.87%,30.10%,30.04%,28.82%,29.22%,34.69%,32.97%,32.78%,39.07%,694,970,981,917,809,1027,1160,4938,10419,13596,9209 +,Ohio,14.03%,14.83%,15.19%,15.78%,16.45%,16.48%,17.28%,17.78%,18.36%,18.61%,18.71%,23.74%,25.23%,26.33%,27.36%,27.80%,27.42%,27.94%,29.05%,29.71%,30.23%,31.19%,1126148,1201578,1277915,1335853,1391013,1576141,1625444,1848320,1951037,2015239,1693050 +,Kentucky,13.52%,14.81%,15.47%,16.18%,17.09%,17.16%,18.24%,19.00%,19.38%,19.46%,20.20%,23.86%,25.48%,25.67%,26.02%,26.65%,27.03%,28.43%,29.58%,30.33%,30.79%,31.76%,282890,323650,357932,383276,398711,463764,498978,527049,545270,562178,455215 +,West Virginia,6.95%,5.42%,5.44%,13.53%,16.72%,17.64%,18.63%,17.00%,16.83%,17.40%,18.52%,23.01%,23.92%,27.57%,29.58%,30.68%,29.86%,30.63%,29.88%,31.58%,33.12%,35.54%,78231,96462,118398,131686,142831,160635,169415,209067,242310,259400,202724 +,Pennsylvania,11.35%,12.21%,13.03%,13.41%,13.79%,13.08%,13.86%,14.35%,14.72%,15.68%,16.72%,20.29%,21.76%,22.86%,23.61%,24.40%,24.17%,25.01%,25.58%,25.94%,26.54%,28.14%,912137,1119152,1321547,1452057,1519292,1786050,1811213,1901342,1986749,2049268,1468044 +,Michigan,14.53%,15.13%,16.49%,17.07%,16.69%,16.43%,16.54%,16.22%,15.45%,16.23%,17.21%,24.99%,25.23%,26.15%,26.67%,26.42%,26.22%,26.74%,26.51%,26.45%,27.89%,29.72%,491393,565842,603750,631380,820519,912090,926315,965072,1190254,1284833,1038427 +,Mississippi,13.73%,13.59%,12.54%,13.76%,15.25%,15.08%,15.76%,16.30%,16.89%,17.81%,19.23%,25.77%,25.45%,24.11%,24.64%,26.14%,25.97%,27.61%,28.78%,30.14%,31.83%,34.22%,123505,139921,197977,253804,260670,303596,326180,347794,373763,387224,297775 +,Alabama,14.13%,14.49%,15.61%,14.91%,14.60%,12.66%,13.48%,14.21%,15.17%,16.68%,18.92%,23.73%,23.68%,24.28%,24.08%,25.12%,25.15%,27.52%,28.60%,29.47%,30.57%,33.40%,51635,58456,62686,77451,83432,127504,136869,148922,157368,161449,115106 +,North Carolina,14.74%,15.41%,15.63%,16.32%,17.31%,16.40%,17.70%,18.27%,18.94%,19.04%,19.71%,25.35%,25.76%,26.26%,27.46%,28.24%,26.93%,28.26%,28.79%,29.49%,30.10%,31.17%,699910,779806,867037,968763,1003139,1253653,1314762,1413482,1583202,1657903,1369818 +,Arkansas,7.90%,10.09%,11.00%,11.37%,11.85%,12.08%,12.52%,12.64%,12.57%,12.72%,14.69%,22.26%,23.57%,24.61%,25.33%,25.60%,25.21%,25.32%,25.76%,26.10%,26.90%,29.41%,112155,131188,141660,161444,167996,187914,188080,197715,209435,214818,150950 +,Louisiana,16.32%,16.28%,15.36%,15.64%,15.94%,15.06%,14.96%,15.16%,15.56%,16.04%,16.49%,26.36%,27.45%,28.40%,29.25%,29.45%,27.94%,28.59%,29.29%,30.56%,31.54%,32.82%,236927,262453,300924,332215,351315,396232,443964,478439,529763,553784,458196 +,North Dakota,14.13%,13.39%,13.52%,13.85%,13.98%,13.84%,13.62%,13.03%,13.54%,14.32%,15.18%,23.85%,24.19%,24.02%,24.14%,24.14%,23.90%,24.00%,24.00%,24.63%,25.39%,27.05%,71410,75688,79322,84572,89113,94661,99415,104757,115601,119404,98494 +,Indiana,15.54%,15.62%,15.90%,17.56%,18.53%,18.33%,18.11%,17.98%,18.13%,19.12%,19.91%,25.97%,26.36%,26.71%,27.56%,28.26%,28.37%,28.73%,29.24%,29.89%,30.67%,32.02%,308683,343106,374267,404142,421772,484973,520666,544343,567636,586195,464468 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,51,55,59,68,48,48,71,91,94,70,40 +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer +,Rhode Island,8.89%,10.68%,11.75%,12.82%,13.79%,13.91%,14.13%,15.66%,16.02%,16.55%,17.09%,23.18%,24.91%,25.50%,26.22%,26.76%,25.88%,25.87%,26.72%,27.33%,28.65%,29.48%,86742,98936,104084,109940,110856,122745,132473,142896,159355,158780,119946 +,Iowa,12.97%,12.96%,13.01%,13.31%,13.71%,13.44%,13.91%,14.27%,14.89%,16.06%,16.76%,22.61%,22.77%,22.95%,23.11%,23.12%,22.74%,23.05%,23.61%,24.34%,25.82%,27.51%,206113,218889,230915,244210,254287,278725,287590,306971,330802,380600,306324 +,Delaware,9.17%,11.75%,13.59%,14.83%,17.43%,18.37%,19.24%,18.70%,18.89%,19.12%,18.58%,18.72%,22.83%,25.31%,26.50%,27.35%,27.49%,28.51%,28.64%,29.15%,28.98%,29.47%,35815,49835,56674,63370,67738,80634,85118,94010,101308,118850,100540 +,South Carolina,11.68%,13.26%,14.53%,15.69%,16.08%,14.76%,15.56%,16.34%,17.44%,17.49%,17.93%,21.20%,23.60%,25.09%,26.35%,26.41%,24.84%,26.75%,28.00%,29.17%,29.65%,30.58%,258357,323358,351605,409228,449872,586790,684809,776342,830840,864753,729421 +,Massachusetts,11.56%,11.51%,12.30%,13.38%,13.83%,13.46%,13.99%,14.66%,15.33%,16.25%,17.42%,23.37%,23.15%,23.93%,24.70%,24.99%,24.09%,24.68%,25.34%,25.48%,26.13%,27.89%,234914,309509,369390,391715,402517,454817,531726,584881,700166,780833,633786 +,Maryland,10.53%,10.91%,11.90%,13.96%,14.94%,13.84%,14.31%,14.35%,14.67%,15.45%,17.17%,20.23%,22.45%,24.06%,26.38%,26.80%,24.81%,26.12%,26.87%,27.51%,28.19%,29.72%,148305,187428,231950,270448,299241,365524,372823,391633,412670,429079,311956 +,Tennessee,10.40%,10.34%,10.43%,10.59%,10.95%,11.09%,11.62%,11.64%,11.45%,13.09%,15.58%,23.26%,22.90%,23.66%,24.26%,24.81%,24.63%,25.38%,25.55%,25.71%,27.95%,30.98%,109188,143604,164952,180382,194049,232132,249972,270803,325041,387511,283025 +,Wisconsin,15.30%,15.25%,15.51%,15.78%,15.88%,15.59%,16.60%,16.72%,17.02%,17.76%,18.76%,23.61%,23.40%,23.42%,23.52%,23.52%,23.61%,24.62%,24.85%,25.17%,25.71%,27.01%,439494,471651,500766,528448,566679,638305,642036,671916,699494,716286,589269 +,Missouri,9.55%,11.69%,13.24%,14.19%,15.01%,13.84%,14.66%,15.13%,16.00%,16.27%,17.72%,21.39%,23.97%,25.28%,25.92%,26.26%,24.89%,25.71%,26.33%,27.08%,27.83%,29.82%,106437,127571,142661,155811,165209,188891,192765,222061,234060,241131,185447 +,Illinois,12.64%,13.45%,13.93%,14.34%,15.14%,15.13%,16.03%,16.03%,16.37%,17.08%,17.93%,17.10%,17.83%,19.50%,23.10%,25.18%,25.76%,27.32%,27.71%,28.23%,29.24%,30.71%,673451,725667,798823,880541,918719,1043949,1025712,1096666,1167963,1199249,941313 +,Idaho,10.09%,11.57%,12.37%,12.67%,13.45%,14.39%,15.18%,15.75%,16.16%,15.69%,16.67%,19.34%,20.34%,20.62%,20.82%,21.28%,21.63%,22.92%,23.73%,24.18%,24.01%,25.59%,92581,104479,113105,128051,136563,152143,176969,187500,200844,211734,169086 +,Connecticut,5.89%,7.26%,8.03%,8.85%,9.92%,10.40%,11.30%,12.02%,13.39%,14.54%,15.02%,20.01%,21.63%,22.61%,23.17%,23.46%,23.19%,23.85%,24.21%,25.18%,25.83%,26.84%,296621,355439,396917,429096,459873,506824,517774,536427,567500,611134,506220 +,Georgia,13.98%,13.02%,13.31%,14.61%,15.59%,14.82%,14.86%,14.58%,15.41%,15.79%,17.20%,25.65%,24.36%,25.03%,26.69%,27.68%,26.63%,26.31%,27.27%,28.53%,29.41%,31.33%,270104,357078,451821,516033,537732,652194,772724,892193,963784,1008442,756006 +,Minnesota,14.41%,14.49%,14.85%,15.49%,15.88%,15.07%,15.51%,15.80%,16.06%,16.50%,17.00%,21.59%,21.66%,21.98%,22.48%,22.75%,22.07%,23.13%,23.49%,23.99%,24.69%,26.25%,356875,380413,404932,429949,442162,509506,492732,514920,533119,539707,406864 +,Florida,7.64%,8.37%,8.63%,9.21%,9.05%,8.37%,8.12%,9.60%,10.67%,12.38%,13.86%,20.96%,21.60%,21.99%,22.49%,22.10%,21.40%,22.16%,23.86%,25.13%,26.63%,28.40%,440580,521086,568496,608620,672233,916225,1393396,1716993,1888959,2139526,1598661 +,Virginia,13.20%,13.67%,14.14%,14.38%,14.71%,14.64%,15.20%,14.56%,14.79%,15.04%,16.30%,22.64%,23.30%,24.08%,24.66%,25.55%,25.57%,26.65%,26.66%,26.74%,27.00%,28.68%,524416,635063,686031,739742,776310,868826,912989,1008784,1041463,1073547,818154 +,Kansas,12.74%,13.70%,14.53%,15.29%,15.60%,14.91%,15.27%,14.76%,15.37%,16.31%,16.68%,22.52%,23.51%,24.21%,24.52%,24.68%,24.01%,24.63%,25.12%,25.84%,27.16%,28.26%,109522,120356,129847,138271,145133,161530,165585,201265,221427,236082,195872 +,Maine,12.93%,12.20%,13.29%,13.55%,14.13%,13.83%,14.58%,14.88%,15.54%,15.19%,16.07%,16.68%,17.33%,20.04%,20.45%,20.61%,19.90%,21.53%,21.37%,21.89%,21.38%,22.44%,91898,121841,132987,151629,158479,180619,194632,194798,203458,211025,166894 +,Texas,10.57%,11.02%,12.12%,12.58%,13.11%,11.99%,12.21%,12.90%,13.37%,14.23%,15.37%,22.31%,23.53%,25.54%,26.54%,27.53%,26.09%,27.50%,28.13%,28.22%,29.41%,31.43%,625298,864890,1024408,1156245,1237933,1611366,1624643,1749718,1990477,2165583,1610849 +,Oklahoma,8.49%,8.82%,9.69%,10.23%,10.69%,10.70%,10.91%,10.52%,10.66%,13.05%,14.98%,22.02%,23.70%,25.66%,26.79%,27.48%,26.94%,27.25%,26.96%,27.24%,27.94%,29.79%,132745,184602,222466,244996,252088,269269,277654,315481,346421,359850,268183 +,New Jersey,7.85%,8.72%,9.33%,10.41%,11.79%,10.73%,11.85%,12.86%,14.16%,15.68%,17.37%,18.19%,19.68%,21.87%,23.33%,24.62%,23.04%,24.38%,25.25%,26.70%,28.32%,30.64%,121230,166668,262455,333865,367473,498144,572336,668418,745450,789816,572208 +,Nebraska,9.95%,10.89%,9.84%,10.61%,12.25%,12.34%,12.56%,12.47%,12.86%,13.79%,15.06%,19.92%,20.12%,19.75%,21.16%,22.42%,22.44%,22.86%,23.04%,23.54%,24.74%,26.71%,53619,65780,101606,119566,129595,144953,153670,163528,185700,195839,146845 +,New York,12.98%,13.42%,13.11%,13.41%,13.83%,14.05%,15.02%,15.19%,15.45%,16.42%,18.27%,21.18%,22.62%,23.74%,25.19%,25.93%,25.29%,26.62%,27.14%,27.60%,28.25%,30.10%,758568,862381,977443,1115983,1234599,1541387,1606796,1732142,1870442,1969225,1471122 +,Montana,11.01%,12.05%,12.67%,12.95%,13.44%,13.13%,13.08%,12.32%,12.06%,13.24%,14.80%,17.87%,18.70%,18.90%,18.90%,19.00%,18.30%,18.58%,18.45%,19.86%,21.13%,23.19%,40307,45808,50098,53256,55101,60379,61773,79294,100148,105916,80354 +,South Dakota,15.38%,14.68%,13.53%,14.33%,14.53%,13.52%,14.06%,13.97%,14.19%,14.72%,16.22%,22.48%,21.94%,20.78%,21.12%,21.14%,19.81%,20.75%,21.14%,21.74%,22.41%,24.85%,45134,51512,59777,63755,67669,77576,76621,78301,79939,81533,61918 +,New Mexico,16.68%,15.26%,15.51%,16.23%,14.61%,14.10%,15.03%,15.80%,16.42%,16.17%,17.49%,24.18%,23.59%,24.25%,25.19%,24.40%,23.74%,24.25%,24.48%,24.60%,24.40%,25.66%,88963,108373,124778,136987,142493,157471,164869,173655,179647,187412,141823 +,New Hampshire,9.55%,9.17%,10.56%,11.25%,11.78%,11.93%,12.28%,12.20%,12.70%,13.49%,14.39%,13.27%,14.92%,17.28%,18.34%,18.42%,18.41%,18.83%,18.71%,18.96%,19.78%,21.52%,80914,94562,101713,108092,115472,123122,132773,136419,144469,159708,124302 +,Arizona,10.45%,9.85%,10.39%,11.41%,11.36%,9.46%,10.93%,11.13%,11.25%,11.65%,12.04%,18.75%,18.45%,19.37%,19.84%,19.53%,17.30%,19.05%,19.25%,19.41%,19.98%,21.14%,118927,150171,163876,176072,187116,253579,270012,306705,341468,367680,266830 +,Utah,7.48%,8.74%,9.37%,9.69%,9.81%,9.58%,10.06%,9.93%,9.87%,9.68%,12.64%,18.74%,18.54%,18.74%,20.33%,21.36%,20.99%,21.56%,21.60%,21.82%,22.66%,25.38%,63533,68698,73485,78004,79390,90755,89450,97693,103333,242457,219101 +,Oregon,10.63%,11.44%,12.11%,12.29%,12.98%,11.23%,13.02%,13.27%,13.91%,14.36%,15.42%,21.42%,21.57%,21.64%,21.66%,22.01%,19.50%,21.85%,22.19%,22.96%,23.43%,24.74%,222527,243113,272149,295970,306729,402178,368662,385365,398126,414802,321304 +,Wyoming,11.72%,11.81%,12.26%,13.16%,13.87%,13.94%,13.59%,12.92%,12.74%,12.71%,14.15%,21.39%,21.11%,21.17%,21.78%,22.29%,22.15%,21.52%,20.85%,21.24%,22.14%,24.50%,20689,22811,25604,28428,29877,32894,35663,41236,45173,51088,37566 +,California,8.40%,7.45%,7.99%,8.71%,9.37%,8.96%,9.84%,10.21%,11.26%,13.55%,15.57%,20.29%,18.87%,19.98%,21.80%,22.61%,20.81%,22.13%,22.74%,24.09%,25.48%,27.48%,423885,647119,771428,912340,1032710,1313807,1360961,1495106,1709098,1771829,1271345 +,Vermont,6.76%,7.22%,7.08%,7.19%,8.68%,8.98%,7.50%,6.58%,7.28%,8.46%,9.50%,13.43%,14.09%,14.13%,14.57%,16.26%,16.47%,16.86%,16.98%,17.15%,17.61%,18.68%,57577,61320,66038,75780,86045,93700,98953,104225,109494,112641,86195 +,Nevada,10.92%,10.16%,10.42%,10.58%,9.65%,8.50%,9.30%,9.29%,9.75%,10.86%,14.22%,20.18%,20.47%,21.24%,21.71%,20.05%,17.85%,19.55%,19.71%,20.14%,22.96%,26.92%,64447,78120,91951,101962,114067,150889,138713,147147,157241,218486,161112 +,Colorado,10.20%,10.84%,11.13%,11.46%,11.95%,10.47%,11.36%,10.83%,10.98%,11.76%,12.94%,19.23%,20.19%,20.77%,20.49%,20.36%,18.12%,19.77%,19.54%,20.06%,20.98%,22.30%,218871,248729,277182,310072,331765,432955,436605,476189,553403,571169,436889 +,Washington,10.61%,10.80%,11.68%,12.36%,12.88%,12.07%,11.69%,12.25%,12.97%,13.31%,14.78%,20.54%,20.47%,21.02%,21.36%,21.55%,20.29%,20.20%,20.62%,20.90%,21.30%,22.94%,132607,158380,181994,195341,205249,235156,260871,313804,334157,347641,253755 +,Alaska,10.84%,10.88%,11.47%,12.23%,12.59%,10.50%,11.82%,10.52%,9.97%,10.80%,12.75%,21.25%,19.35%,18.93%,19.39%,19.72%,18.92%,19.29%,18.35%,16.96%,16.98%,19.37%,1412,1902,2345,2542,2525,2933,3053,3318,3531,3574,2189 +,Hawaii,11.07%,11.31%,11.50%,11.98%,12.05%,10.70%,11.99%,12.68%,13.39%,13.31%,14.08%,23.54%,24.04%,24.49%,24.83%,24.97%,22.08%,24.53%,25.57%,26.54%,27.30%,28.82%,94989,103010,108615,115897,118266,150407,141674,149811,157525,161327,116127 +,District of Columbia,6.55%,6.07%,6.44%,7.18%,7.08%,3.92%,7.37%,9.27%,9.72%,10.91%,13.57%,14.21%,13.72%,14.41%,16.27%,15.50%,14.92%,18.38%,20.03%,19.61%,21.32%,24.81%,1801,2143,2610,3092,3233,11764,17780,18971,22188,21446,13300 +,"Total: Total includes all data under the 65 Years or more bucket, including data from rows not currently displayed.",12.15%,12.48%,12.92%,13.54%,14.08%,13.53%,14.08%,14.37%,14.84%,15.60%,16.81%,22.02%,22.73%,23.65%,24.64%,25.22%,24.43%,25.41%,26.00%,26.63%,27.48%,29.16%,12481753,14732109,16665538,18392155,19679823,23540910,24987661,27347522,29838858,31690617,24452994 +"Total: Total includes all data, including data from rows not currently displayed.",Puerto Rico,6.23%,6.77%,7.93%,8.13%,8.53%,7.49%,7.28%,3.76%,4.85%,7.13%,11.05%,15.80%,16.39%,17.96%,18.07%,17.71%,16.58%,17.30%,17.34%,15.14%,14.71%,19.75%,2342,3056,3340,3371,3201,3993,4312,23858,58400,78227,46153 +,Ohio,6.68%,7.09%,7.39%,7.69%,8.13%,8.20%,8.58%,8.81%,8.98%,9.20%,10.33%,11.09%,11.80%,12.39%,12.88%,13.29%,13.12%,13.37%,13.91%,14.09%,14.50%,16.80%,5325324,5615863,5840907,6002336,6076994,6750514,6914591,7704071,8072231,8095705,6050717 +,Kentucky,6.54%,7.11%,7.56%,7.88%,8.36%,8.32%,8.95%,9.35%,9.41%,9.54%,11.00%,11.15%,11.80%,12.08%,12.22%,12.62%,12.63%,13.48%,14.16%,14.45%,14.88%,17.14%,1357049,1536374,1649528,1734581,1786275,2130787,2253548,2345736,2405323,2403982,1747141 +,West Virginia,3.84%,3.10%,3.34%,7.23%,8.88%,9.37%,9.77%,8.91%,8.73%,8.97%,10.59%,11.68%,12.33%,14.15%,15.00%,15.69%,15.12%,15.40%,15.05%,15.90%,16.71%,20.04%,355958,416358,496935,552316,586575,647638,673489,808740,919556,962288,673651 +,Pennsylvania,4.98%,5.40%,5.91%,6.13%,6.33%,6.04%,6.49%,6.78%,6.95%,7.51%,8.65%,8.75%,9.48%,10.19%,10.58%,11.02%,10.88%,11.44%,11.83%,12.05%,12.55%,14.53%,4276575,5136708,5843303,6314934,6502874,7576978,7543439,7790122,8013999,7963045,5409683 +,Michigan,6.51%,6.78%,7.41%,7.73%,7.75%,7.62%,7.78%,7.62%,7.48%,7.93%,9.40%,10.99%,10.98%,11.39%,11.72%,11.84%,11.69%,12.05%,11.95%,12.34%,13.19%,15.73%,2357593,2679067,2832642,2892439,3601092,3981677,3952681,4088055,4810416,5073267,3668095 +,Mississippi,6.88%,6.90%,6.90%,7.60%,8.45%,8.21%,8.59%,8.97%,9.38%,9.94%,12.10%,12.56%,12.55%,12.61%,12.88%,13.75%,13.45%,14.28%,15.06%,15.98%,17.05%,20.75%,540115,600486,761785,969979,990133,1170342,1252840,1311361,1374349,1390555,944685 +,Alabama,8.41%,8.79%,9.58%,9.37%,9.15%,7.65%,8.07%,7.20%,7.30%,8.17%,10.54%,13.62%,13.85%,14.41%,14.54%,15.12%,14.89%,16.20%,13.96%,13.74%,14.36%,17.87%,187018,206351,215458,257116,274508,430538,472364,640379,699688,692304,428287 +,North Carolina,7.07%,7.47%,7.66%,7.99%,8.52%,7.95%,8.53%,8.86%,9.23%,9.42%,11.13%,11.70%,12.03%,12.33%,12.86%,13.32%,12.47%,13.01%,13.40%,13.82%,14.29%,16.95%,3294923,3604278,3958085,4404741,4527929,5652004,5961230,6296278,6912562,6941335,4962417 +,Arkansas,4.42%,5.49%,5.90%,6.01%,6.15%,6.24%,6.50%,6.77%,6.77%,7.01%,8.75%,11.44%,11.86%,12.21%,12.45%,12.49%,12.13%,12.20%,12.73%,13.02%,13.59%,16.33%,485017,586951,639640,719985,760669,861525,845181,856783,885191,876984,573042 +,Louisiana,7.55%,7.42%,6.94%,7.08%,7.28%,6.78%,7.00%,7.01%,7.30%,7.53%,8.81%,12.24%,12.43%,12.41%,12.68%,12.85%,12.00%,12.64%,12.93%,13.84%,14.46%,17.22%,1192710,1328036,1502215,1626465,1690215,1924058,2060302,2208945,2340247,2370432,1698254 +,North Dakota,5.27%,5.18%,5.37%,5.57%,5.73%,5.67%,5.71%,5.65%,5.84%,6.12%,7.20%,8.70%,8.94%,9.01%,9.19%,9.30%,9.27%,9.49%,9.74%,10.07%,10.41%,12.47%,411976,431119,439352,458538,472201,496168,509133,521554,561680,573152,423941 +,Indiana,7.01%,7.17%,7.42%,8.18%,8.77%,8.61%,8.60%,8.61%,8.70%,9.32%,10.85%,11.33%,11.62%,11.86%,12.30%,12.89%,12.88%,13.22%,13.62%,14.00%,14.68%,17.18%,1538889,1708837,1842081,1962414,1993759,2281484,2398420,2468528,2533027,2522995,1747282 +,Nova Scotia,,,,,,,,,,,,,,,7.65%,7.59%,,,6.13%,5.43%,,,129,154,162,170,145,138,182,212,221,183,85 +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,15,26,39,78,89,126,168,38 +,Rhode Island,4.46%,5.28%,5.78%,6.29%,6.92%,7.04%,7.07%,7.73%,7.77%,8.19%,9.31%,10.47%,11.39%,11.75%,12.17%,12.75%,12.42%,12.33%,12.67%,12.66%,13.56%,15.45%,387676,438854,453791,470175,453046,491156,538402,578559,652209,626272,434617 +,Iowa,5.56%,5.65%,5.76%,5.94%,6.16%,6.11%,6.38%,6.60%,6.96%,7.71%,8.91%,9.04%,9.26%,9.40%,9.59%,9.72%,9.64%,9.90%,10.28%,10.74%,11.80%,14.01%,1106383,1156614,1198516,1240784,1258498,1369815,1387258,1467648,1557185,1672099,1217306 +,Delaware,3.61%,4.72%,5.51%,6.08%,7.22%,7.97%,8.42%,8.31%,8.44%,9.22%,10.25%,6.54%,8.53%,9.76%,10.45%,11.03%,11.47%,12.08%,12.37%,12.79%,13.68%,15.79%,200150,258090,292769,322749,332992,380406,396295,427667,443259,463440,321004 +,South Carolina,6.16%,6.70%,7.26%,7.87%,8.26%,7.63%,7.96%,8.36%,8.94%,9.06%,10.42%,10.42%,11.31%,12.00%,12.71%,13.07%,12.30%,13.15%,13.81%,14.52%,14.93%,17.29%,1134337,1430879,1559498,1768629,1875329,2441765,2802354,3121736,3275202,3271131,2432058 +,Massachusetts,4.89%,5.15%,5.47%,5.95%,6.16%,5.97%,6.41%,6.69%,7.04%,7.72%,9.21%,9.54%,9.94%,10.23%,10.61%,10.86%,10.41%,10.97%,11.19%,11.38%,12.05%,14.40%,1208500,1512773,1798221,1887025,1911262,2159523,2400402,2642876,3049978,3185608,2318496 +,Maryland,5.96%,5.97%,6.46%,7.29%,7.66%,6.82%,7.59%,7.72%,7.90%,8.41%,10.45%,11.01%,11.79%,12.59%,13.34%,13.41%,11.88%,13.31%,13.80%,14.24%,14.83%,17.63%,616011,771413,932989,1104062,1222304,1560420,1472950,1514402,1566157,1574569,1027137 +,Tennessee,6.16%,6.02%,6.06%,6.19%,6.34%,6.26%,6.55%,6.61%,6.49%,7.44%,9.86%,12.54%,12.18%,12.49%,12.84%,13.23%,12.98%,13.35%,13.56%,13.74%,15.13%,18.84%,429542,574157,662386,708277,745943,887856,949971,1012884,1189692,1381108,900772 +,Wisconsin,6.14%,6.31%,6.52%,6.68%,6.87%,6.87%,7.37%,7.58%,7.78%,8.25%,9.63%,9.09%,9.21%,9.35%,9.50%,9.73%,9.87%,10.45%,10.75%,10.99%,11.48%,13.46%,2482340,2566875,2661483,2745251,2846370,3124651,3112603,3160737,3196691,3163530,2321929 +,Missouri,5.98%,6.83%,7.53%,7.91%,8.39%,8.00%,7.92%,7.99%,8.25%,8.48%,10.23%,12.49%,13.29%,13.71%,13.90%,14.17%,13.71%,13.46%,13.46%,13.56%,14.10%,16.95%,377022,474734,540037,588158,612398,663640,710114,840187,902766,910513,627054 +,Illinois,5.86%,6.25%,6.47%,6.77%,7.25%,7.34%,7.73%,7.88%,8.15%,8.66%,10.32%,7.47%,7.78%,8.42%,10.25%,11.30%,11.62%,12.22%,12.57%,13.01%,13.81%,16.57%,3304571,3521271,3855204,4010880,4104673,4618904,4659528,4865928,5066783,5015597,3436826 +,Idaho,4.66%,5.14%,5.59%,5.92%,6.29%,6.79%,7.10%,7.38%,7.55%,7.43%,9.04%,8.44%,8.88%,9.23%,9.54%,9.78%,9.99%,10.50%,10.97%,11.19%,11.25%,13.69%,419033,473671,502853,552074,593094,661649,765625,800814,848247,846796,587511 +,Connecticut,2.77%,3.47%,3.87%,4.27%,4.69%,4.75%,5.32%,5.74%,6.38%,7.16%,8.54%,8.74%,9.80%,10.43%,10.80%,10.92%,10.43%,11.11%,11.53%,12.08%,12.78%,15.24%,1417599,1609946,1754022,1860794,1988864,2267581,2208234,2224578,2296102,2344393,1679689 +,Georgia,5.54%,5.59%,5.78%,6.35%,7.02%,6.79%,7.05%,7.08%,7.54%,7.90%,10.05%,9.96%,10.04%,10.47%,11.25%,12.15%,11.80%,12.09%,12.71%,13.43%,14.14%,17.67%,1655721,1975819,2403784,2689553,2676663,3132026,3624480,3991975,4223088,4199002,2659046 +,Minnesota,6.07%,6.20%,6.42%,6.77%,7.03%,6.78%,7.14%,7.33%,7.57%,7.93%,9.25%,8.86%,9.01%,9.27%,9.60%,9.85%,9.66%,10.32%,10.60%,11.03%,11.61%,13.98%,1861693,1958489,2024748,2097684,2098667,2335821,2233069,2289575,2299089,2255403,1461800 +,Florida,4.02%,4.35%,4.51%,4.87%,4.98%,4.51%,4.28%,5.02%,5.62%,6.84%,8.65%,10.11%,10.66%,10.92%,11.23%,11.44%,10.88%,11.23%,11.89%,12.62%,13.80%,16.70%,2061680,2304082,2459079,2563678,2686570,3670963,5400324,6652709,7196621,7707786,5107145 +,Virginia,6.80%,7.07%,7.38%,7.50%,7.84%,7.72%,7.97%,7.69%,7.79%,8.08%,9.92%,10.96%,11.47%,11.96%,12.24%,12.96%,12.82%,13.30%,13.30%,13.35%,13.79%,16.72%,2296180,2667038,2810215,2995695,3084289,3492447,3691661,3967997,4056715,4012856,2708087 +,Kansas,6.70%,7.18%,7.64%,8.05%,8.35%,8.05%,8.26%,7.81%,8.12%,8.60%,9.54%,11.66%,12.12%,12.47%,12.82%,13.06%,12.64%,13.04%,13.11%,13.45%,14.14%,16.09%,456166,489860,522085,544948,549061,600754,612541,748043,808155,851865,642950 +,Maine,6.63%,6.30%,6.90%,7.17%,7.55%,7.32%,7.81%,8.20%,8.62%,8.48%,9.81%,8.26%,8.73%,10.09%,10.54%,10.79%,10.34%,11.27%,11.58%,11.99%,11.83%,13.62%,359726,464646,501545,555224,575801,661444,670919,664258,678890,665398,485279 +,Texas,4.51%,4.98%,5.35%,5.53%,5.83%,5.37%,5.53%,5.89%,6.19%,6.72%,8.24%,8.90%,10.15%,10.66%,11.04%,11.67%,11.13%,11.69%,12.11%,12.45%,13.14%,15.91%,4018830,5002977,5877899,6467924,6742150,8675625,8758475,9236681,10105399,10588468,6854741 +,Oklahoma,4.45%,4.54%,4.95%,5.26%,5.54%,5.49%,5.59%,5.41%,5.62%,6.81%,8.71%,10.71%,11.61%,12.49%,13.25%,13.72%,13.41%,13.45%,13.34%,13.40%,13.85%,16.61%,542483,755096,926084,996832,1009932,1087412,1142284,1311727,1431269,1461216,961589 +,New Jersey,3.70%,4.20%,4.72%,5.30%,5.97%,5.58%,6.37%,6.95%,7.47%,8.16%,10.05%,7.81%,8.83%,10.26%,11.09%,11.70%,11.12%,12.14%,12.74%,13.36%,14.27%,17.23%,594902,767974,1086326,1344054,1477238,1965869,2186388,2497310,2782864,2883339,1881188 +,Nebraska,5.93%,6.32%,5.86%,6.25%,7.06%,6.98%,7.07%,7.11%,7.20%,7.65%,9.03%,10.61%,10.70%,10.63%,11.30%,11.97%,11.80%,11.98%,12.30%,12.54%,13.23%,15.61%,233047,280326,399076,456675,485505,543128,569498,591588,663724,692469,481749 +,New York,6.31%,6.45%,6.33%,6.45%,6.49%,6.53%,7.40%,7.67%,7.81%,8.38%,10.45%,9.91%,10.45%,11.03%,11.74%,11.81%,11.44%,12.74%,13.27%,13.54%,14.09%,16.86%,3302897,3774996,4236884,4877168,5529447,6927767,6773590,6984271,7372014,7428848,4961905 +,Montana,4.90%,5.36%,5.70%,5.90%,6.09%,5.94%,5.98%,5.85%,5.96%,6.59%,8.31%,7.74%,8.11%,8.36%,8.48%,8.48%,8.16%,8.35%,8.56%,9.53%,10.34%,12.89%,196947,215908,226813,235337,242082,267935,269740,323539,383932,394305,263558 +,South Dakota,5.97%,5.98%,5.55%,5.87%,5.97%,5.69%,5.98%,6.07%,6.13%,6.42%,7.63%,8.30%,8.50%,8.10%,8.31%,8.30%,7.96%,8.44%,8.82%,9.06%,9.57%,11.56%,268833,287941,316190,327085,342173,381163,373153,371369,376606,375929,263737 +,New Mexico,7.51%,7.29%,7.69%,8.16%,7.58%,7.48%,8.23%,8.86%,9.16%,9.08%,10.88%,11.02%,11.40%,12.04%,12.68%,12.55%,12.40%,12.93%,13.24%,13.20%,13.12%,15.42%,431254,494126,550209,588928,563869,612714,634361,651291,665317,666298,447045 +,New Hampshire,4.82%,4.72%,5.37%,5.74%,6.04%,6.21%,6.47%,6.55%,6.82%,7.37%,8.47%,6.54%,7.40%,8.50%,8.97%,9.17%,9.38%,9.65%,9.77%,9.99%,10.66%,12.53%,359767,405623,426485,443765,459702,483282,496090,496364,512786,528648,383980 +,Arizona,6.11%,6.07%,6.54%,7.17%,7.19%,6.20%,6.47%,6.56%,6.58%,6.98%,8.21%,10.45%,10.67%,11.24%,11.66%,11.54%,10.43%,10.37%,10.34%,10.32%,10.90%,12.97%,449245,538569,572060,605971,650479,866823,1059782,1222056,1379498,1431201,889897 +,Utah,3.27%,3.93%,4.27%,4.39%,4.35%,4.12%,4.47%,4.39%,4.29%,4.55%,6.29%,7.43%,7.40%,7.51%,8.10%,8.34%,7.98%,8.47%,8.57%,8.62%,9.95%,12.00%,365144,391632,408836,432359,449865,534726,508037,544089,578909,1075976,904509 +,Oregon,5.00%,5.40%,5.67%,5.77%,5.98%,5.14%,6.10%,6.33%,6.55%,6.85%,8.29%,9.44%,9.54%,9.58%,9.66%,9.78%,8.53%,9.85%,10.21%,10.49%,10.85%,12.92%,1145904,1226387,1339798,1422423,1464342,1899867,1691243,1713732,1776673,1806853,1235433 +,Wyoming,5.81%,6.15%,6.47%,6.92%,7.35%,7.30%,7.39%,6.91%,6.82%,6.80%,8.35%,10.30%,10.49%,10.76%,11.13%,11.56%,11.29%,11.40%,10.93%,11.11%,11.70%,14.40%,88394,94273,101713,110154,112253,124471,129379,144272,153144,169319,111781 +,California,3.83%,3.76%,4.16%,4.39%,4.46%,4.21%,4.60%,4.87%,5.37%,6.64%,8.52%,8.92%,8.97%,9.75%,10.44%,10.40%,9.46%,9.97%,10.33%,10.93%,11.70%,14.19%,2335320,3103857,3454804,4154112,4963768,6327688,6695130,7141416,8024610,8094833,5206521 +,Vermont,4.31%,4.64%,4.63%,4.52%,4.95%,4.86%,4.20%,3.75%,4.18%,4.90%,6.01%,7.66%,8.14%,8.32%,8.35%,8.75%,8.61%,9.05%,9.17%,9.38%,9.85%,11.42%,206541,213675,223313,255395,300432,334671,338673,350242,359602,357489,250934 +,Nevada,5.37%,4.86%,4.52%,4.55%,3.54%,3.58%,4.19%,4.41%,4.83%,5.59%,8.35%,9.69%,9.66%,9.37%,9.56%,7.59%,7.70%,8.78%,9.18%,9.62%,11.09%,15.13%,270325,343517,454051,512634,692179,776188,701274,708225,748539,859041,511996 +,Colorado,3.84%,4.14%,4.37%,4.63%,4.82%,4.36%,4.74%,4.55%,4.79%,5.23%,6.56%,7.21%,7.65%,7.99%,8.06%,8.08%,7.34%,8.00%,7.90%,8.43%,9.07%,11.03%,1364874,1528639,1666660,1791432,1895707,2371847,2360038,2465725,2672380,2624000,1745081 +,Washington,4.45%,4.80%,5.29%,5.70%,6.13%,5.71%,5.57%,5.85%,6.18%,6.49%,8.24%,8.11%,8.47%,8.91%,9.22%,9.63%,9.04%,9.07%,9.28%,9.49%,9.95%,12.40%,714195,800183,882789,925586,948130,1086893,1188253,1389496,1458298,1457077,906832 +,Alaska,5.08%,5.26%,5.70%,6.23%,6.14%,5.44%,6.05%,5.99%,5.91%,5.98%,7.86%,8.65%,8.82%,8.98%,9.52%,9.46%,8.90%,9.61%,9.83%,9.69%,9.34%,11.61%,8580,10042,11649,11970,11919,13205,12449,12388,12819,13111,7190 +,Hawaii,5.78%,6.09%,6.31%,6.67%,6.90%,5.70%,6.46%,7.06%,7.43%,7.63%,9.42%,11.57%,12.18%,12.59%,12.89%,13.22%,10.95%,12.30%,13.26%,13.75%,14.55%,17.90%,399351,414645,422738,439246,430729,575539,533730,544314,567822,556442,339030 +,District of Columbia,2.44%,2.35%,2.40%,2.74%,2.53%,1.72%,3.79%,4.80%,4.69%,5.30%,7.70%,4.99%,5.04%,5.02%,5.50%,4.96%,5.51%,8.37%,9.37%,8.67%,9.76%,13.29%,17006,19289,22449,24899,29382,75783,90633,93336,114363,105555,55111 +,"Total: Total includes all data under the Total* bucket, including data from rows not currently displayed.",5.63%,5.88%,6.15%,6.46%,6.74%,6.47%,6.82%,7.03%,7.28%,7.79%,9.42%,9.82%,10.31%,10.78%,11.29%,11.63%,11.23%,11.83%,12.20%,12.58%,13.23%,15.81%,61129681,69957926,77402511,83906824,88583858,105400238,110032890,117902259,126132021,128728351,88071787 diff --git a/data/cosmos_chronic/raw/obesity_decrypted.csv b/data/cosmos_chronic/raw/obesity_decrypted.csv new file mode 100644 index 0000000..2c4ce11 --- /dev/null +++ b/data/cosmos_chronic/raw/obesity_decrypted.csv @@ -0,0 +1,454 @@ +Session Title,DM in ICD10 by State Age 2023,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Session Description,Fixes the date range and make the CCW definition sequential,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Session ID,2819467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Data Model,Patients,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Population Base,All Patients,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Population Criteria Filters: These criteria are a summary and do not fully reflect the content of the exported session.,Country of Care: United States of America,Has Any Encounters?,Base Patient,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Session Date Range,1/1/2016 - 4/14/2026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Export User,Daniel Weinberger,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Date of Export,5/5/2026,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +,Measures,Percentage with Has Any Encounters? preceded by Diagnosis (All): Obesity CCW definition within 24 months (%),,,,,,,,,,,Percentage with Has Any Encounters? preceded by BMI 30.0 or more within 24 months (%),,,,,,,,,,,Number of Patients,,,,,,,,,, +,,Jan 1 – Dec 31 2016,Jan 1 – Dec 31 2017,Jan 1 – Dec 31 2018,Jan 1 – Dec 31 2019,Jan 1 – Dec 31 2020,Jan 1 – Dec 31 2021,Jan 1 – Dec 31 2022,Jan 1 – Dec 31 2023,Jan 1 – Dec 31 2024,Jan 1 – Dec 31 2025,Jan 1 – Apr 14 2026,Jan 1 – Dec 31 2016,Jan 1 – Dec 31 2017,Jan 1 – Dec 31 2018,Jan 1 – Dec 31 2019,Jan 1 – Dec 31 2020,Jan 1 – Dec 31 2021,Jan 1 – Dec 31 2022,Jan 1 – Dec 31 2023,Jan 1 – Dec 31 2024,Jan 1 – Dec 31 2025,Jan 1 – Apr 14 2026,Jan 1 – Dec 31 2016,Jan 1 – Dec 31 2017,Jan 1 – Dec 31 2018,Jan 1 – Dec 31 2019,Jan 1 – Dec 31 2020,Jan 1 – Dec 31 2021,Jan 1 – Dec 31 2022,Jan 1 – Dec 31 2023,Jan 1 – Dec 31 2024,Jan 1 – Dec 31 2025,Jan 1 – Apr 14 2026 +Age at Encounter in Years,State of Residence,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Less than 18 Years,Puerto Rico,,,3.92%,6.50%,5.81%,4.57%,3.97%,4.27%,8.30%,10.99%,12.81%,4.10%,,4.41%,4.88%,4.52%,4.33%,5.23%,8.80%,9.48%,9.41%,9.24%,268,333,408,369,310,416,478,5218,13465,19214,9875 +,Ohio,3.54%,3.66%,3.88%,4.06%,4.33%,4.37%,4.22%,3.91%,4.05%,4.90%,5.07%,5.50%,5.80%,6.05%,6.17%,6.25%,6.50%,6.40%,6.14%,6.36%,6.66%,6.32%,887225,949395,978105,1008547,976223,1096774,1174516,1382861,1490726,1455259,906179 +,Kentucky,2.39%,2.43%,2.62%,2.81%,3.37%,3.94%,4.38%,4.56%,4.57%,5.94%,6.78%,5.78%,6.57%,7.28%,7.45%,7.50%,7.63%,7.96%,8.13%,8.04%,8.28%,8.26%,260871,294406,312367,326531,314848,399236,442613,466695,489563,481281,293936 +,West Virginia,3.76%,3.63%,3.92%,4.21%,4.24%,3.86%,3.52%,3.32%,3.68%,4.59%,5.25%,7.63%,7.31%,7.51%,7.83%,8.17%,8.49%,8.04%,7.72%,8.03%,8.49%,8.70%,64666,73756,87417,99638,99808,113293,126133,158546,183913,192521,110267 +,Pennsylvania,2.94%,2.88%,2.95%,3.22%,3.51%,4.00%,4.28%,4.19%,4.03%,9.98%,12.94%,4.30%,4.70%,5.06%,5.30%,5.47%,6.03%,6.11%,6.03%,5.94%,5.97%,5.72%,947571,1104081,1196139,1275182,1262285,1462751,1499068,1540878,1573274,1515853,842116 +,Michigan,2.52%,2.33%,2.54%,2.81%,2.79%,3.09%,3.19%,3.07%,2.93%,4.09%,4.75%,5.74%,5.68%,5.91%,6.07%,5.69%,6.31%,6.49%,6.40%,6.11%,6.49%,6.54%,456265,517680,545396,557559,645376,725874,739494,761641,870617,898688,526401 +,Mississippi,1.26%,1.29%,1.36%,1.39%,1.75%,2.24%,2.45%,2.66%,3.09%,4.12%,4.76%,6.38%,6.50%,6.80%,7.29%,7.57%,7.84%,8.10%,8.28%,8.23%,8.69%,8.66%,96735,104086,118566,153325,146265,180347,197030,206122,217437,215145,117367 +,Alabama,1.45%,1.54%,1.85%,2.28%,2.67%,2.46%,2.50%,2.57%,3.78%,6.08%,7.21%,5.95%,6.04%,6.43%,6.43%,6.62%,6.47%,7.08%,5.73%,6.41%,6.97%,7.23%,21506,24093,24051,29163,29255,49298,58731,189660,231425,228307,125736 +,North Carolina,2.95%,3.07%,3.26%,3.56%,3.95%,3.73%,4.06%,4.21%,4.39%,5.53%,6.14%,5.21%,5.47%,5.50%,5.74%,5.97%,5.90%,6.37%,6.48%,6.44%,6.77%,6.66%,586606,630962,708133,795588,768041,1045889,1154561,1219325,1346089,1337634,774149 +,Arkansas,2.64%,3.13%,3.38%,3.64%,4.08%,4.46%,4.72%,4.89%,5.19%,6.50%,8.01%,6.27%,7.00%,7.02%,6.80%,7.15%,7.60%,7.37%,7.35%,7.24%,7.55%,8.09%,85027,114577,147906,168808,169873,201507,210602,216172,223355,220848,119238 +,Louisiana,2.71%,2.78%,2.77%,3.15%,3.67%,3.76%,3.93%,3.93%,3.97%,4.89%,5.35%,5.64%,6.04%,6.22%,6.55%,6.64%,6.75%,6.93%,7.16%,7.32%,7.60%,7.42%,227938,261783,324153,364318,354967,409596,446200,478470,488737,490670,290592 +,North Dakota,1.91%,2.12%,2.37%,2.59%,2.73%,3.18%,3.50%,3.66%,3.58%,3.87%,3.97%,4.78%,4.84%,4.85%,4.79%,4.74%,5.02%,4.94%,5.02%,4.99%,5.27%,5.24%,99935,104091,106715,110929,109242,115914,120280,124313,133283,133757,82563 +,Indiana,2.23%,2.82%,3.12%,3.27%,3.44%,3.76%,3.85%,3.92%,3.87%,4.54%,4.78%,5.44%,5.76%,5.96%,6.11%,6.29%,6.85%,7.00%,6.95%,6.78%,6.96%,6.74%,313408,355239,384282,409421,394600,464811,494029,504846,518266,498889,286328 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,11,13,10 or fewer,10 or fewer,15,24,18,10 or fewer +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,23,17,13,18,10 or fewer +,Rhode Island,3.20%,3.79%,4.27%,4.57%,5.27%,5.87%,5.93%,6.66%,8.65%,10.52%,11.56%,3.00%,3.35%,3.64%,3.89%,4.40%,4.68%,4.81%,5.29%,5.44%,5.73%,6.07%,75416,82740,84603,85728,73700,80231,92294,105604,123759,118795,66396 +,Iowa,2.31%,2.64%,2.79%,2.87%,2.93%,3.04%,3.04%,3.05%,3.32%,4.33%,4.74%,4.94%,5.47%,5.75%,5.86%,5.92%,6.40%,6.46%,6.62%,6.69%,6.90%,6.55%,264214,279607,288748,295489,289909,314031,323930,345392,370464,384592,238960 +,Delaware,7.44%,7.24%,7.17%,7.13%,7.66%,8.36%,8.69%,8.34%,8.39%,9.15%,9.59%,5.47%,5.90%,6.21%,6.43%,6.84%,7.49%,7.71%,7.66%,7.66%,7.81%,7.88%,90169,97886,102357,107234,104101,114101,117877,123032,125746,124976,76061 +,South Carolina,2.88%,3.58%,4.38%,4.97%,5.93%,5.58%,5.57%,5.34%,5.41%,6.09%,6.63%,5.29%,5.91%,6.50%,6.82%,7.06%,6.95%,7.08%,7.18%,7.23%,7.34%,7.18%,235511,297917,319619,353460,343545,462324,526615,583728,603907,599815,370806 +,Massachusetts,8.12%,7.50%,6.99%,7.63%,8.59%,9.21%,8.53%,8.49%,7.37%,8.39%,9.43%,5.19%,4.86%,5.06%,5.34%,5.59%,6.06%,5.97%,6.19%,5.73%,6.24%,6.57%,212679,256407,302276,312243,292131,327888,377559,417116,546929,577998,347980 +,Maryland,3.48%,3.41%,3.45%,3.30%,3.48%,3.37%,3.48%,3.19%,3.02%,3.64%,4.43%,5.22%,5.04%,5.13%,5.25%,5.37%,5.46%,5.79%,5.92%,5.93%,6.65%,7.30%,72426,94562,115459,144086,140700,177167,183601,189794,194834,191796,94482 +,Tennessee,1.11%,1.72%,2.05%,2.25%,2.87%,3.10%,3.37%,3.57%,3.99%,5.83%,7.06%,6.33%,5.84%,6.48%,6.90%,6.99%,6.96%,7.20%,7.14%,6.50%,7.57%,8.03%,53291,82737,98830,105568,101490,128737,145170,156516,196271,230375,126300 +,Wisconsin,2.50%,2.50%,2.51%,2.66%,2.70%,2.97%,3.24%,3.28%,3.45%,4.66%,5.15%,4.52%,4.63%,4.81%,4.99%,5.10%,5.93%,6.11%,6.10%,5.99%,6.03%,5.79%,597528,613421,633264,651077,633873,674039,690728,700222,708047,690000,420827 +,Missouri,1.47%,1.52%,1.63%,1.91%,2.20%,2.40%,2.07%,2.22%,2.43%,3.01%,3.56%,5.32%,5.94%,6.45%,6.87%,7.26%,7.38%,6.45%,6.93%,6.84%,6.76%,6.88%,36559,52924,60973,70777,67808,78320,99674,126094,144940,142980,76571 +,Illinois,3.05%,3.12%,3.12%,3.53%,4.37%,5.66%,5.86%,5.60%,5.56%,6.63%,7.03%,4.80%,4.95%,5.14%,5.45%,5.86%,6.86%,6.90%,6.74%,6.61%,6.76%,6.73%,765146,789800,844789,903041,859195,950885,1002037,1033878,1064616,1025136,551346 +,Idaho,2.04%,2.43%,2.58%,2.55%,2.64%,2.91%,3.03%,3.28%,3.35%,3.77%,4.18%,3.07%,3.70%,4.04%,4.36%,4.82%,5.15%,5.39%,5.32%,5.27%,5.27%,5.31%,91810,105554,111069,118007,119784,130692,161790,167411,176024,176555,103856 +,Connecticut,4.86%,5.01%,4.96%,5.08%,5.12%,5.02%,5.26%,5.55%,5.67%,5.91%,6.81%,4.88%,5.24%,5.70%,6.03%,6.06%,6.32%,6.61%,7.00%,6.98%,6.88%,7.34%,280762,297237,313531,325294,326563,394163,379987,371709,381604,380676,208508 +,Georgia,2.24%,2.30%,2.35%,2.62%,3.28%,3.57%,3.37%,3.21%,3.23%,4.10%,4.94%,3.55%,3.92%,4.27%,4.67%,5.32%,5.55%,5.52%,5.75%,5.85%,6.36%,6.79%,472215,526026,612066,667900,595172,695444,785292,836373,861344,831868,420435 +,Minnesota,2.79%,2.98%,3.25%,3.48%,3.63%,4.12%,4.14%,4.09%,4.18%,4.70%,4.95%,4.19%,4.28%,4.42%,4.57%,4.63%,5.16%,5.12%,5.10%,5.20%,5.54%,5.66%,383224,395516,404614,417028,390328,433164,433376,442388,449627,434310,241601 +,Florida,3.12%,3.26%,3.41%,3.54%,3.74%,3.54%,3.35%,3.51%,3.92%,5.05%,6.00%,4.79%,4.98%,5.11%,5.13%,5.42%,5.32%,5.06%,5.60%,5.93%,6.30%,6.56%,489793,519510,549687,564084,545018,736217,1045123,1259852,1328323,1350699,716910 +,Virginia,2.00%,2.10%,2.40%,2.51%,2.80%,3.14%,3.26%,3.18%,2.93%,3.56%,4.43%,4.70%,5.02%,5.28%,5.36%,5.66%,6.00%,5.98%,6.07%,6.07%,6.52%,7.06%,350707,401935,408187,430334,382146,448652,525216,572924,592406,566968,278603 +,Kansas,3.87%,4.03%,4.29%,4.77%,5.37%,5.65%,5.57%,5.01%,4.73%,5.05%,5.71%,5.96%,6.31%,6.39%,6.83%,7.09%,7.14%,6.99%,6.55%,6.39%,6.58%,6.59%,77718,81839,83925,84638,78929,87701,91759,108119,116497,123607,75179 +,Maine,3.38%,3.22%,3.30%,3.28%,3.27%,3.36%,3.53%,3.64%,3.84%,4.60%,5.32%,5.35%,5.65%,6.01%,6.22%,6.20%,6.38%,6.51%,6.54%,6.65%,6.84%,7.03%,64690,80276,86466,91910,88890,102367,106633,105897,108722,106637,64997 +,Texas,3.59%,3.54%,3.40%,3.56%,3.86%,4.00%,4.07%,4.15%,4.24%,5.35%,6.01%,4.67%,4.73%,4.82%,5.10%,5.49%,6.16%,6.24%,6.23%,6.08%,6.35%,6.36%,1281634,1447977,1770043,1897156,1837306,2237549,2371345,2462179,2620460,2658095,1487191 +,Oklahoma,1.49%,1.63%,1.76%,2.00%,2.41%,2.70%,2.72%,3.46%,4.18%,4.90%,5.47%,4.88%,5.13%,5.77%,6.30%,6.49%,6.66%,6.52%,6.97%,7.62%,8.26%,8.49%,105236,142073,171075,181189,171050,186164,210329,266888,301011,305632,170637 +,New Jersey,3.66%,3.54%,3.32%,3.21%,3.49%,3.69%,4.15%,3.86%,3.83%,4.80%,5.77%,4.64%,4.86%,4.94%,5.20%,5.63%,5.79%,6.11%,6.06%,6.11%,6.62%,6.98%,143781,160437,189933,211482,210539,275443,314559,358954,421754,425483,218937 +,Nebraska,1.44%,1.67%,1.49%,1.44%,1.47%,1.54%,1.55%,1.63%,1.68%,2.06%,2.37%,5.06%,5.62%,5.47%,5.86%,5.94%,6.07%,6.10%,6.21%,6.04%,6.55%,6.97%,34072,39145,55904,64075,64167,73599,77097,78059,85654,85963,45304 +,New York,4.91%,5.94%,6.48%,6.80%,7.15%,7.28%,7.54%,7.32%,6.96%,7.97%,8.92%,5.12%,5.34%,5.44%,5.48%,5.60%,6.23%,6.66%,6.72%,6.58%,6.91%,7.10%,577113,662888,744673,864980,888998,1078103,1079968,1095137,1167645,1152187,636235 +,Montana,1.85%,1.81%,1.84%,1.81%,1.93%,1.99%,1.88%,1.66%,1.74%,2.25%,2.68%,3.67%,3.73%,3.91%,4.00%,4.10%,4.47%,4.45%,4.45%,4.51%,4.89%,5.12%,37602,40339,41717,42426,41054,44721,46234,52990,64716,64339,33843 +,South Dakota,1.86%,2.09%,2.14%,2.14%,2.21%,2.25%,2.29%,2.36%,2.60%,3.03%,3.30%,4.55%,4.44%,4.20%,4.19%,4.34%,4.59%,4.62%,4.69%,4.69%,4.80%,4.69%,70160,73758,80620,82246,81483,88254,89867,91071,92521,89611,54591 +,New Mexico,4.37%,4.26%,4.12%,3.98%,3.47%,3.69%,4.01%,4.15%,4.07%,4.21%,4.75%,5.66%,5.59%,5.70%,5.80%,5.73%,6.44%,6.67%,6.64%,6.49%,6.50%,6.66%,92747,97792,103154,108209,96012,101419,107111,107889,110595,112639,61566 +,New Hampshire,2.46%,2.56%,2.65%,3.10%,3.61%,4.24%,4.32%,4.09%,4.09%,4.80%,5.09%,5.41%,5.29%,5.56%,5.75%,5.74%,6.10%,6.06%,5.87%,5.71%,5.79%,5.67%,69867,78091,78929,81884,79441,83501,85129,84553,90915,93968,59344 +,Arizona,1.72%,1.93%,2.34%,2.79%,3.42%,3.47%,3.82%,4.34%,4.43%,4.88%,5.56%,3.23%,3.54%,4.09%,4.39%,4.52%,4.53%,3.91%,4.26%,4.68%,5.35%,5.80%,55740,61433,63839,65915,60327,87037,168381,198067,219606,216586,111586 +,Utah,2.34%,2.14%,1.91%,1.95%,2.18%,2.43%,2.41%,2.32%,2.21%,2.55%,2.94%,3.26%,3.23%,3.27%,3.03%,3.01%,3.08%,2.89%,2.81%,2.66%,2.77%,3.58%,92009,98538,101556,107011,104654,114683,121426,126735,134766,219801,157355 +,Oregon,4.05%,4.20%,4.28%,4.50%,4.50%,4.49%,4.63%,4.49%,4.28%,4.95%,5.45%,5.04%,5.24%,5.38%,5.61%,5.56%,5.68%,5.89%,6.05%,5.96%,6.08%,6.05%,265973,283885,306690,324862,307056,359120,360519,361749,387412,387433,231762 +,Wyoming,1.83%,1.74%,1.69%,1.87%,2.13%,2.27%,2.19%,1.98%,2.12%,2.33%,2.85%,3.78%,3.67%,3.71%,3.62%,3.68%,4.18%,4.22%,4.24%,4.58%,4.86%,5.31%,17972,19058,20285,22136,21136,23689,25049,28352,29681,31652,17600 +,California,4.21%,4.02%,4.17%,4.37%,5.20%,6.04%,6.02%,5.81%,5.70%,7.03%,8.08%,4.44%,4.43%,4.80%,5.01%,5.31%,5.93%,5.92%,6.07%,5.88%,6.08%,6.12%,513915,614453,657782,796412,940500,1195777,1360131,1471064,1631677,1628462,904713 +,Vermont,2.94%,3.09%,2.86%,2.70%,2.60%,2.50%,2.39%,2.37%,2.31%,2.70%,3.15%,5.32%,5.63%,5.54%,5.22%,4.81%,4.88%,5.18%,5.67%,5.69%,6.11%,6.20%,25979,26628,28104,32983,39798,46415,46680,47510,49045,47693,29200 +,Nevada,1.48%,1.36%,1.34%,1.77%,2.07%,2.46%,2.55%,2.44%,2.61%,3.41%,4.25%,3.69%,3.82%,4.37%,4.86%,4.55%,4.92%,5.17%,5.34%,5.66%,5.77%,5.83%,45748,56638,80884,93113,98771,109504,121888,125791,133152,140415,71769 +,Colorado,2.94%,3.43%,3.60%,3.41%,3.25%,3.15%,2.85%,2.68%,2.72%,3.17%,3.68%,3.21%,3.62%,3.87%,3.94%,3.96%,4.25%,4.15%,4.14%,4.15%,4.38%,4.63%,343531,375328,393177,413286,416077,501666,521649,551401,572241,542919,298597 +,Washington,2.15%,2.05%,2.09%,2.26%,2.79%,3.42%,3.34%,2.89%,2.82%,3.27%,4.04%,4.42%,4.34%,4.63%,4.86%,5.10%,5.23%,4.94%,4.82%,4.86%,5.13%,5.66%,140130,155081,168185,170905,155382,177167,200059,232311,242265,230037,110839 +,Alaska,2.51%,2.52%,2.29%,2.46%,2.67%,2.52%,2.40%,1.80%,1.48%,1.99%,2.72%,5.08%,4.66%,3.58%,3.60%,3.36%,3.69%,3.81%,3.61%,3.49%,3.97%,4.21%,1555,1824,2179,2111,2025,2225,1997,1885,1891,1711,808 +,Hawaii,2.49%,2.28%,2.20%,2.38%,2.60%,2.13%,2.34%,2.53%,3.00%,4.03%,4.77%,4.37%,4.35%,4.44%,4.36%,4.26%,3.51%,4.05%,4.63%,5.07%,5.52%,5.77%,68357,70731,71473,73584,64725,98575,95548,93638,99364,93204,43151 +,District of Columbia,1.76%,1.61%,1.24%,1.70%,1.32%,1.40%,1.08%,1.05%,1.29%,1.45%,1.57%,4.65%,4.10%,3.84%,4.20%,3.75%,3.26%,3.91%,3.34%,4.11%,4.79%,4.48%,2042,1928,1771,1644,1359,2147,2583,2575,2795,2486,826 +,"Total: Total includes all data under the Less than 18 Years bucket, including data from rows not currently displayed.",3.18%,3.30%,3.42%,3.64%,4.01%,4.29%,4.35%,4.29%,4.34%,5.62%,6.43%,4.82%,5.05%,5.28%,5.49%,5.68%,6.09%,6.16%,6.21%,6.19%,6.47%,6.52%,12774949,14233531,15627888,16811861,16527267,19650892,21329681,22916249,24518698,24454849,13808069 +≥ 18 and < 25 Years,Puerto Rico,,,,6.39%,10.15%,7.88%,6.41%,25.75%,27.04%,28.40%,29.33%,19.81%,15.38%,16.49%,15.07%,18.27%,13.70%,14.59%,30.49%,30.80%,31.15%,33.12%,106,130,188,219,197,292,281,1899,5292,7158,3249 +,Ohio,6.75%,8.68%,10.74%,12.63%,13.17%,12.68%,13.19%,14.29%,14.82%,15.71%,16.91%,25.32%,27.10%,28.35%,28.91%,29.19%,28.17%,28.95%,29.31%,29.70%,30.48%,31.95%,421002,440622,455297,472865,486726,558661,562562,610443,645278,643818,364253 +,Kentucky,6.92%,8.97%,11.21%,12.59%,12.84%,12.64%,14.76%,16.53%,17.68%,18.46%,19.86%,27.37%,30.16%,32.41%,32.88%,32.75%,31.29%,32.91%,33.91%,34.00%,34.80%,36.44%,96306,112231,120123,126930,134879,169927,178804,183807,189748,188537,107700 +,West Virginia,7.82%,10.71%,14.16%,16.38%,16.03%,14.00%,15.95%,15.83%,16.29%,16.21%,18.13%,26.50%,27.08%,29.85%,32.14%,32.99%,32.62%,33.73%,33.82%,34.91%,36.23%,38.66%,27976,31986,36850,41034,43835,49958,50926,59774,66070,69621,38284 +,Pennsylvania,6.93%,8.15%,11.06%,12.27%,12.22%,11.94%,12.48%,12.88%,12.83%,13.34%,15.00%,21.06%,22.99%,24.43%,25.35%,25.47%,25.40%,26.01%,26.40%,26.44%,26.84%,28.41%,313519,378951,427998,461773,482313,580715,557891,573784,596663,585718,298111 +,Michigan,7.47%,8.34%,9.98%,11.08%,11.23%,11.80%,12.80%,13.02%,12.46%,13.16%,14.87%,25.21%,25.31%,26.45%,27.06%,25.41%,25.67%,26.92%,26.91%,26.30%,27.63%,29.88%,204134,228338,241742,245889,303325,337890,327129,335649,376453,390610,216493 +,Mississippi,4.01%,4.83%,5.21%,5.90%,7.60%,9.08%,10.53%,12.12%,13.84%,15.36%,16.93%,31.56%,31.58%,30.50%,31.60%,32.47%,31.79%,33.13%,34.07%,34.09%,35.92%,38.51%,38049,42052,53077,66634,70748,86609,92326,96007,100112,100916,50160 +,Alabama,6.36%,11.59%,14.10%,14.44%,15.21%,13.52%,16.34%,16.83%,17.16%,18.18%,20.15%,24.64%,26.33%,27.21%,27.75%,28.94%,28.98%,32.03%,31.51%,31.21%,31.47%,33.39%,9645,10569,11481,13819,15438,25430,28232,35593,40225,41221,19250 +,North Carolina,6.76%,8.26%,9.62%,10.66%,11.41%,10.89%,12.38%,13.15%,13.13%,14.00%,15.94%,24.25%,25.49%,26.26%,27.08%,27.23%,25.94%,27.87%,28.66%,28.91%,30.09%,32.16%,243748,264419,288823,323720,341876,437054,462220,484633,538545,540399,292827 +,Arkansas,7.47%,8.66%,10.26%,11.63%,13.59%,15.49%,17.05%,18.76%,19.21%,20.70%,22.84%,32.45%,33.62%,34.38%,33.62%,32.71%,32.69%,34.06%,35.02%,34.35%,34.92%,36.79%,32725,38566,42624,49057,56258,65783,61694,60198,61369,60832,31720 +,Louisiana,6.76%,9.06%,9.11%,9.39%,9.65%,9.41%,10.70%,11.80%,13.06%,14.07%,15.29%,25.35%,26.20%,27.33%,28.60%,28.69%,27.61%,28.98%,29.64%,30.60%,31.60%,33.02%,85471,95763,110071,120113,129909,157502,164319,180864,191986,194836,106589 +,North Dakota,5.91%,7.19%,8.80%,9.84%,9.63%,9.50%,9.85%,10.43%,10.98%,11.76%,12.68%,25.42%,25.75%,25.97%,25.86%,24.92%,23.78%,23.36%,24.07%,24.42%,25.63%,26.87%,37896,39248,39745,41017,43161,45946,45609,44976,48258,49615,29524 +,Indiana,6.29%,8.18%,10.52%,11.22%,10.83%,10.71%,11.25%,12.14%,12.55%,13.16%,14.83%,26.52%,27.76%,29.03%,30.30%,30.87%,31.30%,32.01%,32.19%,31.67%,32.22%,34.39%,118882,132561,142541,151831,156559,181662,188183,192103,196917,194253,105868 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,11,13,15,13,10 or fewer +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,12,15,10 or fewer +,Rhode Island,4.68%,5.74%,7.04%,7.82%,8.35%,8.92%,9.56%,10.41%,11.60%,12.91%,14.73%,10.49%,12.57%,13.47%,14.07%,14.93%,14.73%,15.82%,18.16%,18.68%,19.65%,22.07%,30360,34686,35708,36468,34415,37602,41515,44142,51159,47318,23777 +,Iowa,6.69%,8.14%,8.77%,8.79%,8.56%,8.90%,9.37%,10.05%,11.04%,12.57%,13.93%,24.01%,25.76%,26.28%,27.14%,27.17%,27.72%,28.42%,28.92%,29.20%,30.22%,31.84%,97493,101264,104541,108247,113355,124555,123134,128216,133890,140547,80261 +,Delaware,8.17%,9.35%,11.90%,13.09%,13.51%,13.91%,15.14%,14.94%,15.04%,15.34%,15.92%,21.23%,25.90%,28.83%,29.95%,30.33%,30.32%,31.28%,32.01%,32.27%,32.43%,33.72%,10622,14693,17237,19728,21749,25907,27370,29984,31425,31938,16852 +,South Carolina,6.02%,7.22%,9.04%,10.03%,10.52%,10.08%,10.78%,11.10%,11.46%,11.87%,12.89%,22.74%,25.44%,27.74%,28.73%,28.58%,27.24%,28.53%,29.62%,30.30%,30.52%,31.84%,71954,95712,106726,122283,132757,174224,200091,223519,238866,239660,141536 +,Massachusetts,8.44%,8.68%,9.17%,10.60%,11.07%,10.66%,10.98%,11.27%,11.38%,12.44%,14.56%,18.30%,17.99%,18.96%,20.00%,19.39%,17.99%,19.07%,20.29%,20.67%,22.19%,24.34%,102884,122410,147154,155538,159138,186984,195063,215317,244255,249973,138366 +,Maryland,6.23%,7.49%,9.18%,10.45%,9.47%,9.06%,11.23%,11.44%,11.23%,11.61%,13.53%,21.73%,22.59%,23.49%,24.43%,21.54%,20.64%,25.31%,26.29%,26.68%,27.79%,29.90%,44251,56572,66163,78954,97586,120245,106405,109691,113761,113372,54646 +,Tennessee,4.32%,4.81%,6.19%,7.56%,9.34%,10.74%,12.18%,13.34%,13.60%,14.11%,16.17%,28.78%,26.73%,29.50%,31.14%,30.86%,29.93%,30.79%,31.13%,30.13%,32.80%,35.71%,31579,41757,48768,52284,55891,67101,70138,73045,81524,93399,45831 +,Wisconsin,6.15%,6.51%,7.07%,7.47%,7.49%,7.68%,8.46%,9.02%,9.38%,10.52%,11.31%,22.86%,23.47%,24.13%,24.61%,23.99%,23.78%,24.92%,25.49%,25.56%,26.42%,27.05%,198940,203578,209966,217928,231748,266202,255668,257408,259684,251045,147841 +,Missouri,4.73%,6.08%,7.24%,7.95%,8.72%,10.56%,11.90%,11.69%,11.73%,11.82%,13.76%,22.22%,25.05%,26.55%,28.04%,27.84%,27.50%,27.61%,28.88%,29.20%,30.10%,32.84%,25498,33035,38051,40642,43029,49891,52892,65039,70799,71839,37522 +,Illinois,4.91%,6.20%,6.86%,7.92%,9.02%,9.96%,10.98%,11.10%,11.44%,12.38%,13.60%,21.51%,22.27%,23.30%,24.28%,25.05%,25.34%,26.92%,27.42%,27.80%,28.84%,30.79%,248235,259022,280227,305248,321939,374554,361311,379034,391956,385744,206275 +,Idaho,4.71%,5.73%,6.55%,6.93%,7.23%,8.04%,9.21%,10.04%,10.37%,10.95%,13.08%,15.73%,19.12%,20.74%,22.16%,22.86%,23.51%,24.68%,25.38%,25.49%,25.82%,28.34%,27596,32315,34586,38062,44205,49752,57350,59977,64865,67611,36611 +,Connecticut,7.03%,7.99%,8.94%,9.68%,9.64%,9.26%,10.52%,11.39%,12.09%,11.42%,13.29%,18.22%,19.62%,21.06%,22.09%,21.58%,20.47%,22.20%,23.23%,23.93%,23.95%,26.28%,98899,113049,124609,132875,146613,180160,166611,166620,170884,176225,93555 +,Georgia,5.17%,5.95%,6.87%,7.90%,8.74%,8.99%,9.75%,10.54%,11.27%,12.41%,14.82%,21.32%,21.64%,23.00%,24.77%,25.41%,25.21%,25.95%,26.82%,27.62%,29.23%,31.73%,108518,133919,172585,195249,202301,238590,254597,283599,301350,303819,144184 +,Minnesota,6.47%,7.26%,8.00%,8.67%,8.69%,8.74%,9.40%,9.84%,10.39%,11.21%,12.68%,22.43%,22.79%,23.26%,23.57%,22.69%,21.93%,22.83%,23.37%,24.11%,25.17%,27.19%,144404,148051,151565,155839,161596,183619,172949,174870,176072,171583,90680 +,Florida,6.70%,7.47%,8.43%,9.38%,9.78%,8.97%,9.05%,10.42%,11.38%,12.41%,14.09%,21.69%,21.93%,22.14%,22.55%,22.00%,20.93%,21.27%,23.93%,25.06%,26.50%,28.50%,138752,155470,166898,172847,182498,255648,369650,464311,503159,526269,261419 +,Virginia,4.92%,5.64%,6.97%,8.33%,8.76%,9.06%,10.08%,10.27%,9.88%,10.42%,12.44%,23.32%,24.14%,25.16%,25.57%,25.06%,24.23%,25.56%,26.04%,26.25%,27.67%,30.27%,156976,179336,184633,196526,206229,243484,245675,270245,279269,276780,137116 +,Kansas,5.25%,6.62%,7.86%,8.43%,8.65%,8.75%,9.51%,9.54%,10.15%,10.98%,12.80%,24.16%,25.91%,27.01%,27.56%,26.64%,25.99%,26.79%,26.79%,27.31%,28.37%,30.50%,30280,32949,35020,37012,39444,44955,44387,56057,60848,64276,37212 +,Maine,6.07%,6.71%,8.12%,9.11%,9.16%,8.85%,9.84%,10.03%,10.39%,10.53%,12.18%,18.25%,19.72%,22.34%,24.15%,23.99%,22.94%,25.02%,25.35%,25.79%,25.62%,28.19%,22901,29709,32494,34863,35341,41716,41904,40969,42378,42536,24599 +,Texas,8.35%,9.03%,10.05%,10.78%,11.14%,10.51%,11.26%,12.02%,12.66%,13.44%,14.92%,23.73%,24.26%,25.80%,26.88%,27.80%,26.72%,28.98%,29.73%,29.74%,30.79%,32.60%,269821,335768,393055,443333,483309,671947,622171,654855,703619,735733,361388 +,Oklahoma,4.97%,6.96%,7.54%,7.64%,7.68%,8.14%,8.75%,9.68%,10.58%,11.82%,13.13%,24.17%,25.03%,28.61%,31.27%,31.28%,30.89%,31.19%,31.79%,32.76%,34.59%,36.17%,36428,51094,66029,70155,73891,79963,84385,95550,104451,107561,57062 +,New Jersey,5.20%,5.64%,7.00%,8.02%,8.86%,8.56%,9.61%,9.91%,10.23%,11.26%,13.56%,18.73%,19.43%,20.52%,21.60%,21.97%,20.23%,21.84%,23.02%,24.11%,25.51%,27.60%,41725,53667,71795,89509,102403,140373,149279,170629,192318,198685,96735 +,Nebraska,4.53%,5.11%,5.75%,6.13%,6.03%,6.10%,6.54%,7.14%,7.83%,8.46%,9.70%,20.61%,21.85%,22.70%,24.59%,24.82%,25.09%,25.39%,25.83%,25.80%,27.02%,28.19%,21738,27641,36751,40743,43384,49374,52676,53546,59634,64330,36769 +,New York,6.71%,7.33%,8.10%,8.97%,9.01%,9.25%,10.87%,11.37%,11.44%,12.04%,14.06%,19.65%,20.18%,20.57%,20.65%,19.35%,19.15%,22.12%,23.38%,23.77%,25.15%,27.79%,244612,284423,314566,360390,425906,562590,512765,525985,556489,548698,278921 +,Montana,3.89%,4.27%,4.98%,6.80%,7.41%,7.13%,7.12%,6.37%,6.05%,6.79%,7.85%,17.60%,18.51%,19.70%,19.19%,17.51%,16.33%,17.74%,17.74%,20.15%,21.85%,24.02%,16951,18564,19332,20008,21848,25892,25980,29282,31713,32237,16567 +,South Dakota,4.78%,5.79%,6.92%,7.69%,7.00%,6.76%,7.13%,7.76%,8.48%,9.16%,10.13%,23.78%,23.32%,22.58%,22.61%,21.39%,20.51%,21.62%,22.70%,22.68%,23.30%,23.82%,22616,23789,26499,27571,30541,33950,32925,31642,33275,33662,19610 +,New Mexico,6.59%,7.46%,8.55%,8.92%,7.14%,7.42%,8.38%,9.03%,9.40%,9.87%,11.33%,24.67%,24.59%,25.95%,26.99%,25.25%,25.57%,27.33%,27.51%,27.37%,28.15%,30.54%,31944,36364,40178,42728,45292,48460,47983,48521,49045,49880,26018 +,New Hampshire,5.53%,6.51%,7.49%,8.14%,8.15%,8.61%,8.50%,8.26%,8.33%,9.11%,10.63%,20.74%,20.15%,21.68%,22.62%,21.93%,22.53%,22.59%,22.48%,22.25%,22.89%,24.37%,25161,27523,28856,30298,31577,33548,34391,34332,35818,35859,20712 +,Arizona,5.68%,6.46%,7.14%,7.78%,7.32%,6.64%,8.17%,9.69%,10.12%,11.51%,13.79%,21.59%,22.04%,22.64%,23.49%,21.88%,18.79%,19.34%,20.54%,21.37%,23.27%,25.75%,30633,36431,38379,39002,41636,55330,70390,87157,104615,108444,54210 +,Utah,5.31%,5.21%,5.32%,5.30%,4.98%,8.29%,11.37%,12.23%,11.82%,9.37%,9.91%,17.45%,17.82%,18.26%,18.42%,17.21%,16.67%,17.17%,17.41%,17.01%,15.39%,18.52%,29758,32656,34863,37658,42715,54677,48034,51071,54317,94762,68216 +,Oregon,8.04%,8.63%,8.98%,9.15%,8.38%,6.86%,8.03%,8.36%,8.89%,9.56%,10.88%,22.51%,23.55%,24.19%,24.33%,22.56%,19.13%,22.48%,23.22%,23.55%,24.12%,26.06%,89036,94563,104911,111562,121194,160010,134233,133596,139152,142174,76439 +,Wyoming,5.13%,5.44%,5.92%,5.49%,6.25%,6.23%,6.78%,7.34%,7.70%,7.83%,8.47%,24.47%,23.93%,23.98%,22.65%,22.46%,20.93%,22.49%,23.26%,24.01%,25.18%,26.85%,5320,5420,5860,6524,6940,8433,8292,9445,10295,11706,6130 +,California,5.89%,6.07%,6.80%,7.05%,7.08%,7.19%,8.76%,9.86%,10.17%,11.42%,12.59%,19.27%,18.92%,19.65%,20.79%,19.63%,18.23%,19.92%,21.23%,22.00%,23.26%,24.61%,174008,220279,250508,305692,394793,505586,505666,538162,630527,642237,325443 +,Vermont,5.97%,6.50%,6.45%,7.04%,6.92%,6.76%,6.86%,6.55%,6.51%,6.81%,8.03%,19.22%,19.70%,20.01%,19.13%,17.70%,17.16%,18.32%,19.28%,19.80%,20.27%,21.44%,11953,12181,12271,14105,18430,21549,21246,22506,23146,22760,12833 +,Nevada,5.08%,5.86%,6.15%,6.06%,4.17%,4.70%,6.88%,7.47%,7.74%,7.37%,9.49%,21.48%,19.72%,21.21%,22.30%,16.46%,16.42%,21.14%,21.99%,23.17%,23.60%,26.53%,20582,27559,38085,43116,69609,70349,54762,54650,56100,64000,27049 +,Colorado,4.84%,5.69%,6.40%,6.90%,7.25%,7.15%,7.81%,7.85%,7.74%,8.18%,9.44%,15.86%,17.52%,18.71%,19.12%,18.80%,18.04%,19.99%,20.52%,20.93%,21.92%,23.82%,106163,121814,135136,144117,157938,202890,187351,198147,204826,200304,103426 +,Washington,5.15%,5.51%,7.37%,8.16%,7.63%,6.78%,6.54%,6.48%,6.58%,6.82%,8.09%,20.42%,20.87%,21.76%,22.32%,21.69%,19.65%,19.53%,19.29%,19.53%,20.35%,22.45%,58746,64396,70803,74376,78976,91170,90557,100782,106368,107561,50294 +,Alaska,4.08%,5.79%,6.35%,6.45%,6.97%,6.60%,6.35%,5.48%,3.99%,3.38%,4.28%,18.37%,21.09%,21.00%,19.77%,18.59%,18.63%,18.50%,18.96%,16.69%,16.37%,16.58%,833,915,976,976,1033,1181,1103,1076,1252,1625,748 +,Hawaii,6.90%,7.32%,8.04%,8.25%,7.81%,5.68%,6.88%,8.26%,9.18%,9.88%,10.98%,21.23%,21.73%,22.13%,21.79%,20.71%,15.17%,18.55%,20.10%,21.92%,23.18%,24.53%,25060,25013,24999,25529,24842,38182,33520,33900,34913,34838,15403 +,District of Columbia,2.02%,2.22%,2.88%,3.30%,3.16%,2.61%,4.77%,6.03%,6.83%,7.87%,8.99%,9.26%,9.91%,10.33%,10.54%,9.90%,9.32%,15.30%,16.94%,17.94%,20.36%,21.76%,4115,4775,5209,5371,5927,10185,8766,7599,8913,7627,2693 +,"Total: Total includes all data under the ≥ 18 and < 25 Years bucket, including data from rows not currently displayed.",6.39%,7.45%,8.71%,9.61%,9.80%,9.74%,10.73%,11.39%,11.76%,12.52%,14.11%,22.48%,23.37%,24.42%,25.20%,24.78%,23.98%,25.49%,26.28%,26.61%,27.61%,29.54%,4556970,5185251,5729172,6234710,6807279,8332689,8331064,8880946,9509839,9654900,5081628 +≥ 25 and < 35 Years,Puerto Rico,7.41%,5.73%,11.86%,15.00%,14.99%,15.07%,14.51%,36.71%,38.88%,40.66%,44.45%,24.34%,23.28%,27.56%,32.81%,28.24%,27.95%,29.91%,41.26%,42.06%,43.84%,47.83%,189,262,312,320,347,458,448,2642,7295,9991,4945 +,Ohio,11.04%,14.52%,18.20%,22.08%,23.18%,22.72%,23.67%,26.00%,27.58%,29.43%,32.18%,37.35%,39.51%,41.04%,41.92%,42.58%,42.02%,43.41%,44.89%,46.23%,48.02%,50.68%,645086,677722,707958,730372,750855,841022,850544,924153,973546,976158,611034 +,Kentucky,11.84%,15.33%,19.46%,21.40%,21.90%,21.76%,24.81%,28.20%,30.38%,32.33%,35.49%,38.66%,41.84%,44.51%,45.18%,45.42%,44.06%,46.52%,48.58%,49.59%,51.41%,54.30%,151879,173380,184098,193274,205527,253716,266131,278073,286613,284919,177005 +,West Virginia,12.60%,17.53%,23.27%,27.03%,27.05%,24.11%,25.81%,26.50%,27.78%,28.21%,31.10%,38.12%,37.38%,40.49%,43.49%,44.78%,44.56%,46.63%,47.38%,50.05%,53.06%,57.06%,37160,43335,51185,56841,62095,70728,71710,84654,95390,99742,59534 +,Pennsylvania,11.73%,13.83%,19.15%,21.85%,22.23%,21.37%,22.57%,23.97%,24.40%,25.44%,27.81%,31.38%,33.70%,35.60%,37.13%,37.47%,37.42%,39.24%,40.44%,41.20%,42.76%,45.40%,464179,569971,656176,715289,754915,912161,862886,887233,917930,902561,508550 +,Michigan,12.85%,14.48%,17.26%,19.25%,19.62%,21.10%,23.44%,24.24%,23.82%,25.30%,28.47%,36.98%,37.14%,38.63%,39.65%,37.53%,38.74%,41.23%,41.71%,41.39%,44.16%,47.74%,285415,327030,350410,356871,451755,502613,488026,509276,586942,621954,382067 +,Mississippi,7.48%,8.81%,9.62%,10.69%,13.59%,15.97%,18.87%,21.98%,26.00%,29.07%,33.25%,42.75%,41.90%,40.69%,42.69%,43.93%,43.27%,45.75%,48.07%,49.75%,52.77%,57.28%,56951,63323,80204,101697,107945,129482,138631,143207,145974,149310,80812 +,Alabama,12.64%,21.46%,25.49%,26.44%,27.03%,24.00%,27.98%,30.51%,32.72%,35.34%,41.28%,36.39%,37.79%,39.21%,40.38%,40.97%,40.86%,45.12%,46.20%,47.23%,50.13%,55.00%,16770,18471,19157,22553,25638,42225,46326,50926,51857,49931,24545 +,North Carolina,11.48%,14.31%,16.89%,18.68%,20.00%,19.31%,22.13%,23.61%,23.99%,25.43%,28.65%,35.82%,37.52%,38.45%,39.59%,40.11%,38.43%,41.43%,43.02%,43.85%,46.23%,49.43%,383226,418456,451766,506695,533835,674614,703364,739084,819174,824188,493814 +,Arkansas,11.86%,13.91%,17.09%,19.36%,21.85%,24.69%,27.29%,31.15%,33.21%,35.70%,39.10%,43.65%,45.12%,45.85%,45.81%,44.52%,44.93%,46.62%,48.67%,49.53%,51.15%,54.02%,53306,61816,65413,73289,82914,96795,89193,86431,88762,85724,51685 +,Louisiana,12.22%,16.67%,16.81%,16.81%,16.71%,16.25%,18.52%,20.86%,23.79%,26.37%,29.41%,37.02%,37.78%,38.96%,40.46%,40.71%,39.43%,41.92%,43.45%,45.69%,48.24%,51.20%,136161,151532,170384,183554,197167,234669,240807,258167,272858,273985,162170 +,North Dakota,11.59%,14.14%,16.32%,18.02%,17.58%,18.27%,19.52%,21.27%,22.42%,23.87%,26.27%,39.64%,39.72%,39.43%,39.10%,37.42%,36.50%,37.39%,39.17%,40.71%,42.72%,45.11%,56711,59225,60772,63261,67342,69601,70193,69468,74668,76564,49433 +,Indiana,10.98%,14.56%,19.38%,21.03%,20.52%,19.29%,20.20%,22.16%,23.58%,25.45%,28.66%,38.45%,39.63%,40.97%,42.54%,43.56%,44.35%,46.34%,47.43%,47.98%,49.87%,53.08%,179748,200975,215351,230961,239397,274507,283617,291515,299141,295698,179655 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,12,10 or fewer,15,14,16,16,12,10 or fewer,10 or fewer +,Sonora,,,,,,,,,21.33%,,,,,,,,,48.72%,41.86%,32.00%,34.69%,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,16,19,39,43,75,98,16 +,Rhode Island,7.50%,9.37%,11.32%,12.60%,13.17%,14.12%,14.59%,16.33%,18.45%,21.55%,24.87%,16.72%,20.00%,21.52%,22.69%,23.31%,23.45%,25.40%,29.45%,30.05%,33.12%,37.15%,41086,47625,49535,52494,51851,57074,64711,66241,79034,69728,38224 +,Iowa,12.34%,15.07%,16.63%,16.73%,16.09%,16.59%,18.01%,19.63%,21.66%,25.36%,28.09%,37.22%,39.60%,40.58%,41.37%,41.19%,42.06%,44.09%,45.44%,46.38%,48.80%,51.28%,137940,142575,146550,151389,157707,170598,168588,176583,184355,191134,118832 +,Delaware,8.62%,11.37%,16.32%,19.47%,20.07%,20.93%,23.25%,23.85%,24.12%,24.96%,26.59%,28.18%,35.79%,40.67%,43.04%,43.98%,43.67%,46.33%,47.54%,48.70%,50.43%,52.48%,12409,19054,22102,24645,26269,31513,33122,36659,38259,38211,21840 +,South Carolina,9.69%,11.93%,14.90%,16.54%,17.47%,16.58%,18.18%,19.20%,20.40%,21.57%,24.05%,32.63%,36.12%,38.93%,40.36%,40.59%,38.89%,41.56%,43.66%,45.40%,46.57%,48.87%,113963,147147,161647,185141,202064,268541,306890,344889,364791,365926,235184 +,Massachusetts,12.05%,12.34%,13.45%,16.00%,16.76%,16.52%,17.69%,18.55%,19.44%,20.87%,24.20%,26.67%,26.33%,28.15%,30.29%,29.28%,27.70%,29.45%,31.51%,32.88%,34.70%,37.74%,160401,194909,231944,245182,258484,300180,314410,351986,386056,392217,232726 +,Maryland,10.86%,13.19%,15.59%,17.79%,17.89%,16.23%,19.89%,20.97%,21.40%,22.57%,26.54%,32.57%,34.37%,35.44%,36.78%,35.19%,31.88%,38.73%,40.83%,41.97%,44.12%,47.79%,80421,101955,119462,139703,160530,211879,190246,192559,197192,197619,101893 +,Tennessee,7.73%,8.49%,10.81%,12.74%,15.11%,17.10%,19.17%,21.66%,22.29%,23.89%,28.18%,40.31%,37.54%,40.70%,42.47%,41.74%,40.76%,42.08%,42.67%,41.96%,46.59%,52.18%,46926,62893,73706,78718,86100,102577,108340,114370,129263,148849,78391 +,Wisconsin,11.09%,12.00%,12.93%,13.81%,13.98%,14.61%,16.60%,17.89%,19.29%,21.37%,23.44%,35.76%,36.76%,37.46%,37.98%,37.20%,37.16%,39.35%,40.71%,41.71%,43.52%,45.22%,297640,304966,315722,326205,346944,390773,372859,376737,380843,369562,237736 +,Missouri,8.53%,11.04%,12.92%,14.44%,15.71%,17.57%,19.64%,20.11%,21.26%,22.10%,24.95%,33.15%,36.66%,39.28%,40.65%,40.59%,39.52%,39.88%,41.71%,43.16%,44.94%,48.40%,43208,54198,60555,65201,68951,79951,85843,104043,112649,113808,66509 +,Illinois,8.19%,10.60%,11.80%,13.91%,15.84%,17.40%,19.52%,20.06%,21.15%,22.80%,25.61%,32.57%,33.62%,34.84%,36.24%,37.26%,38.00%,41.11%,41.92%,43.09%,45.19%,48.22%,357127,372435,403449,439281,474272,545552,524842,558896,584312,580413,339043 +,Idaho,8.43%,9.82%,11.06%,11.90%,12.63%,13.92%,16.40%,18.37%,19.31%,20.42%,23.88%,25.08%,28.66%,31.39%,33.26%,34.11%,34.87%,37.49%,39.49%,40.35%,41.25%,44.20%,44142,50695,53649,58599,66989,76072,85253,87817,93194,95855,56129 +,Connecticut,10.24%,11.66%,13.22%,14.33%,14.31%,14.29%,16.73%,18.56%,19.62%,20.49%,23.65%,27.83%,29.52%,32.22%,33.85%,33.41%,32.60%,35.71%,37.78%,38.98%,39.93%,43.26%,141157,166173,186323,201102,225733,267721,251710,251748,260901,272081,160804 +,Georgia,9.25%,10.47%,12.26%,14.11%,15.92%,16.14%,17.40%,18.83%,20.47%,22.63%,27.18%,32.51%,32.50%,33.82%,36.89%,38.54%,38.26%,39.33%,40.57%,42.42%,45.34%,49.36%,159142,196271,252268,286281,294526,350794,379881,433898,460836,463143,237785 +,Minnesota,11.18%,12.40%,13.70%,14.88%,14.90%,14.88%,16.70%,17.77%,19.42%,21.11%,24.05%,34.73%,35.02%,35.34%,35.93%,34.95%,33.66%,35.80%,36.69%,38.81%,41.24%,44.07%,233444,241211,245312,249927,256327,290728,264711,268834,262686,252463,144524 +,Florida,11.25%,12.83%,14.76%,16.25%,16.74%,15.71%,15.92%,18.07%,20.04%,21.91%,25.55%,34.19%,34.76%,35.06%,35.35%,34.22%,33.10%,33.22%,37.21%,39.60%,42.19%,45.56%,202788,223218,238140,247342,262007,374904,558185,713794,779263,817268,431419 +,Virginia,8.88%,10.04%,12.15%,14.36%,15.60%,16.22%,17.93%,18.45%,18.56%,19.61%,23.29%,35.22%,36.37%,37.53%,38.19%,38.40%,37.35%,39.33%,40.30%,41.00%,43.42%,47.11%,266354,300807,310811,332939,346152,401328,405493,447906,458451,456185,248909 +,Kansas,9.26%,11.81%,13.97%,14.96%,14.99%,14.75%,15.97%,16.27%,17.88%,20.41%,23.46%,35.03%,37.58%,38.58%,39.92%,38.94%,37.47%,38.51%,38.93%,41.18%,44.29%,47.30%,49526,52623,55538,57487,60362,69375,67957,86237,93972,97930,63698 +,Maine,8.61%,9.70%,12.04%,13.78%,14.01%,14.02%,16.11%,17.34%,18.50%,18.89%,21.74%,25.22%,26.60%,30.87%,33.09%,33.07%,32.24%,35.92%,37.40%,38.75%,39.85%,43.31%,34908,46514,50705,55556,57731,67891,68516,65995,66968,65496,40047 +,Texas,12.20%,13.60%,15.54%,16.86%,17.49%,16.86%,18.25%,19.97%,21.25%,22.79%,25.60%,33.17%,33.98%,36.12%,37.74%,39.09%,38.04%,41.43%,43.20%,44.00%,46.35%,49.15%,420964,532120,608850,678617,740840,1006213,962376,1020661,1120671,1190061,642815 +,Oklahoma,7.89%,12.25%,13.49%,13.64%,13.44%,14.11%,15.44%,17.22%,18.61%,20.46%,23.40%,33.09%,34.69%,39.19%,42.28%,42.94%,42.92%,44.09%,45.32%,47.21%,50.11%,52.59%,59525,83272,107005,113283,117887,127830,132674,146926,159842,161003,91915 +,New Jersey,7.96%,8.48%,10.74%,12.72%,14.80%,14.73%,16.71%,17.29%,17.90%,19.75%,24.02%,27.88%,27.88%,29.87%,32.13%,32.95%,31.65%,34.54%,36.25%,38.32%,40.62%,43.86%,59906,82813,117013,146801,171142,228241,241234,276023,312093,327196,172805 +,Nebraska,9.95%,11.31%,11.63%,12.60%,13.05%,13.15%,14.07%,15.72%,16.68%,18.73%,21.48%,34.43%,36.13%,36.05%,38.90%,39.85%,40.44%,41.44%,42.47%,42.79%,45.08%,47.41%,30125,36439,50013,56526,61016,68313,71887,73606,84439,89955,56331 +,New York,9.76%,10.64%,11.83%,13.27%,12.77%,13.25%,16.26%,17.54%,18.05%,19.38%,22.46%,29.25%,30.01%,30.81%,30.92%,27.48%,27.26%,32.37%,34.39%,35.23%,37.56%,41.04%,374323,437985,484317,561081,710556,935567,838693,867456,920172,918797,514434 +,Montana,6.87%,7.97%,9.05%,13.74%,15.98%,16.33%,17.04%,15.41%,14.53%,15.12%,16.55%,27.46%,29.58%,31.00%,30.66%,28.59%,27.04%,29.87%,29.70%,34.17%,37.05%,40.11%,24358,26816,28438,29562,31521,36740,36355,43322,47793,48997,27920 +,South Dakota,10.21%,12.04%,12.96%,14.23%,13.31%,12.93%,14.45%,16.45%,18.33%,20.17%,23.27%,37.44%,36.37%,34.91%,34.95%,32.64%,31.45%,34.24%,35.64%,36.68%,38.41%,41.31%,32958,33771,37381,38604,42513,47502,45447,43600,45434,46064,28806 +,New Mexico,10.19%,11.43%,13.14%,13.79%,12.15%,12.22%,14.15%,15.47%,16.46%,17.67%,20.21%,36.81%,36.05%,37.78%,39.35%,36.94%,36.72%,39.47%,40.51%,41.53%,43.41%,46.71%,46877,54723,61603,65562,69916,74965,74348,75044,76869,77242,43663 +,New Hampshire,9.21%,10.86%,12.54%,13.79%,14.10%,15.16%,16.01%,16.30%,17.07%,18.30%,20.66%,31.29%,30.24%,32.30%,33.79%,33.10%,34.47%,35.95%,36.73%,37.60%,39.19%,41.75%,36067,39901,42792,44895,47611,49800,50752,50311,50956,49911,30792 +,Arizona,10.84%,11.61%,12.76%,13.51%,12.74%,11.50%,13.86%,16.44%,17.73%,20.08%,24.01%,32.84%,33.19%,34.65%,35.32%,32.27%,28.40%,30.07%,31.98%,33.79%,37.03%,40.48%,50514,61024,64841,67467,74227,99795,118737,143659,169611,178559,96609 +,Utah,8.82%,9.67%,10.13%,10.16%,9.63%,14.77%,21.53%,23.31%,23.26%,19.06%,20.39%,27.72%,28.22%,29.06%,29.13%,27.67%,26.34%,27.64%,27.87%,27.99%,26.17%,31.26%,49234,52226,54021,57732,64351,84579,72103,77840,83332,143215,107989 +,Oregon,11.43%,12.28%,12.70%,12.94%,12.15%,10.06%,12.63%,13.47%,14.73%,16.05%,18.41%,30.92%,32.23%,33.01%,32.73%,30.36%,25.37%,30.77%,32.50%,33.72%,35.40%,38.18%,144188,151606,170506,180264,198327,266619,218016,217075,224442,227133,131982 +,Wyoming,8.78%,9.64%,10.59%,11.46%,11.86%,13.39%,15.02%,14.48%,15.38%,16.05%,18.47%,36.38%,35.77%,36.76%,36.15%,35.39%,35.41%,37.19%,37.87%,39.80%,41.95%,44.87%,8620,9154,9728,10188,10545,12199,11964,13698,14530,16811,9199 +,California,8.62%,9.00%,10.15%,10.61%,10.47%,10.25%,12.50%,14.33%,15.41%,17.50%,19.82%,27.21%,27.16%,28.37%,29.59%,27.83%,25.56%,27.91%,29.75%,31.27%,33.55%,35.89%,279858,358232,409567,508815,650925,840779,844335,896784,1046677,1055783,571357 +,Vermont,8.03%,8.95%,9.64%,11.34%,11.93%,12.00%,12.47%,12.75%,13.17%,14.48%,16.68%,27.87%,28.29%,28.62%,27.08%,26.54%,26.60%,28.86%,30.39%,31.44%,32.69%,34.91%,20047,20656,21350,25008,32036,36611,35469,36944,36987,35600,21142 +,Nevada,9.78%,10.48%,10.41%,10.87%,7.59%,8.46%,11.80%,13.41%,14.49%,13.85%,17.67%,31.65%,29.31%,30.15%,31.97%,23.66%,24.17%,29.67%,31.84%,33.69%,34.96%,39.37%,31637,42380,61559,71429,116301,119868,98223,97720,100658,114373,52189 +,Colorado,7.43%,8.39%,9.30%,10.58%,11.35%,11.01%,12.81%,13.12%,13.21%,14.15%,16.10%,23.66%,25.28%,26.83%,27.08%,26.78%,24.67%,28.06%,28.79%,30.34%,32.81%,35.76%,161478,188050,214788,230989,257827,342842,321794,348275,370631,364772,206816 +,Washington,8.10%,8.87%,13.09%,14.48%,13.66%,11.67%,10.56%,10.63%,11.42%,12.04%,14.30%,29.36%,30.06%,31.15%,31.60%,30.29%,27.48%,26.32%,26.58%,28.40%,30.30%,33.16%,102385,111947,122368,129050,138288,160482,172666,199138,207738,205404,103813 +,Alaska,9.84%,10.67%,12.15%,13.03%,13.01%,12.81%,13.69%,13.61%,11.57%,8.31%,9.37%,30.71%,33.45%,32.97%,32.23%,31.64%,31.03%,34.60%,36.59%,32.22%,29.56%,33.72%,1270,1387,1629,1635,1691,1866,1636,1506,1642,1901,854 +,Hawaii,10.79%,12.26%,13.38%,13.57%,13.27%,10.57%,12.97%,15.13%,16.72%,17.89%,20.50%,29.90%,30.91%,31.48%,31.35%,29.96%,24.91%,29.66%,31.96%,33.78%,35.95%,38.10%,43834,43948,43767,45021,45141,63235,55967,56302,59250,57302,28786 +,District of Columbia,4.18%,4.54%,4.87%,5.67%,5.16%,4.36%,7.99%,9.77%,9.78%,11.38%,13.68%,17.69%,17.43%,17.43%,18.08%,16.08%,15.01%,23.15%,24.54%,24.09%,26.93%,29.07%,3685,4361,5256,6046,7828,20055,20778,21501,28854,26222,10802 +,"Total: Total includes all data under the ≥ 25 and < 35 Years bucket, including data from rows not currently displayed.",10.49%,12.35%,14.57%,16.21%,16.57%,16.41%,18.31%,19.76%,20.79%,22.35%,25.45%,33.27%,34.29%,35.61%,36.67%,36.05%,35.01%,37.66%,39.21%,40.35%,42.49%,45.65%,6972043,7975561,8828379,9630935,10615857,12954824,12954494,13883079,14892450,15145415,8680558 +≥ 35 and < 45 Years,Puerto Rico,8.17%,14.03%,15.79%,17.89%,18.52%,18.61%,21.09%,46.60%,48.78%,50.27%,53.44%,28.79%,29.25%,35.00%,32.89%,33.86%,33.86%,34.86%,51.23%,51.99%,52.81%,56.07%,257,335,380,380,378,446,479,2674,6865,9207,5017 +,Ohio,14.90%,19.48%,23.68%,27.99%,29.04%,28.27%,28.97%,31.63%,33.25%,35.12%,37.87%,43.86%,45.86%,47.11%,47.86%,48.35%,47.46%,48.23%,49.38%,50.77%,52.35%,55.00%,658283,684740,716036,739034,762436,856024,879411,970654,1029321,1044010,697820 +,Kentucky,15.20%,19.76%,24.36%,26.57%,27.20%,26.48%,29.64%,33.17%,35.08%,36.62%,39.86%,44.97%,47.61%,50.10%,50.61%,50.76%,49.14%,51.16%,52.79%,53.43%,54.73%,57.51%,168758,191245,204469,212520,221680,268149,281731,293369,302860,302733,198724 +,West Virginia,16.66%,23.08%,29.57%,34.01%,33.84%,29.99%,30.10%,29.94%,31.76%,32.47%,35.58%,46.36%,45.52%,47.46%,49.83%,50.87%,50.17%,51.63%,51.36%,53.80%,56.39%,60.60%,41697,47982,57318,63228,67370,76578,77593,91145,102594,106892,67132 +,Pennsylvania,15.22%,18.00%,24.68%,27.59%,28.13%,26.63%,27.43%,28.88%,29.32%,30.20%,32.65%,38.78%,40.89%,42.26%,43.39%,43.81%,42.83%,44.41%,45.47%,46.00%,47.29%,49.74%,459156,559386,647799,707945,744733,913033,895588,943978,995455,1005490,602107 +,Michigan,18.12%,20.11%,23.36%,25.60%,25.45%,26.97%,29.70%,30.67%,30.17%,32.02%,35.70%,44.03%,43.96%,45.04%,45.71%,42.84%,43.83%,46.28%,46.78%,45.98%,48.60%,52.13%,276831,312197,330728,336672,431144,483853,476867,502616,596380,647268,427765 +,Mississippi,11.89%,13.43%,14.12%,15.42%,19.48%,22.29%,25.67%,29.14%,32.76%,35.97%,40.52%,49.05%,47.60%,46.45%,48.37%,49.74%,48.92%,51.54%,53.44%,54.28%,57.08%,61.47%,61569,68558,90473,114258,120991,144755,154719,160228,165229,166898,98119 +,Alabama,18.69%,29.84%,34.96%,35.20%,35.44%,30.99%,35.46%,37.29%,38.86%,41.07%,46.21%,45.78%,47.11%,49.01%,49.03%,49.26%,46.62%,50.62%,50.92%,51.39%,53.46%,57.89%,22349,23753,24545,28588,31231,50765,55151,60622,61476,59934,32191 +,North Carolina,15.53%,19.27%,22.72%,24.95%,26.49%,24.76%,27.99%,29.71%,29.96%,31.03%,34.46%,42.96%,44.24%,45.26%,46.17%,46.45%,43.65%,46.45%,47.87%,48.61%,50.40%,53.63%,418493,447806,476819,527055,545809,695006,726051,769401,854250,870091,556994 +,Arkansas,15.19%,18.10%,22.13%,24.30%,26.90%,29.78%,32.63%,37.07%,39.23%,41.80%,45.00%,48.13%,50.11%,51.02%,50.45%,49.32%,49.13%,50.28%,51.99%,52.34%,54.18%,56.70%,56676,66833,71030,78537,86261,99886,94647,93479,96020,93804,61408 +,Louisiana,18.15%,23.72%,24.04%,24.36%,24.06%,22.59%,24.91%,27.21%,29.76%,32.04%,35.63%,44.88%,45.48%,46.41%,48.04%,48.00%,45.70%,47.79%,49.12%,50.78%,52.63%,55.48%,140967,156909,178347,195088,210965,253015,266024,285487,304666,308942,196853 +,North Dakota,17.41%,20.74%,23.32%,24.99%,24.57%,24.54%,25.83%,27.21%,28.19%,29.70%,32.14%,47.39%,47.48%,46.46%,46.03%,43.71%,42.38%,42.73%,43.80%,45.33%,46.79%,48.52%,48645,51787,54249,57808,62304,66744,68805,71290,78519,81786,54911 +,Indiana,14.69%,19.33%,24.67%,26.85%,26.64%,24.81%,25.53%,27.59%,29.01%,30.98%,34.40%,44.58%,45.97%,47.13%,48.50%,49.14%,49.36%,50.73%,51.83%,52.37%,53.86%,56.93%,188440,208172,224870,241034,249289,286775,298365,306914,316408,316002,203020 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,11,17,18,16,12,16,18,21,19,14,10 or fewer +,Sonora,,,,,,,,,,,,,,,,,,,,,38.24%,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,12,25,34,10 or fewer +,Rhode Island,10.18%,12.69%,15.32%,17.08%,17.96%,19.52%,19.67%,21.43%,23.72%,27.06%,30.79%,21.46%,25.43%,27.53%,28.71%,29.39%,29.11%,30.51%,35.11%,35.78%,38.73%,43.13%,41305,46928,48145,50574,49701,55739,63704,67475,80302,74415,44345 +,Iowa,17.41%,20.78%,22.30%,22.15%,21.07%,20.98%,22.60%,24.27%,26.51%,30.49%,33.64%,43.31%,45.83%,46.64%,47.21%,46.75%,47.02%,48.99%,50.12%,51.12%,53.31%,55.80%,130238,135948,142515,149819,157676,173388,173039,183415,193714,205590,133541 +,Delaware,9.45%,13.29%,19.83%,23.06%,24.05%,25.06%,28.31%,29.52%,30.56%,31.10%,31.84%,35.19%,42.00%,45.97%,48.48%,49.11%,48.53%,51.48%,52.87%,54.09%,55.43%,55.98%,12088,18380,21497,24367,26553,32600,34173,38699,40978,42276,25781 +,South Carolina,12.60%,15.75%,19.68%,21.82%,22.97%,21.00%,22.77%,24.12%,25.49%,26.36%,29.03%,39.70%,43.04%,45.43%,46.56%,46.69%,43.72%,46.29%,48.53%,50.42%,51.32%,53.71%,124326,155840,168374,192018,207510,281814,326189,367217,394824,402182,271137 +,Massachusetts,16.13%,16.38%,17.66%,21.10%,22.37%,22.07%,23.28%,24.51%,25.58%,27.23%,31.15%,32.78%,32.08%,33.99%,36.59%,36.20%,34.67%,35.86%,38.16%,39.79%,41.17%,44.04%,154276,190198,227942,239882,247169,285273,308413,347872,389815,408009,262242 +,Maryland,13.97%,16.93%,20.19%,22.98%,23.52%,20.86%,25.38%,26.68%,27.10%,28.42%,32.88%,39.85%,41.76%,42.29%,43.90%,42.60%,37.60%,44.74%,46.46%,47.24%,49.19%,52.94%,73715,93423,112865,136829,155250,213658,197121,205647,216093,221425,125583 +,Tennessee,11.64%,12.80%,15.45%,18.09%,20.63%,22.75%,25.02%,27.36%,27.72%,29.38%,33.94%,47.26%,44.41%,46.72%,48.45%,47.51%,45.79%,46.89%,46.97%,45.90%,50.31%,55.45%,52134,67165,77372,82151,87511,104607,110484,118056,135439,158390,92676 +,Wisconsin,14.84%,15.97%,17.03%,18.03%,18.11%,18.71%,21.01%,22.62%,24.39%,26.85%,28.71%,42.92%,43.58%,44.19%,44.66%,43.57%,43.20%,45.25%,46.48%,47.37%,48.99%,50.13%,289902,298825,312456,326885,349849,397671,387599,396724,404106,398691,268867 +,Missouri,11.75%,14.67%,17.35%,19.03%,20.51%,22.42%,24.79%,25.71%,26.99%,28.36%,31.50%,40.70%,44.04%,46.15%,47.64%,47.73%,45.93%,45.77%,47.15%,47.92%,49.55%,52.82%,45546,56093,63563,68984,72857,83636,89962,108204,116752,117999,73975 +,Illinois,11.00%,13.84%,15.20%,17.89%,20.36%,22.26%,24.46%,25.18%,26.50%,28.36%,31.49%,39.22%,40.60%,41.62%,42.77%,43.76%,44.08%,46.63%,47.40%,48.62%,50.56%,53.85%,373490,388512,420447,457262,483199,550532,541515,576992,606422,607565,376817 +,Idaho,10.91%,12.83%,14.51%,15.32%,15.97%,17.35%,20.28%,22.63%,23.87%,24.69%,28.31%,31.65%,34.19%,36.33%,37.30%,37.99%,38.26%,40.71%,42.39%,43.35%,43.54%,46.61%,49041,54961,58268,64393,72334,82896,93558,96860,101452,103159,63459 +,Connecticut,12.63%,14.29%,16.15%,17.61%,17.99%,18.00%,20.57%,22.75%,24.24%,25.27%,28.83%,34.07%,35.26%,37.67%,39.68%,39.49%,38.40%,41.23%,43.01%,44.07%,44.76%,47.98%,151043,174001,195260,209848,232808,278529,269528,274856,288663,308870,199362 +,Georgia,13.88%,15.55%,17.98%,20.38%,22.23%,22.07%,23.41%,24.77%,26.36%,28.09%,33.32%,39.79%,39.72%,40.68%,43.60%,45.36%,44.80%,45.79%,46.39%,47.87%,50.16%,54.54%,178937,218728,267562,300079,308322,368594,409576,473355,506350,514065,287297 +,Minnesota,15.59%,16.94%,18.54%,19.99%,20.15%,19.56%,21.90%,23.19%,25.24%,27.22%,30.32%,41.46%,41.53%,41.81%,42.30%,41.27%,39.11%,41.31%,42.13%,44.25%,46.41%,48.07%,217117,228877,239703,250358,258208,304396,281020,291486,291158,285281,172604 +,Florida,14.50%,16.77%,19.29%,21.34%,21.77%,20.27%,20.60%,23.32%,25.68%,27.75%,32.20%,38.52%,39.52%,39.98%,40.52%,39.45%,37.59%,37.34%,41.41%,43.92%,46.40%,50.14%,204379,226238,241843,252739,269629,391807,599237,774892,849467,911553,519683 +,Virginia,12.15%,13.61%,16.24%,18.58%,19.88%,20.52%,22.62%,23.02%,23.08%,24.07%,28.46%,39.80%,41.29%,42.46%,42.93%,43.41%,42.33%,44.15%,44.64%,45.52%,47.51%,51.40%,280177,322004,339190,369255,388103,452436,466111,518300,532721,536251,315672 +,Kansas,12.67%,15.59%,18.18%,19.58%,19.98%,19.44%,20.93%,21.73%,23.42%,26.26%,29.30%,41.65%,43.78%,44.74%,45.60%,44.77%,42.46%,43.66%,43.54%,45.27%,48.01%,50.41%,51685,55888,59631,62952,66082,76497,76052,97240,106191,111850,77488 +,Maine,11.87%,13.59%,16.63%,18.22%,18.49%,17.89%,20.19%,21.14%,22.14%,21.68%,24.54%,30.72%,32.43%,37.23%,39.16%,39.23%,37.66%,40.76%,41.74%,42.69%,42.80%,46.26%,36165,47601,52164,57661,59996,72445,75258,74402,77785,79031,52083 +,Texas,15.22%,17.47%,20.07%,21.77%,22.39%,21.07%,23.27%,25.00%,26.06%,27.49%,30.78%,38.93%,40.11%,42.24%,43.46%,44.38%,42.64%,46.28%,47.62%,47.86%,49.74%,52.84%,453558,580935,666902,738999,798709,1083993,1052624,1125194,1258241,1337463,780953 +,Oklahoma,11.64%,17.33%,19.03%,19.52%,19.01%,19.45%,21.06%,22.32%,23.28%,25.02%,28.44%,39.22%,39.22%,44.13%,47.57%,48.28%,47.67%,48.39%,48.99%,50.08%,52.75%,55.64%,62205,86312,111220,120590,125482,138848,145767,163626,177697,179834,107008 +,New Jersey,10.92%,11.46%,14.32%,16.32%,18.80%,18.08%,20.36%,21.23%,22.00%,24.24%,29.46%,35.58%,35.20%,35.78%,37.75%,39.20%,36.80%,39.86%,41.47%,43.25%,45.57%,49.29%,60607,82543,122301,157631,178586,243545,264179,305417,345790,363661,207706 +,Nebraska,13.31%,15.18%,15.55%,16.64%,17.03%,17.15%,18.80%,20.76%,21.69%,23.66%,26.91%,41.29%,43.37%,41.41%,43.54%,44.73%,45.18%,46.36%,47.18%,47.09%,49.69%,52.01%,27607,33593,47831,55178,60472,69649,73305,76961,88458,94240,61435 +,New York,12.17%,13.42%,14.71%,16.54%,16.53%,16.84%,20.00%,21.75%,22.62%,24.11%,27.60%,34.20%,35.42%,36.40%,36.44%,33.87%,33.16%,38.19%,40.38%,41.03%,43.11%,46.72%,374654,430043,480816,561384,676818,895115,839254,876882,940447,962116,585023 +,Montana,9.65%,10.87%,11.76%,17.58%,20.48%,21.03%,21.86%,19.88%,18.49%,19.27%,20.50%,33.68%,35.26%,36.35%,35.63%,33.65%,31.75%,33.93%,33.65%,37.33%,40.16%,43.73%,23252,25519,27298,28730,30896,35424,35428,43018,50505,52363,31560 +,South Dakota,14.39%,17.02%,17.89%,19.61%,18.47%,17.46%,19.31%,21.20%,22.37%,24.34%,27.73%,43.96%,42.72%,40.03%,40.05%,37.68%,35.59%,38.20%,39.90%,40.42%,41.79%,43.99%,31240,33076,37114,38962,42991,49200,47321,47298,48187,48392,30886 +,New Mexico,14.12%,15.41%,17.26%,18.23%,15.88%,15.68%,17.59%,19.25%,20.45%,21.92%,25.30%,44.60%,43.44%,44.82%,45.69%,42.37%,41.63%,44.15%,45.34%,45.85%,46.77%,50.32%,43933,51729,58811,63461,68018,74753,75897,78105,80209,82179,49288 +,New Hampshire,10.23%,12.15%,14.38%,16.29%,16.46%,17.64%,18.77%,19.75%,20.75%,22.40%,25.05%,37.11%,36.08%,38.57%,40.27%,39.39%,40.59%,41.66%,42.12%,42.58%,43.70%,46.06%,38953,42052,45001,46706,48694,51806,54135,54274,56217,57699,38158 +,Arizona,14.40%,14.93%,16.85%,17.90%,16.92%,15.20%,17.64%,20.72%,22.44%,24.96%,28.56%,39.56%,40.08%,41.52%,42.01%,38.10%,33.38%,34.91%,37.23%,38.92%,41.99%,45.33%,53695,63230,67144,69340,76777,103170,123783,146216,168665,179895,104480 +,Utah,10.58%,11.57%,11.86%,12.13%,12.10%,18.72%,27.01%,28.96%,28.69%,23.82%,25.79%,32.38%,33.33%,33.99%,34.22%,33.47%,31.89%,33.16%,33.14%,33.12%,29.20%,34.42%,47680,51677,54253,58207,63129,79522,70112,75665,80089,140413,108252 +,Oregon,14.96%,15.80%,16.10%,16.15%,15.25%,12.26%,15.36%,16.40%,17.74%,18.94%,21.57%,35.74%,37.44%,38.03%,37.79%,35.44%,28.60%,34.25%,36.20%,37.64%,38.56%,40.91%,139765,148330,167246,178735,193567,268144,222213,225622,235808,244009,150598 +,Wyoming,13.92%,14.89%,14.85%,16.07%,16.54%,17.91%,19.96%,19.27%,19.27%,19.96%,23.61%,43.12%,42.92%,43.30%,42.00%,41.14%,41.04%,41.80%,41.39%,42.32%,43.63%,47.92%,8759,9384,10218,11241,11855,13627,13743,15652,17010,19572,11309 +,California,11.46%,11.72%,13.18%,13.83%,13.47%,12.80%,15.23%,17.08%,18.45%,20.86%,23.81%,31.84%,31.57%,33.08%,34.27%,32.40%,29.17%,31.49%,33.14%,34.46%,36.53%,39.01%,267245,358348,412281,505641,631946,828764,841356,907666,1069155,1098094,641589 +,Vermont,10.35%,11.49%,12.06%,13.81%,14.00%,13.98%,14.02%,13.93%,14.56%,16.29%,18.82%,34.71%,35.23%,35.20%,32.99%,30.83%,30.46%,31.72%,32.91%,33.54%,34.77%,37.08%,22607,23274,24191,28546,35577,41025,41587,44005,45661,45415,28690 +,Nevada,14.03%,15.38%,15.11%,15.53%,10.85%,11.63%,15.66%,17.39%,18.74%,18.11%,22.36%,36.14%,34.24%,35.06%,37.15%,27.50%,27.39%,33.57%,35.40%,37.07%,38.15%,42.54%,30399,39623,55860,64051,101323,109798,93825,95177,102288,118298,59659 +,Colorado,10.31%,11.55%,12.66%,14.61%,15.48%,14.83%,16.89%,16.81%,16.93%,17.81%,19.89%,28.55%,30.86%,32.79%,33.21%,32.61%,29.99%,33.20%,33.23%,34.55%,36.31%,38.76%,146496,169308,193862,210779,236641,311853,301931,330702,364288,370253,226149 +,Washington,10.60%,11.58%,16.82%,18.52%,17.88%,15.53%,13.35%,13.30%,14.23%,15.26%,18.24%,34.93%,35.33%,36.74%,37.16%,36.27%,32.76%,30.79%,30.94%,32.93%,34.83%,38.21%,92180,101684,113103,121149,129382,151939,169016,203924,218121,220395,122633 +,Alaska,12.21%,15.12%,18.06%,19.08%,17.79%,18.47%,17.98%,16.89%,16.74%,13.93%,14.14%,38.55%,37.53%,38.75%,38.93%,39.85%,39.91%,40.71%,40.43%,38.96%,37.10%,40.25%,991,1111,1329,1436,1473,1646,1496,1474,1440,1515,785 +,Hawaii,11.78%,13.45%,14.64%,15.20%,14.58%,12.01%,14.59%,16.99%,18.42%,19.82%,22.91%,30.83%,32.14%,32.75%,32.93%,31.64%,26.17%,30.64%,33.37%,35.28%,37.32%,40.26%,47306,48479,49141,51053,51483,70840,63956,65552,68997,67990,36682 +,District of Columbia,7.94%,8.25%,8.17%,9.39%,8.19%,6.51%,10.50%,13.31%,13.02%,15.58%,19.46%,28.35%,28.08%,26.48%,27.89%,23.15%,20.78%,30.38%,32.86%,30.27%,33.85%,38.23%,2053,2304,2912,3438,4787,14263,16775,17794,23860,21806,9766 +,"Total: Total includes all data under the ≥ 35 and < 45 Years bucket, including data from rows not currently displayed.",14.05%,16.48%,19.18%,21.14%,21.58%,21.01%,23.09%,24.70%,25.81%,27.40%,30.87%,39.61%,40.59%,41.78%,42.70%,42.09%,40.39%,42.79%,44.14%,45.09%,46.86%,50.03%,7067921,8074997,8975181,9821359,10711972,13178474,13464703,14610517,15837699,16359309,10045364 +≥ 45 and < 55 Years,Puerto Rico,15.24%,17.32%,21.61%,21.89%,22.94%,20.61%,19.30%,50.53%,52.91%,54.82%,58.02%,39.04%,36.58%,41.65%,43.58%,42.75%,39.18%,39.23%,54.86%,55.43%,57.31%,60.08%,374,462,509,530,510,587,627,3212,7787,10206,6167 +,Ohio,16.43%,21.93%,26.84%,32.00%,33.42%,32.62%,33.49%,36.75%,38.48%,40.24%,41.96%,46.20%,48.68%,50.29%,51.62%,52.46%,51.67%,52.55%,53.86%,55.23%,56.48%,58.35%,801554,816844,831178,832878,833884,911253,912836,999047,1041234,1047123,746426 +,Kentucky,16.95%,22.20%,27.34%,30.14%,31.21%,30.61%,33.95%,38.02%,40.09%,41.32%,43.99%,47.43%,50.29%,53.19%,54.20%,54.83%,53.63%,55.71%,57.21%,57.73%,58.53%,60.58%,205909,231174,243430,247848,250962,290749,305104,315360,321260,321807,225107 +,West Virginia,17.94%,25.30%,32.20%,38.00%,38.80%,35.05%,34.19%,32.84%,34.83%,36.46%,39.08%,48.45%,48.47%,50.69%,53.66%,55.49%,55.25%,56.86%,55.89%,57.73%,60.25%,63.58%,52748,60697,72149,78394,81567,89376,90140,105943,119855,124019,83134 +,Pennsylvania,16.56%,19.90%,28.18%,31.77%,32.79%,31.45%,32.04%,33.72%,34.11%,34.56%,36.40%,42.00%,44.48%,45.97%,47.44%,48.24%,47.37%,48.88%,50.09%,50.53%,51.35%,53.23%,589936,699493,784452,828577,834826,963111,934539,955399,979888,975612,611256 +,Michigan,19.56%,22.49%,26.56%,29.60%,29.71%,31.82%,35.08%,36.27%,35.58%,37.62%,40.62%,45.54%,46.36%,47.79%,49.01%,46.51%,47.84%,50.67%,51.28%,49.93%,52.29%,55.28%,337732,375749,387899,383342,478380,517798,498912,510423,606541,645285,459441 +,Mississippi,13.39%,15.41%,16.61%,17.97%,23.04%,26.26%,29.87%,33.94%,37.92%,40.54%,44.48%,50.30%,49.13%,48.10%,50.43%,52.40%,52.12%,55.19%,57.02%,57.87%,59.85%,63.57%,75807,84121,109362,138361,141172,164432,176398,183665,191550,195385,127382 +,Alabama,21.03%,32.90%,38.21%,38.20%,39.17%,34.50%,38.66%,40.78%,41.79%,43.71%,48.69%,49.32%,50.70%,52.04%,52.11%,53.14%,50.78%,53.36%,54.03%,54.19%,55.80%,59.75%,30671,33145,34128,39489,41627,64236,69351,74914,76497,74762,43936 +,North Carolina,17.29%,21.94%,26.11%,29.21%,31.34%,29.50%,33.22%,35.27%,35.40%,35.75%,38.20%,46.06%,47.57%,48.80%,50.18%,50.96%,48.14%,50.92%,52.16%,52.74%,53.69%,56.33%,505508,542127,574716,620737,629126,774834,803139,834412,906939,912665,620371 +,Arkansas,15.38%,19.09%,23.68%,25.92%,29.27%,32.66%,35.69%,40.45%,42.29%,44.50%,48.08%,47.63%,50.28%,51.89%,51.73%,51.35%,51.50%,52.84%,54.34%,54.08%,55.31%,58.20%,69172,80305,83736,90712,95561,106020,102998,103970,107864,106046,70709 +,Louisiana,20.36%,26.93%,28.02%,29.22%,29.16%,27.95%,30.33%,32.83%,35.08%,36.97%,39.93%,46.56%,47.68%,49.30%,51.46%,52.02%,50.05%,52.03%,53.25%,54.62%,55.90%,58.15%,172214,184055,199822,209695,216102,245963,260159,275936,295872,301587,209046 +,North Dakota,19.09%,23.24%,27.02%,29.49%,29.83%,30.11%,31.37%,33.14%,34.59%,36.46%,38.72%,48.94%,49.84%,49.96%,49.92%,48.64%,47.94%,48.56%,50.02%,51.83%,53.60%,54.85%,50432,51255,51389,52555,53716,55677,56766,58747,64338,66571,47546 +,Indiana,15.99%,21.61%,27.52%,30.23%,30.77%,29.43%,30.06%,32.33%,33.74%,35.46%,38.24%,46.51%,48.50%,50.52%,52.27%,53.30%,53.73%,55.12%,56.20%,56.37%,57.42%,59.75%,220871,238946,251823,263790,266269,298777,308734,316345,323385,323832,220523 +,Nova Scotia,,,,,,,,,,,,,,,,,,,,,,,21,23,23,24,20,17,22,23,18,21,10 or fewer +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer +,Rhode Island,11.35%,14.13%,17.30%,19.54%,21.02%,22.92%,23.10%,24.66%,27.08%,30.50%,33.89%,24.10%,28.15%,30.68%,32.45%,32.95%,33.08%,34.22%,38.91%,39.47%,42.43%,46.58%,57364,63207,62983,63463,59757,62771,67464,69258,77723,72295,46090 +,Iowa,20.10%,24.13%,26.23%,26.64%,25.54%,25.46%,26.96%,28.63%,31.27%,35.39%,38.15%,45.94%,48.70%,50.12%,51.30%,50.91%,51.35%,53.32%,54.18%,55.45%,57.37%,59.69%,140869,142735,143837,145787,149534,160744,159472,169673,179985,197009,136578 +,Delaware,9.47%,13.86%,22.25%,26.32%,27.59%,29.05%,32.92%,33.91%,35.31%,35.63%,36.10%,37.81%,43.16%,47.96%,51.16%,52.31%,52.13%,54.77%,55.53%,56.86%,57.71%,58.01%,18259,25848,28353,30312,30855,35936,36374,39734,41232,42580,27795 +,South Carolina,13.11%,16.75%,21.94%,25.15%,26.72%,25.01%,26.85%,28.68%,30.12%,30.64%,32.53%,41.68%,45.47%,48.36%,50.15%,50.81%,48.40%,51.11%,53.41%,54.61%,55.25%,56.87%,162425,198868,210260,233321,244533,312958,357275,388958,412313,415654,294494 +,Massachusetts,17.11%,17.49%,19.35%,23.79%,25.76%,25.64%,26.83%,28.66%,29.79%,31.04%,34.35%,35.28%,34.69%,37.14%,40.01%,40.18%,38.69%,39.71%,41.88%,43.12%,43.76%,45.85%,188209,230195,271343,276081,271673,297935,319456,343403,381531,402315,279585 +,Maryland,13.40%,17.05%,21.08%,25.02%,26.01%,23.75%,29.27%,31.05%,31.91%,33.15%,37.30%,41.68%,44.15%,44.76%,46.78%,46.25%,41.50%,48.84%,50.48%,51.32%,52.76%,56.19%,98012,118033,138461,160599,172893,221634,196991,201506,206718,207764,127749 +,Tennessee,12.35%,14.20%,17.54%,20.31%,23.41%,25.83%,28.20%,30.81%,31.25%,32.77%,37.14%,47.62%,46.21%,48.71%,50.34%,49.97%,48.59%,50.03%,50.34%,49.05%,53.23%,58.11%,69153,87670,99218,103787,108415,125308,131381,138324,157533,181917,114380 +,Wisconsin,16.60%,18.06%,19.59%,20.98%,21.60%,22.59%,25.21%,27.30%,29.55%,32.10%,33.83%,45.53%,46.39%,47.54%,48.56%,47.88%,47.91%,50.05%,51.38%,52.26%,53.61%,54.79%,346038,345943,345800,347674,355936,385794,371987,375385,379394,375754,266703 +,Missouri,13.35%,16.51%,19.94%,22.60%,24.13%,26.40%,29.25%,30.52%,32.12%,33.35%,36.36%,43.88%,47.49%,50.13%,52.43%,52.53%,51.06%,51.25%,52.44%,53.32%,54.16%,57.35%,58344,68824,75040,79017,80571,88397,92359,108031,114871,115759,76658 +,Illinois,11.68%,14.50%,16.23%,19.60%,22.57%,24.99%,27.60%,28.79%,30.32%,32.13%,34.71%,41.38%,42.88%,44.42%,45.84%,47.09%,47.50%,50.05%,50.88%,52.04%,53.67%,56.56%,440428,453423,480218,510619,523957,577188,567600,598132,627938,631281,419427 +,Idaho,11.84%,14.42%,16.55%,17.76%,18.65%,20.31%,23.51%,25.99%,27.48%,28.20%,31.52%,33.32%,36.37%,38.69%,40.17%,41.33%,41.88%,44.40%,45.99%,46.91%,46.76%,49.62%,55963,61255,63295,68559,73784,82954,94449,99193,104130,106462,69761 +,Connecticut,13.11%,15.15%,17.45%,19.40%,20.30%,20.65%,23.67%,26.28%,28.39%,29.14%,31.95%,37.14%,38.44%,40.79%,42.69%,42.84%,41.69%,44.83%,46.56%,47.62%,47.43%,50.17%,210236,235995,253407,261722,274684,307220,289101,285745,291240,304778,208006 +,Georgia,16.34%,18.51%,21.69%,24.43%,26.44%,26.13%,27.28%,28.99%,31.06%,32.43%,37.18%,42.15%,42.46%,43.69%,46.81%,48.94%,48.44%,49.15%,50.01%,51.49%,53.18%,57.15%,218841,267306,319663,352051,356686,410729,464450,532474,561605,565063,340701 +,Minnesota,18.03%,19.75%,21.92%,24.04%,24.91%,24.31%,27.13%,28.92%,31.10%,33.28%,35.57%,44.41%,44.66%,45.32%,46.29%,45.94%,43.81%,46.64%,47.85%,49.49%,51.44%,52.47%,243389,248660,249090,250116,247169,281020,257331,262956,263898,261504,169401 +,Florida,15.59%,18.17%,21.25%,23.60%,24.00%,22.85%,23.54%,26.70%,29.28%,31.16%,35.42%,39.05%,40.52%,41.42%,42.14%,41.39%,39.55%,39.71%,43.83%,46.09%,47.92%,51.30%,274820,301506,312867,317502,328806,449886,664563,830994,892009,952671,588608 +,Virginia,13.40%,15.09%,18.49%,21.40%,22.94%,23.83%,26.27%,26.72%,26.92%,27.57%,31.48%,41.43%,43.20%,45.20%,45.99%,46.29%,45.54%,47.48%,47.79%,48.67%,50.12%,53.69%,348195,398438,408334,427910,440275,491166,499790,539187,548310,550157,347737 +,Kansas,14.28%,17.59%,20.61%,22.32%,23.21%,22.78%,24.55%,25.41%,27.57%,30.98%,33.93%,45.15%,47.31%,48.00%,49.15%,49.10%,46.75%,47.91%,47.97%,49.57%,52.20%,54.13%,62980,65440,67217,68391,68500,76020,75604,96052,104725,111593,80801 +,Maine,13.29%,15.07%,19.19%,21.69%,22.33%,21.73%,24.43%,25.37%,26.54%,25.83%,28.35%,32.65%,34.77%,40.57%,42.56%,43.35%,42.47%,46.09%,47.12%,47.99%,47.39%,50.11%,50519,65079,68092,72401,71655,81087,81078,79153,80263,80532,55446 +,Texas,17.03%,19.65%,22.78%,24.82%,25.80%,24.30%,26.96%,28.96%,29.75%,31.07%,34.07%,41.75%,43.35%,45.78%,47.01%,47.82%,45.93%,49.73%,51.15%,50.97%,52.25%,55.25%,503059,648878,734504,799041,846658,1096378,1075089,1138792,1269901,1343092,849188 +,Oklahoma,13.01%,19.98%,22.59%,23.37%,23.11%,23.61%,25.23%,26.08%,27.12%,28.44%,31.62%,42.32%,40.97%,47.20%,50.86%,52.53%,52.26%,52.89%,52.35%,53.65%,55.33%,57.96%,74815,102294,124403,131889,133864,143052,149107,167563,181540,185126,117546 +,New Jersey,11.75%,12.81%,16.62%,19.26%,21.95%,20.89%,23.16%,24.04%,24.84%,26.90%,31.79%,39.17%,39.35%,39.38%,41.49%,43.02%,40.22%,43.06%,44.25%,45.28%,47.16%,50.42%,78728,104428,153571,192740,210974,278957,304202,343917,376126,386551,234488 +,Nebraska,15.18%,17.28%,17.95%,19.37%,20.14%,20.31%,21.71%,23.97%,25.36%,27.52%,30.29%,43.55%,46.43%,44.85%,47.31%,48.63%,49.41%,50.44%,51.35%,51.41%,53.56%,55.33%,31460,36568,49967,55864,59855,66690,69387,73881,83893,89154,61278 +,New York,12.86%,14.59%,16.33%,18.57%,18.90%,19.11%,22.13%,24.17%,25.37%,26.83%,30.27%,36.62%,38.19%,39.51%,39.81%,38.00%,37.21%,41.58%,43.64%,44.36%,45.91%,49.20%,501847,554169,602989,674117,756026,943204,891207,909152,944802,952411,612637 +,Montana,10.81%,12.45%,13.62%,21.85%,26.04%,27.26%,27.94%,25.65%,23.66%,24.12%,25.12%,36.52%,38.87%,40.30%,40.53%,39.72%,38.37%,39.94%,39.58%,42.63%,44.97%,48.01%,26140,27549,28173,28562,29303,32465,32317,39154,47093,49138,31713 +,South Dakota,16.13%,19.51%,21.03%,23.07%,22.86%,21.83%,23.84%,26.00%,27.65%,29.68%,32.85%,46.47%,45.16%,42.50%,43.27%,42.40%,40.51%,43.15%,44.96%,45.98%,46.95%,49.04%,33327,34393,37579,37734,39235,43577,41714,41954,42845,43772,29163 +,New Mexico,14.98%,16.79%,18.90%,20.55%,17.92%,18.10%,20.28%,22.55%,24.68%,25.66%,28.89%,45.76%,45.15%,46.86%,48.38%,45.31%,44.95%,47.93%,49.25%,50.17%,50.25%,53.59%,50724,57757,63723,66476,68407,73469,73669,75800,76969,78861,50206 +,New Hampshire,10.45%,12.31%,15.37%,17.99%,18.60%,19.80%,20.88%,21.82%,23.74%,26.14%,28.69%,38.99%,37.95%,41.44%,43.39%,43.02%,44.06%,44.93%,45.83%,46.74%,47.75%,50.00%,55222,60393,61799,61663,61474,62469,62405,60685,60614,61756,42397 +,Arizona,14.44%,15.44%,17.71%,19.24%,18.85%,17.56%,20.15%,23.39%,25.21%,27.43%,29.71%,40.31%,40.99%,42.97%,44.22%,41.24%,36.84%,38.74%,40.86%,42.30%,44.62%,47.24%,69228,80788,83379,84289,89510,114852,133110,151536,168394,176248,108353 +,Utah,10.96%,11.95%,12.39%,13.20%,13.27%,21.49%,29.93%,31.72%,31.63%,26.03%,28.42%,32.93%,34.40%,35.31%,35.72%,35.30%,34.57%,35.86%,35.56%,35.94%,31.15%,36.74%,43652,46521,47829,50231,53054,64855,59790,65887,72097,137867,112468 +,Oregon,16.43%,17.72%,18.43%,18.92%,18.47%,14.96%,18.42%,19.56%,21.49%,22.86%,25.33%,38.13%,39.85%,40.82%,41.20%,39.74%,32.47%,38.36%,40.42%,42.23%,42.83%,44.81%,144697,150821,162563,170416,178413,242521,204267,207327,214706,223410,147743 +,Wyoming,14.79%,16.32%,17.06%,19.08%,20.56%,22.33%,24.20%,23.07%,23.63%,24.92%,27.29%,43.48%,45.16%,46.12%,46.29%,46.66%,46.24%,46.88%,46.41%,47.31%,48.19%,51.25%,11002,11186,11842,12408,12415,13917,14151,16023,17365,19553,12241 +,California,12.56%,12.73%,14.43%,15.32%,15.32%,14.46%,17.21%,19.16%,20.79%,23.22%,26.23%,33.27%,32.93%,34.56%,35.81%,34.40%,31.17%,33.71%,35.45%,36.82%,38.45%,41.02%,311139,419561,470075,554733,653349,827079,827400,885278,1016938,1033840,643870 +,Vermont,10.24%,11.49%,12.80%,15.49%,16.17%,16.00%,15.97%,16.28%,16.94%,18.25%,20.70%,37.16%,38.28%,38.24%,36.53%,34.96%,34.36%,35.30%,36.57%,37.32%,38.12%,40.15%,32198,32042,32129,35742,41624,45270,44911,46070,46723,46235,30521 +,Nevada,16.04%,17.87%,18.34%,18.95%,13.85%,14.45%,19.20%,21.08%,22.49%,21.75%,26.19%,36.88%,35.43%,37.53%,39.44%,30.39%,29.95%,36.59%,38.45%,39.98%,40.63%,45.23%,38276,48823,63422,68973,100084,107363,90582,90178,96320,107640,59407 +,Colorado,11.81%,13.40%,14.84%,17.23%,18.33%,17.67%,20.45%,20.47%,20.76%,21.81%,23.83%,30.49%,32.94%,35.01%,35.79%,35.46%,32.74%,36.46%,36.59%,37.85%,39.64%,42.16%,154738,171742,189921,201546,218866,280985,271327,294222,322103,325728,211729 +,Washington,11.38%,12.59%,18.64%,20.66%,20.49%,18.15%,15.91%,15.67%,16.94%,18.33%,21.35%,36.13%,36.61%,38.35%,39.52%,39.09%,35.89%,34.74%,34.87%,37.27%,39.31%,42.44%,98224,106854,115630,119551,124720,141703,153513,181583,190080,190551,115230 +,Alaska,15.68%,20.08%,23.13%,25.05%,23.76%,20.86%,20.63%,18.83%,20.68%,20.17%,21.43%,41.94%,44.84%,45.56%,46.27%,42.98%,41.92%,42.45%,42.62%,42.36%,41.45%,42.71%,1154,1280,1440,1461,1452,1529,1357,1349,1315,1269,672 +,Hawaii,12.20%,14.15%,15.56%,16.11%,16.02%,13.36%,15.62%,17.86%,18.87%,19.90%,22.83%,29.72%,30.91%,32.16%,32.32%,31.83%,26.60%,30.52%,33.48%,34.94%,36.47%,39.47%,60017,61020,60698,61523,60055,77583,70252,71660,74231,72671,42208 +,District of Columbia,9.86%,9.97%,10.80%,10.65%,10.93%,9.25%,14.46%,17.06%,16.70%,18.58%,22.82%,30.64%,30.35%,29.70%,31.26%,26.66%,26.18%,36.31%,39.23%,37.20%,39.93%,44.16%,1622,1855,2333,2572,3256,9689,12206,12864,15954,14921,7593 +,"Total: Total includes all data under the ≥ 45 and < 55 Years bucket, including data from rows not currently displayed.",15.37%,18.31%,21.73%,24.28%,25.18%,24.68%,26.95%,28.84%,30.09%,31.52%,34.61%,41.82%,43.13%,44.72%,46.01%,45.88%,44.30%,46.72%,48.08%,48.90%,50.19%,53.02%,8574976,9640376,10429875,11080776,11640464,13730783,13957613,14903238,15924533,16354154,10722909 +≥ 55 and < 65 Years,Puerto Rico,15.23%,15.27%,21.81%,20.19%,23.42%,21.60%,22.13%,46.70%,49.87%,51.26%,54.52%,36.20%,37.62%,41.57%,39.75%,44.07%,39.77%,38.09%,49.87%,51.87%,52.87%,55.53%,453,537,587,639,649,787,827,4075,9276,11712,7735 +,Ohio,16.42%,21.84%,26.64%,31.83%,33.27%,32.53%,33.17%,36.17%,37.82%,39.79%,40.70%,46.69%,48.61%,49.66%,50.71%,51.27%,50.35%,50.88%,52.05%,53.46%,54.88%,56.49%,885334,925980,965947,986745,992761,1081979,1071339,1164645,1192795,1192052,891998 +,Kentucky,17.05%,22.49%,27.14%,29.66%,30.79%,30.06%,32.88%,36.71%,38.76%,40.21%,42.07%,47.24%,49.73%,52.00%,52.76%,53.26%,51.90%,53.37%,54.97%,55.58%,56.50%,58.36%,223333,253408,274533,286916,292575,337017,349623,357224,359117,358297,262674 +,West Virginia,17.24%,24.24%,31.13%,36.19%,36.97%,33.75%,32.44%,30.35%,32.67%,34.66%,36.83%,47.57%,47.26%,49.28%,51.79%,53.04%,52.77%,54.16%,53.14%,55.30%,57.97%,61.13%,59352,69355,84025,92458,97172,106465,106875,124866,139597,144490,102198 +,Pennsylvania,16.76%,20.04%,28.69%,32.09%,33.08%,31.59%,31.59%,33.11%,33.63%,34.01%,35.24%,42.69%,44.74%,45.93%,47.15%,47.84%,46.91%,48.17%,49.25%,49.78%,50.60%,52.33%,681225,824156,945773,1019997,1040522,1191112,1163543,1176006,1188462,1177645,765887 +,Michigan,19.56%,22.62%,26.61%,29.58%,29.78%,31.51%,34.41%,35.48%,34.67%,36.91%,39.17%,45.83%,46.09%,47.05%,47.89%,45.38%,46.22%,48.58%,49.30%,47.83%,50.07%,52.68%,375845,427829,452182,459528,579793,630001,602272,607341,718142,760985,568802 +,Mississippi,13.62%,15.27%,16.16%,17.28%,22.47%,25.06%,28.29%,32.34%,36.78%,39.34%,42.61%,48.77%,47.40%,45.38%,46.89%,49.15%,48.63%,51.51%,53.28%,54.55%,56.49%,59.50%,86247,96995,129986,167909,169071,194959,205457,212421,220834,223684,154155 +,Alabama,20.56%,31.39%,35.96%,36.07%,37.26%,32.57%,36.16%,38.08%,39.26%,40.76%,44.80%,47.80%,48.37%,49.46%,49.45%,50.25%,47.43%,50.01%,50.55%,51.01%,52.20%,55.62%,38022,41713,43990,51516,53966,81648,86254,91785,92519,91040,57251 +,North Carolina,17.28%,21.87%,25.82%,28.69%,31.02%,29.47%,33.08%,35.02%,35.26%,35.48%,36.55%,45.72%,46.85%,47.81%,48.89%,49.96%,47.43%,49.88%,51.17%,51.82%,52.54%,54.52%,512329,561106,610963,675844,691913,845574,873305,907547,994540,1015540,739543 +,Arkansas,14.60%,17.95%,22.38%,24.28%,27.53%,30.60%,33.04%,37.80%,39.75%,41.81%,45.23%,45.53%,48.05%,49.19%,49.00%,48.77%,48.79%,49.30%,50.65%,50.77%,51.95%,54.69%,79403,92787,98877,109519,113783,124361,120047,121180,124306,122115,82940 +,Louisiana,20.74%,27.27%,28.03%,29.13%,29.08%,27.99%,29.87%,32.16%,34.09%,35.87%,38.12%,45.51%,46.53%,47.63%,49.42%,50.04%,48.15%,49.82%,51.26%,52.55%,53.88%,55.90%,194414,210807,233950,251321,258819,289919,307704,319004,337523,339260,247563 +,North Dakota,20.48%,24.23%,27.06%,29.29%,29.71%,30.11%,30.76%,31.98%,33.39%,35.56%,37.21%,50.16%,50.39%,49.66%,49.20%,48.16%,47.73%,47.91%,48.43%,50.67%,52.48%,53.65%,57844,60368,61923,64019,64828,66394,66025,66221,70068,69233,50646 +,Indiana,16.63%,21.96%,27.23%,29.64%,30.47%,29.25%,29.56%,31.50%,32.91%,34.74%,36.57%,46.99%,48.45%,49.91%,51.26%,52.04%,52.35%,53.30%,53.95%,54.34%,55.42%,57.17%,242083,265988,285679,304209,308879,342171,350683,353059,355063,353863,252653 +,Nova Scotia,,,,,,,,,,,,,34.38%,,35.29%,,,,48.28%,34.38%,,,27,32,33,34,25,22,27,29,32,27,10 or fewer +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer +,Rhode Island,11.57%,14.24%,17.45%,19.92%,21.32%,23.34%,23.65%,24.80%,26.89%,29.57%,32.41%,25.34%,29.28%,31.44%,33.43%,34.16%,34.00%,35.04%,39.01%,39.77%,42.00%,45.66%,64433,73716,76423,79211,77554,82809,88055,90846,98992,93516,63105 +,Iowa,20.89%,24.53%,26.41%,26.86%,25.89%,25.42%,26.81%,28.51%,31.20%,35.19%,37.22%,46.60%,48.49%,49.35%,49.96%,49.86%,49.55%,51.26%,52.30%,53.90%,56.04%,58.02%,155922,161861,167643,172594,176377,187794,183731,190280,196882,214138,154000 +,Delaware,9.63%,14.44%,22.13%,26.11%,27.52%,28.80%,32.48%,33.86%,34.68%,35.06%,34.47%,38.23%,43.42%,46.79%,49.12%,50.03%,49.94%,52.61%,53.47%,53.97%,54.52%,54.39%,23729,33663,38436,42597,44677,52337,52326,55374,56509,59515,42374 +,South Carolina,12.77%,16.16%,20.85%,23.82%,25.29%,23.90%,25.79%,27.27%,29.01%,29.57%,30.97%,40.05%,42.84%,45.20%,47.08%,47.95%,46.01%,48.62%,50.62%,52.17%,52.93%,54.40%,185963,227907,244623,277424,294337,373273,421046,467364,484179,489376,363224 +,Massachusetts,16.59%,17.12%,19.25%,24.06%,26.12%,26.14%,27.12%,28.91%,29.76%,30.48%,33.16%,35.85%,35.31%,38.09%,40.76%,41.26%,39.91%,40.60%,42.47%,43.54%,43.32%,44.98%,186671,240839,291317,305825,308230,341881,378256,403546,453100,482636,354454 +,Maryland,12.61%,16.30%,20.46%,24.43%,25.45%,23.82%,28.36%,30.00%,31.13%,32.73%,36.00%,40.83%,43.07%,43.53%,45.47%,45.30%,41.10%,46.95%,48.57%,49.67%,51.22%,53.97%,109154,134153,162436,191678,211279,267715,243840,248915,254164,254958,167831 +,Tennessee,11.88%,13.36%,16.69%,19.44%,22.39%,23.95%,26.15%,28.66%,29.17%,31.11%,34.73%,45.54%,44.09%,45.82%,47.01%,46.74%,45.58%,47.06%,47.46%,46.36%,50.44%,54.65%,76794,100323,113837,121675,128870,149165,156165,163915,189596,219989,146479 +,Wisconsin,18.04%,19.26%,20.66%,21.95%,22.34%,23.22%,25.76%,27.52%,29.52%,31.97%,33.04%,47.17%,47.38%,47.91%,48.45%,47.58%,47.38%,49.17%,50.24%,51.20%,52.48%,53.48%,372354,388235,401013,413957,431785,470665,452975,450167,445256,433939,317059 +,Missouri,13.66%,16.71%,19.88%,22.06%,23.75%,26.04%,28.97%,30.01%,31.78%,33.31%,35.74%,44.36%,47.27%,49.10%,50.95%,51.39%,49.83%,50.33%,51.43%,52.37%,53.30%,56.13%,71100,84815,93507,99652,102238,112361,113038,129317,133664,132403,91554 +,Illinois,11.88%,14.20%,15.85%,19.08%,22.08%,24.41%,27.02%,28.25%,29.63%,31.33%,33.05%,42.20%,43.57%,44.55%,45.54%,46.65%,46.75%,48.87%,49.52%,50.57%,52.00%,54.50%,483968,512648,556234,604315,620902,679065,658599,679737,700319,697889,486440 +,Idaho,13.07%,15.60%,17.70%,19.23%,20.18%,21.59%,24.58%,26.90%,28.18%,28.48%,31.10%,34.61%,37.70%,39.52%,40.67%,41.68%,41.98%,44.14%,45.52%,46.55%,45.96%,48.27%,65262,72828,76126,83226,87003,95610,105290,107875,111203,112361,76856 +,Connecticut,13.25%,15.29%,17.62%,19.55%,20.55%,21.38%,23.96%,26.34%,28.44%,29.13%,31.05%,38.26%,39.28%,41.43%,43.05%,43.42%,42.83%,45.27%,46.61%,47.68%,47.27%,49.24%,221104,259479,289008,309143,332873,369056,357827,356819,364389,380042,277975 +,Georgia,17.09%,18.91%,21.80%,24.54%,26.70%,25.95%,26.97%,28.61%,30.67%,31.75%,35.61%,41.73%,41.47%,42.26%,45.47%,47.55%,46.68%,47.44%,48.41%,49.84%,51.26%,54.56%,212706,267087,326025,369069,380297,451232,510232,581641,614161,625392,407419 +,Minnesota,18.79%,20.49%,22.72%,24.72%,25.81%,25.21%,27.79%,29.38%,31.26%,33.77%,35.02%,45.94%,45.71%,45.97%,46.66%,46.50%,44.24%,46.48%,47.46%,48.98%,51.12%,51.59%,269879,285847,296991,306813,304972,342493,313276,312509,309893,298211,199456 +,Florida,15.35%,17.90%,20.99%,23.14%,23.62%,22.62%,22.95%,25.91%,28.45%,30.23%,33.59%,38.10%,39.58%,40.32%,40.92%,40.07%,38.49%,38.40%,41.95%,44.16%,45.92%,48.81%,329587,373740,397338,414008,438036,580319,835155,1014026,1082866,1165721,765801 +,Virginia,13.55%,15.11%,18.50%,21.45%,23.08%,24.21%,26.57%,26.86%,27.27%,27.71%,30.63%,41.14%,42.80%,44.74%,45.61%,46.08%,45.61%,47.27%,47.31%,48.49%,49.78%,52.62%,372341,444263,469073,501953,522815,578210,590613,631552,636143,636008,427589 +,Kansas,14.78%,18.04%,21.03%,22.99%,23.86%,23.80%,25.43%,26.09%,28.22%,31.55%,33.51%,46.56%,48.40%,48.81%,49.69%,49.43%,47.84%,48.79%,48.57%,50.21%,52.40%,53.81%,77457,82454,87211,89973,90509,97304,94967,114137,121215,125506,93505 +,Maine,13.27%,14.94%,18.82%,20.98%,21.85%,21.53%,24.31%,24.94%,26.20%,25.10%,26.83%,32.92%,34.27%,39.38%,41.05%,42.33%,41.95%,45.48%,46.26%,47.38%,46.73%,48.93%,63601,83510,89515,98554,99133,112052,111472,107514,106895,106403,75703 +,Texas,16.71%,19.09%,22.30%,24.45%,25.62%,24.41%,26.72%,28.41%,29.03%,30.24%,32.37%,41.44%,42.74%,44.89%,46.05%,46.73%,45.19%,48.48%,49.82%,49.56%,50.62%,53.17%,527444,694641,796234,876096,923763,1168200,1133834,1180322,1300507,1368006,912786 +,Oklahoma,13.47%,20.11%,22.73%,23.72%,23.29%,23.64%,25.15%,25.67%,26.74%,28.36%,30.85%,42.31%,40.09%,46.29%,49.49%,50.89%,50.49%,50.92%,50.27%,51.42%,53.46%,55.63%,88136,122349,149962,161030,162202,170809,172790,191554,203887,204245,135785 +,New Jersey,10.91%,12.16%,16.44%,19.56%,22.43%,21.42%,23.33%,23.99%,24.57%,26.50%,30.47%,39.76%,39.61%,39.98%,42.03%,43.75%,40.64%,43.06%,44.11%,44.86%,46.47%,49.35%,89762,122147,182379,231778,257196,342062,380376,426822,464351,475535,307758 +,Nebraska,14.34%,16.12%,17.27%,19.01%,20.06%,20.20%,21.52%,23.75%,24.84%,27.17%,29.80%,43.13%,46.11%,44.51%,46.56%,48.15%,48.67%,49.82%,50.69%,50.36%,52.71%,54.90%,38102,45610,64330,72779,77282,84033,85686,87295,96603,99569,69092 +,New York,12.60%,14.36%,16.22%,18.50%,19.22%,19.66%,22.06%,23.76%,24.86%,26.14%,28.81%,37.41%,38.82%,40.20%,40.27%,39.17%,38.82%,42.16%,43.71%,44.34%,45.54%,48.31%,539331,611624,691846,796606,897404,1113758,1092833,1123436,1165826,1180506,800440 +,Montana,9.91%,11.43%,12.64%,21.85%,26.26%,27.65%,28.55%,25.65%,23.40%,24.49%,25.05%,36.36%,38.76%,39.83%,40.33%,39.95%,38.58%,39.78%,39.30%,41.64%,44.57%,48.00%,32902,35553,36930,37765,37554,39998,38462,45233,54191,54750,36307 +,South Dakota,17.81%,20.26%,21.00%,22.87%,23.01%,21.60%,23.51%,25.14%,26.63%,28.98%,32.32%,47.19%,44.97%,42.14%,42.63%,41.98%,39.66%,42.40%,43.92%,45.24%,46.64%,48.85%,37408,40552,46768,47691,49039,53882,50174,48589,47691,46933,31594 +,New Mexico,14.38%,15.72%,17.36%,19.12%,16.70%,16.73%,18.41%,20.46%,22.67%,24.14%,26.63%,43.04%,42.00%,43.16%,44.80%,41.86%,40.91%,43.47%,45.17%,46.73%,46.87%,49.85%,58632,70284,79568,84817,87181,93988,93083,94035,93663,93914,62036 +,New Hampshire,10.37%,11.94%,15.16%,17.60%,18.45%,19.68%,20.67%,20.85%,22.07%,24.59%,26.72%,38.37%,37.04%,40.56%,42.13%,41.78%,42.67%,43.22%,43.80%,44.80%,46.05%,48.00%,63989,73354,78299,81275,83154,86783,87596,86079,86308,88827,63046 +,Arizona,13.19%,14.13%,16.08%,17.96%,18.14%,16.96%,19.38%,21.80%,23.45%,25.42%,26.14%,39.12%,39.06%,40.75%,41.97%,39.89%,35.87%,38.13%,39.56%,40.66%,42.78%,44.31%,80613,97141,103739,107145,112687,141648,157408,175007,191283,199307,129045 +,Utah,11.29%,11.86%,12.33%,13.45%,13.67%,21.13%,28.85%,30.56%,31.03%,26.21%,28.49%,33.68%,34.62%,35.32%,35.95%,35.21%,34.02%,34.82%,34.40%,35.42%,30.45%,35.87%,47332,50635,52075,53800,54177,62599,56972,60587,63795,125678,104248 +,Oregon,16.23%,17.61%,18.47%,19.07%,19.29%,16.32%,19.63%,20.82%,22.55%,23.81%,25.58%,38.02%,39.50%,40.30%,40.83%,40.32%,33.94%,39.15%,41.16%,42.89%,43.57%,45.11%,163090,171248,183857,191094,193285,249050,213306,212115,215568,221375,153196 +,Wyoming,14.90%,15.67%,16.48%,18.50%,19.85%,21.95%,23.37%,22.36%,22.25%,23.49%,26.23%,42.17%,42.48%,43.61%,44.02%,44.36%,44.41%,44.56%,44.15%,44.62%,46.32%,49.77%,14714,15701,16932,18012,18217,19175,19049,20946,21775,23668,15239 +,California,12.94%,12.74%,14.30%,15.31%,15.58%,14.74%,17.27%,18.88%,20.27%,22.41%,24.81%,34.05%,33.37%,34.59%,35.71%,34.77%,31.74%,33.76%,35.02%,36.10%,37.26%,39.34%,330930,462771,532732,634804,730265,898740,898292,952104,1079326,1095079,713761 +,Vermont,9.20%,10.06%,11.47%,14.50%,15.71%,15.98%,15.64%,16.07%,16.72%,18.12%,20.07%,36.60%,37.40%,37.30%,35.76%,35.10%,34.57%,35.28%,36.28%,37.11%,38.50%,40.36%,41860,43348,45075,50185,56488,60707,60025,60109,60206,59200,40325 +,Nevada,16.61%,18.40%,19.37%,20.15%,16.56%,16.57%,19.85%,21.54%,23.09%,22.03%,25.78%,36.07%,35.18%,36.71%,38.71%,32.17%,31.73%,36.19%,37.54%,39.01%,38.70%,42.98%,43952,55987,70309,77299,98874,111990,98871,100098,105616,120287,72098 +,Colorado,12.64%,14.16%,15.59%,17.90%,19.29%,18.64%,21.31%,20.94%,21.14%,22.18%,23.80%,31.43%,33.13%,34.84%,35.36%,35.49%,32.82%,36.17%,35.95%,37.32%,39.06%,41.33%,169816,190393,210298,224563,238731,295054,282060,297612,326772,326776,220771 +,Washington,12.10%,13.09%,18.75%,20.72%,20.66%,18.38%,15.91%,15.72%,17.11%,18.62%,21.20%,37.77%,37.67%,38.69%,39.66%,39.18%,36.03%,34.98%,35.29%,37.69%,39.55%,42.59%,102152,115741,129137,135659,141061,156898,165817,191573,197538,197420,125218 +,Alaska,13.66%,14.36%,18.64%,20.32%,20.48%,19.17%,18.89%,17.63%,17.79%,17.01%,15.88%,39.70%,38.82%,40.42%,40.54%,40.03%,37.80%,38.90%,38.28%,38.24%,39.31%,40.74%,1325,1623,1905,1929,1846,2024,1789,1821,1731,1623,869 +,Hawaii,11.89%,13.66%,14.79%,15.31%,15.47%,13.32%,15.38%,17.16%,18.04%,18.48%,20.73%,28.11%,29.48%,30.05%,30.41%,30.44%,26.21%,29.33%,31.45%,32.83%,33.89%,36.40%,65948,68978,70255,72850,71769,89453,81717,83201,85388,84131,51825 +,District of Columbia,8.40%,9.61%,10.90%,11.49%,12.02%,9.23%,13.02%,15.86%,16.42%,18.83%,22.47%,29.20%,29.62%,29.92%,31.77%,30.33%,29.62%,37.85%,40.64%,38.67%,41.21%,44.66%,1428,1624,1955,2254,2463,8926,12480,12859,14967,14184,7796 +,"Total: Total includes all data under the ≥ 55 and < 65 Years bucket, including data from rows not currently displayed.",15.48%,18.27%,21.63%,24.15%,25.23%,24.82%,26.71%,28.39%,29.60%,30.98%,33.30%,42.04%,42.96%,44.20%,45.26%,45.29%,43.85%,45.75%,46.93%,47.75%,48.91%,51.33%,9417263,10861755,12029806,13038366,13739435,16031237,16296123,17208001,18186475,18614262,12840004 +65 Years or more,Puerto Rico,7.06%,8.66%,11.52%,14.61%,14.09%,12.85%,14.40%,32.75%,34.97%,35.88%,39.27%,26.66%,26.29%,29.56%,31.30%,31.89%,31.06%,30.60%,37.02%,37.74%,38.13%,40.63%,694,970,981,917,809,1027,1160,4938,10419,13596,9209 +,Ohio,12.49%,17.54%,22.34%,27.66%,29.43%,29.20%,30.02%,32.88%,34.30%,35.48%,34.95%,40.91%,43.18%,44.45%,45.63%,46.15%,45.25%,45.24%,46.00%,46.52%,47.15%,47.39%,1126148,1201578,1277915,1335853,1391013,1576141,1625444,1848320,1951037,2015239,1693050 +,Kentucky,12.95%,17.78%,22.05%,24.97%,26.51%,25.82%,27.69%,30.38%,31.68%,32.32%,33.02%,38.98%,41.96%,44.25%,45.15%,45.77%,44.54%,45.17%,46.46%,46.60%,46.83%,47.53%,282890,323650,357932,383276,398711,463764,498978,527049,545270,562178,455215 +,West Virginia,12.69%,16.75%,22.43%,27.00%,28.26%,25.98%,24.12%,22.02%,24.39%,26.69%,28.44%,39.13%,38.98%,41.45%,44.02%,45.22%,44.52%,45.30%,44.02%,45.75%,47.70%,49.63%,78231,96462,118398,131686,142831,160635,169415,209067,242310,259400,202724 +,Pennsylvania,13.57%,16.33%,23.91%,27.30%,28.80%,27.07%,26.48%,27.27%,27.80%,27.94%,28.16%,37.99%,40.32%,41.51%,42.80%,43.43%,42.07%,42.91%,43.60%,43.54%,43.59%,44.34%,912137,1119152,1321547,1452057,1519292,1786050,1811213,1901342,1986749,2049268,1468044 +,Michigan,15.48%,19.14%,23.06%,25.90%,26.81%,28.93%,31.17%,31.91%,31.01%,33.10%,34.55%,41.28%,42.04%,43.17%,44.18%,41.93%,42.69%,43.95%,44.44%,42.51%,44.24%,45.90%,491393,565842,603750,631380,820519,912090,926315,965072,1190254,1284833,1038427 +,Mississippi,10.75%,12.45%,13.01%,14.30%,18.14%,19.91%,22.32%,25.92%,29.47%,31.44%,33.24%,40.35%,39.75%,37.33%,38.64%,40.47%,39.77%,41.82%,43.27%,43.91%,44.92%,46.34%,123505,139921,197977,253804,260670,303596,326180,347794,373763,387224,297775 +,Alabama,17.63%,22.31%,25.68%,25.56%,26.98%,24.23%,26.76%,28.41%,29.38%,30.54%,33.22%,39.43%,40.04%,41.14%,40.48%,40.99%,38.63%,40.09%,40.55%,40.91%,41.57%,43.62%,51635,58456,62686,77451,83432,127504,136869,148922,157368,161449,115106 +,North Carolina,13.37%,16.34%,19.34%,21.90%,24.31%,23.45%,26.62%,27.96%,28.27%,27.96%,27.38%,39.14%,40.39%,41.43%,42.60%,43.92%,41.30%,43.14%,43.83%,44.00%,43.42%,43.53%,699910,779806,867037,968763,1003139,1253653,1314762,1413482,1583202,1657903,1369818 +,Arkansas,11.95%,14.50%,16.91%,18.22%,20.76%,22.98%,24.51%,28.11%,29.65%,30.99%,33.87%,37.13%,38.82%,39.95%,39.90%,40.29%,39.96%,39.64%,40.17%,40.06%,40.70%,42.86%,112155,131188,141660,161444,167996,187914,188080,197715,209435,214818,150950 +,Louisiana,18.31%,24.54%,25.57%,26.92%,26.95%,25.89%,26.76%,28.60%,29.59%,30.71%,31.29%,39.13%,40.60%,41.64%,43.31%,43.83%,41.67%,42.36%,43.43%,44.32%,45.29%,45.72%,236927,262453,300924,332215,351315,396232,443964,478439,529763,553784,458196 +,North Dakota,16.78%,20.88%,24.29%,27.28%,28.22%,28.60%,28.77%,29.99%,30.70%,32.15%,32.56%,45.20%,46.13%,45.49%,45.46%,44.88%,44.62%,44.12%,44.44%,46.15%,47.74%,48.45%,71410,75688,79322,84572,89113,94661,99415,104757,115601,119404,98494 +,Indiana,13.65%,18.53%,23.29%,25.83%,27.18%,26.06%,25.94%,27.52%,28.58%,29.82%,30.59%,41.53%,42.64%,44.25%,45.73%,46.44%,46.59%,47.02%,47.40%,47.30%,47.63%,48.00%,308683,343106,374267,404142,421772,484973,520666,544343,567636,586195,464468 +,Nova Scotia,,,,,,,,,13.83%,,,,23.64%,18.64%,23.53%,25.00%,,21.13%,15.38%,29.79%,27.14%,35.00%,51,55,59,68,48,48,71,91,94,70,40 +,Sonora,,,,,,,,,,,,,,,,,,,,,,,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer,10 or fewer +,Rhode Island,9.95%,12.85%,16.56%,19.04%,20.55%,23.10%,23.82%,24.12%,25.34%,26.98%,28.29%,24.26%,28.08%,30.08%,32.14%,33.15%,33.37%,34.09%,36.83%,36.54%,38.20%,40.41%,86742,98936,104084,109940,110856,122745,132473,142896,159355,158780,119946 +,Iowa,16.93%,20.47%,22.43%,23.12%,22.94%,22.69%,23.62%,25.21%,26.97%,29.99%,30.36%,41.30%,43.15%,44.10%,44.76%,44.46%,44.03%,44.76%,45.53%,46.70%,48.46%,49.15%,206113,218889,230915,244210,254287,278725,287590,306971,330802,380600,306324 +,Delaware,6.06%,10.98%,17.57%,22.18%,23.98%,25.14%,27.77%,28.96%,30.09%,29.70%,28.20%,28.45%,34.82%,39.20%,42.36%,44.38%,44.72%,46.57%,47.00%,47.51%,46.21%,44.63%,35815,49835,56674,63370,67738,80634,85118,94010,101308,118850,100540 +,South Carolina,9.36%,12.25%,16.44%,18.94%,20.24%,19.15%,21.61%,23.37%,24.92%,25.23%,25.21%,32.68%,35.30%,37.65%,39.18%,40.02%,38.08%,40.39%,42.06%,43.23%,42.89%,42.93%,258357,323358,351605,409228,449872,586790,684809,776342,830840,864753,729421 +,Massachusetts,12.88%,13.27%,15.69%,20.21%,22.36%,22.58%,22.89%,24.28%,24.27%,24.23%,25.45%,31.72%,31.76%,34.94%,37.41%,38.07%,36.93%,36.87%,38.30%,38.82%,37.37%,38.16%,234914,309509,369390,391715,402517,454817,531726,584881,700166,780833,633786 +,Maryland,8.92%,11.99%,16.15%,20.85%,22.10%,21.55%,23.30%,24.60%,25.38%,26.65%,28.71%,34.24%,36.37%,36.84%,39.05%,39.69%,37.52%,39.20%,40.57%,40.99%,41.75%,43.66%,148305,187428,231950,270448,299241,365524,372823,391633,412670,429079,311956 +,Tennessee,8.94%,9.85%,12.72%,15.14%,17.00%,17.86%,19.45%,21.49%,21.80%,23.36%,25.46%,35.79%,35.04%,36.74%,37.90%,37.82%,36.74%,37.90%,37.93%,36.72%,39.75%,42.69%,109188,143604,164952,180382,194049,232132,249972,270803,325041,387511,283025 +,Wisconsin,16.15%,17.58%,19.35%,20.98%,22.14%,23.76%,27.11%,28.95%,30.51%,32.13%,32.56%,43.56%,43.95%,44.72%,45.34%,44.82%,44.40%,45.68%,45.90%,46.15%,46.85%,46.97%,439494,471651,500766,528448,566679,638305,642036,671916,699494,716286,589269 +,Missouri,10.39%,13.62%,16.62%,18.72%,20.33%,21.85%,24.60%,25.50%,26.75%,27.87%,28.93%,36.57%,39.91%,41.99%,43.83%,44.47%,42.46%,43.21%,44.26%,44.62%,45.05%,46.69%,106437,127571,142661,155811,165209,188891,192765,222061,234060,241131,185447 +,Illinois,9.21%,10.71%,12.32%,15.34%,18.09%,20.42%,23.44%,24.80%,25.85%,27.10%,27.50%,37.45%,38.94%,39.96%,40.72%,41.94%,41.49%,43.11%,43.23%,43.58%,44.33%,45.16%,673451,725667,798823,880541,918719,1043949,1025712,1096666,1167963,1199249,941313 +,Idaho,11.60%,14.37%,16.97%,19.34%,20.91%,21.77%,24.68%,26.88%,28.04%,27.18%,28.03%,32.31%,36.09%,38.02%,39.30%,40.76%,40.73%,42.12%,42.94%,43.65%,41.75%,42.63%,92581,104479,113105,128051,136563,152143,176969,187500,200844,211734,169086 +,Connecticut,10.07%,11.99%,14.19%,16.27%,17.74%,18.97%,21.09%,23.10%,24.84%,24.91%,25.31%,34.22%,35.30%,37.33%,38.93%,39.73%,39.47%,40.78%,41.82%,42.54%,41.11%,41.63%,296621,355439,396917,429096,459873,506824,517774,536427,567500,611134,506220 +,Georgia,13.84%,15.57%,18.18%,20.73%,22.76%,22.30%,22.83%,24.23%,25.74%,26.12%,27.72%,35.50%,34.95%,35.69%,38.75%,40.54%,39.59%,39.66%,40.43%,41.31%,41.70%,43.16%,270104,357078,451821,516033,537732,652194,772724,892193,963784,1008442,756006 +,Minnesota,15.32%,17.34%,19.73%,21.91%,23.35%,23.21%,25.41%,26.90%,28.27%,29.86%,29.41%,41.54%,42.24%,42.78%,43.50%,43.47%,41.55%,42.40%,42.98%,43.86%,45.02%,44.17%,356875,380413,404932,429949,442162,509506,492732,514920,533119,539707,406864 +,Florida,11.94%,13.97%,16.59%,18.52%,18.69%,17.73%,18.07%,20.98%,22.93%,23.92%,25.52%,31.12%,32.69%,33.74%,34.25%,33.13%,31.22%,31.18%,34.22%,35.84%,36.83%,38.40%,440580,521086,568496,608620,672233,916225,1393396,1716993,1888959,2139526,1598661 +,Virginia,10.15%,11.78%,14.93%,17.51%,19.15%,20.38%,22.55%,22.70%,23.01%,22.94%,23.67%,34.56%,36.13%,38.19%,39.17%,39.73%,39.25%,40.55%,39.97%,40.85%,41.39%,42.61%,524416,635063,686031,739742,776310,868826,912989,1008784,1041463,1073547,818154 +,Kansas,11.67%,14.66%,17.48%,19.38%,20.35%,20.61%,21.98%,23.11%,24.97%,27.44%,28.07%,41.22%,43.06%,43.97%,44.90%,44.43%,43.17%,43.47%,43.48%,44.36%,46.34%,46.50%,109522,120356,129847,138271,145133,161530,165585,201265,221427,236082,195872 +,Maine,11.03%,12.62%,16.94%,19.33%,20.11%,19.80%,21.28%,21.65%,22.26%,19.94%,20.39%,29.81%,30.69%,35.48%,36.47%,37.61%,37.94%,39.97%,40.39%,40.91%,39.25%,40.27%,91898,121841,132987,151629,158479,180619,194632,194798,203458,211025,166894 +,Texas,12.92%,14.67%,17.53%,19.74%,21.26%,20.25%,21.97%,23.06%,23.13%,24.00%,24.98%,35.59%,36.62%,38.67%,39.95%,40.65%,38.30%,40.63%,41.48%,40.73%,41.31%,42.62%,625298,864890,1024408,1156245,1237933,1611366,1624643,1749718,1990477,2165583,1610849 +,Oklahoma,10.53%,16.06%,19.21%,20.60%,20.85%,21.05%,22.25%,22.30%,23.08%,24.33%,25.92%,34.95%,33.31%,39.57%,42.14%,43.63%,43.35%,43.41%,42.55%,43.09%,44.27%,45.36%,132745,184602,222466,244996,252088,269269,277654,315481,346421,359850,268183 +,New Jersey,7.80%,9.03%,12.49%,15.24%,17.91%,17.46%,19.04%,19.60%,19.83%,21.45%,23.58%,34.68%,34.33%,34.55%,36.27%,38.20%,35.38%,37.01%,37.42%,37.90%,38.88%,40.57%,121230,166668,262455,333865,367473,498144,572336,668418,745450,789816,572208 +,Nebraska,10.23%,11.79%,12.86%,14.47%,16.02%,16.49%,17.83%,19.67%,20.65%,22.47%,23.95%,36.32%,39.68%,38.80%,41.28%,43.24%,43.45%,43.93%,44.61%,44.23%,45.51%,47.37%,53619,65780,101606,119566,129595,144953,153670,163528,185700,195839,146845 +,New York,9.39%,11.13%,12.95%,15.07%,16.24%,16.94%,18.69%,19.77%,20.40%,21.04%,22.09%,33.09%,34.45%,35.80%,36.14%,35.90%,35.64%,37.32%,37.88%,37.94%,38.47%,40.13%,758568,862381,977443,1115983,1234599,1541387,1606796,1732142,1870442,1969225,1471122 +,Montana,7.82%,9.40%,10.71%,20.21%,24.48%,25.92%,26.62%,23.30%,22.35%,23.03%,22.23%,33.48%,36.16%,37.62%,37.88%,37.83%,36.37%,36.54%,35.37%,36.77%,38.90%,40.88%,40307,45808,50098,53256,55101,60379,61773,79294,100148,105916,80354 +,South Dakota,16.20%,18.72%,19.94%,22.00%,22.19%,20.73%,22.04%,23.04%,24.18%,25.86%,27.87%,43.66%,41.98%,39.70%,40.34%,39.45%,37.08%,38.91%,39.61%,39.98%,40.80%,42.16%,45134,51512,59777,63755,67669,77576,76621,78301,79939,81533,61918 +,New Mexico,11.34%,12.25%,13.76%,15.46%,13.35%,13.33%,14.40%,15.69%,17.19%,17.28%,17.95%,36.23%,35.35%,36.31%,37.71%,34.17%,33.31%,34.63%,35.54%,36.42%,35.01%,36.18%,88963,108373,124778,136987,142493,157471,164869,173655,179647,187412,141823 +,New Hampshire,7.11%,8.69%,11.73%,14.05%,14.88%,15.80%,16.87%,17.30%,18.10%,19.79%,20.73%,33.00%,32.30%,35.72%,37.22%,36.68%,36.86%,37.02%,37.06%,37.55%,38.51%,39.48%,80914,94562,101713,108092,115472,123122,132773,136419,144469,159708,124302 +,Arizona,9.05%,9.76%,11.40%,12.89%,13.74%,12.67%,14.62%,16.05%,17.19%,18.05%,17.17%,31.59%,31.24%,33.35%,34.19%,33.48%,29.02%,31.61%,32.22%,32.81%,34.06%,33.72%,118927,150171,163876,176072,187116,253579,270012,306705,341468,367680,266830 +,Utah,8.36%,8.69%,9.37%,10.46%,11.01%,17.67%,23.75%,26.04%,26.36%,22.75%,24.87%,28.83%,29.82%,30.55%,30.85%,30.80%,29.89%,29.96%,29.68%,29.78%,25.16%,30.36%,63533,68698,73485,78004,79390,90755,89450,97693,103333,242457,219101 +,Oregon,12.65%,14.04%,15.13%,16.07%,16.69%,14.84%,17.38%,18.41%,19.78%,20.51%,20.77%,33.22%,34.69%,35.85%,36.72%,36.93%,32.11%,35.73%,36.79%,37.90%,37.99%,38.26%,222527,243113,272149,295970,306729,402178,368662,385365,398126,414802,321304 +,Wyoming,12.27%,13.33%,14.30%,16.44%,17.73%,19.19%,19.68%,18.55%,18.52%,19.19%,20.23%,38.16%,38.39%,39.20%,39.57%,40.43%,39.91%,39.06%,38.12%,37.69%,38.10%,40.47%,20689,22811,25604,28428,29877,32894,35663,41236,45173,51088,37566 +,California,9.10%,8.58%,10.22%,11.72%,12.48%,11.76%,13.26%,14.11%,15.15%,16.54%,17.98%,26.95%,26.00%,27.59%,28.89%,28.79%,26.17%,27.04%,27.54%,28.34%,28.85%,30.18%,423885,647119,771428,912340,1032710,1313807,1360961,1495106,1709098,1771829,1271345 +,Vermont,6.42%,7.22%,8.57%,11.33%,12.89%,13.35%,12.78%,12.83%,12.93%,13.67%,13.97%,32.51%,32.69%,32.90%,31.94%,32.01%,31.65%,31.30%,32.10%,32.41%,33.04%,33.42%,57577,61320,66038,75780,86045,93700,98953,104225,109494,112641,86195 +,Nevada,15.25%,17.28%,18.52%,19.27%,18.06%,15.81%,18.41%,19.32%,19.63%,19.08%,22.12%,32.82%,32.28%,33.23%,34.19%,31.96%,28.05%,31.20%,31.85%,32.25%,29.55%,33.40%,64447,78120,91951,101962,114067,150889,138713,147147,157241,218486,161112 +,Colorado,11.38%,12.98%,14.42%,16.59%,18.03%,17.10%,19.36%,18.69%,18.58%,19.31%,19.50%,29.05%,30.69%,32.11%,32.41%,32.64%,29.45%,32.08%,30.92%,31.63%,32.84%,33.86%,218871,248729,277182,310072,331765,432955,436605,476189,553403,571169,436889 +,Washington,10.28%,11.09%,15.29%,16.92%,17.36%,15.73%,13.80%,13.48%,14.57%,15.73%,17.16%,34.17%,33.39%,34.64%,35.66%,35.56%,32.85%,31.46%,31.05%,32.90%,34.31%,36.27%,132607,158380,181994,195341,205249,235156,260871,313804,334157,347641,253755 +,Alaska,12.11%,11.93%,14.41%,17.03%,16.32%,14.32%,14.67%,14.35%,14.73%,13.77%,15.58%,33.57%,34.07%,34.97%,35.37%,34.30%,31.33%,32.17%,32.07%,31.49%,31.53%,33.53%,1412,1902,2345,2542,2525,2933,3053,3318,3531,3574,2189 +,Hawaii,8.09%,9.30%,10.37%,11.10%,11.38%,9.90%,11.37%,12.20%,12.57%,12.56%,12.86%,21.06%,21.94%,22.76%,23.08%,23.06%,20.04%,22.07%,23.10%,23.53%,24.02%,24.70%,94989,103010,108615,115897,118266,150407,141674,149811,157525,161327,116127 +,District of Columbia,6.50%,7.14%,8.93%,9.02%,9.74%,6.88%,8.19%,10.02%,10.41%,11.40%,13.10%,22.88%,24.69%,24.67%,24.94%,25.05%,23.88%,27.11%,29.72%,28.45%,29.34%,32.07%,1801,2143,2610,3092,3233,11764,17780,18971,22188,21446,13300 +,"Total: Total includes all data under the 65 Years or more bucket, including data from rows not currently displayed.",12.10%,14.50%,17.61%,20.12%,21.51%,21.27%,22.69%,24.00%,24.85%,25.66%,26.60%,36.42%,37.39%,38.72%,39.80%,40.11%,38.56%,39.56%,40.21%,40.52%,40.90%,42.08%,12481753,14732109,16665538,18392155,19679823,23540910,24987661,27347522,29838858,31690617,24452994 +"Total: Total includes all data, including data from rows not currently displayed.",Puerto Rico,9.22%,10.18%,13.47%,15.51%,16.43%,14.88%,15.42%,32.01%,34.27%,35.67%,40.00%,26.99%,26.47%,29.58%,30.79%,31.71%,29.48%,29.73%,36.34%,36.76%,37.14%,40.87%,2342,3056,3340,3371,3201,3993,4312,23858,58400,78227,46153 +,Ohio,11.58%,15.27%,18.83%,22.61%,23.95%,23.52%,23.97%,25.93%,27.05%,28.65%,30.78%,34.90%,36.61%,37.78%,38.65%,39.46%,38.75%,38.92%,39.38%,40.04%,41.26%,43.87%,5325324,5615863,5840907,6002336,6076994,6750514,6914591,7704071,8072231,8095705,6050717 +,Kentucky,11.67%,15.27%,18.83%,20.70%,21.71%,21.18%,23.30%,25.86%,27.13%,28.45%,31.25%,34.59%,37.03%,39.23%,39.87%,40.62%,39.11%,40.04%,41.20%,41.35%,42.23%,44.97%,1357049,1536374,1649528,1734581,1786275,2130787,2253548,2345736,2405323,2403982,1747141 +,West Virginia,12.32%,16.74%,21.79%,25.39%,26.01%,23.56%,22.70%,21.49%,23.00%,24.37%,27.33%,35.36%,35.30%,37.37%,39.38%,40.71%,40.35%,40.80%,39.82%,41.31%,43.27%,47.27%,355958,416358,496935,552316,586575,647638,673489,808740,919556,962288,673651 +,Pennsylvania,11.36%,13.52%,19.17%,21.69%,22.57%,21.69%,21.77%,22.72%,23.06%,24.76%,26.74%,29.54%,31.60%,33.14%,34.25%,34.91%,34.47%,35.24%,36.00%,36.29%,37.16%,39.48%,4276575,5136708,5843303,6314934,6502874,7576978,7543439,7790122,8013999,7963045,5409683 +,Michigan,13.22%,15.27%,18.05%,20.09%,20.72%,22.09%,23.89%,24.53%,24.27%,26.20%,29.77%,33.80%,34.13%,35.12%,35.89%,34.46%,35.19%,36.57%,36.92%,36.24%,38.33%,42.17%,2357593,2679067,2832642,2892439,3601092,3981677,3952681,4088055,4810416,5073267,3668095 +,Mississippi,8.89%,10.24%,11.26%,12.28%,15.79%,17.69%,20.07%,23.01%,26.14%,28.46%,32.37%,36.77%,36.36%,35.99%,37.39%,39.22%,38.48%,40.47%,41.91%,42.55%,44.37%,48.06%,540115,600486,761785,969979,990133,1170342,1252840,1311361,1374349,1390555,944685 +,Alabama,15.62%,22.99%,26.95%,26.94%,27.99%,24.55%,27.20%,23.61%,23.58%,25.35%,29.33%,38.00%,38.82%,40.19%,39.95%,40.72%,38.51%,40.49%,33.84%,32.75%,33.71%,37.15%,187018,206351,215458,257116,274508,430538,472364,640379,699688,692304,428287 +,North Carolina,11.97%,14.82%,17.33%,19.30%,21.02%,19.83%,22.15%,23.42%,23.67%,24.33%,26.67%,33.73%,34.93%,35.57%,36.45%,37.44%,35.02%,36.64%,37.52%,37.88%,38.74%,41.70%,3294923,3604278,3958085,4404741,4527929,5652004,5961230,6296278,6912562,6941335,4962417 +,Arkansas,10.97%,12.94%,15.33%,16.65%,18.99%,20.93%,22.33%,25.24%,26.65%,28.35%,32.73%,35.53%,36.21%,36.33%,35.89%,36.06%,35.71%,35.57%,36.36%,36.40%,37.24%,41.17%,485017,586951,639640,719985,760669,861525,845181,856783,885191,876984,573042 +,Louisiana,14.01%,18.19%,18.49%,19.18%,19.48%,18.66%,20.05%,21.59%,23.34%,24.98%,27.94%,33.64%,34.23%,34.55%,35.78%,36.51%,35.06%,36.22%,37.15%,38.58%,39.89%,42.77%,1192710,1328036,1502215,1626465,1690215,1924058,2060302,2208945,2340247,2370432,1698254 +,North Dakota,12.15%,14.68%,16.91%,18.60%,19.00%,19.23%,19.88%,20.99%,21.84%,23.17%,25.60%,33.99%,34.37%,34.05%,33.93%,33.35%,32.69%,32.69%,33.43%,34.76%,36.25%,39.00%,411976,431119,439352,458538,472201,496168,509133,521554,561680,573152,423941 +,Indiana,11.15%,14.75%,18.60%,20.39%,21.00%,19.94%,20.21%,21.64%,22.56%,24.13%,27.08%,34.22%,35.19%,36.36%,37.56%,38.63%,38.72%,39.44%,40.02%,40.10%,41.22%,44.38%,1538889,1708837,1842081,1962414,1993759,2281484,2398420,2468528,2533027,2522995,1747282 +,Nova Scotia,,7.14%,6.79%,9.41%,8.97%,,8.24%,10.38%,11.76%,9.84%,,22.48%,25.32%,20.99%,26.47%,22.07%,18.12%,18.68%,20.75%,25.79%,21.31%,28.24%,129,154,162,170,145,138,182,212,221,183,85 +,Sonora,,,,,,,,12.36%,17.46%,6.55%,,,,,,42.31%,,32.05%,26.97%,28.57%,32.14%,28.95%,10 or fewer,10 or fewer,10 or fewer,15,26,39,78,89,126,168,38 +,Rhode Island,8.31%,10.45%,12.84%,14.61%,15.93%,17.52%,17.80%,18.61%,20.31%,22.64%,25.13%,17.87%,21.00%,22.67%,24.14%,25.42%,25.47%,26.19%,28.89%,28.93%,30.81%,34.80%,387676,438854,453791,470175,453046,491156,538402,578559,652209,626272,434617 +,Iowa,12.75%,15.21%,16.53%,16.83%,16.53%,16.47%,17.26%,18.40%,19.93%,23.03%,25.38%,31.86%,33.52%,34.32%,35.00%,35.19%,35.34%,36.20%,36.89%,37.57%,39.50%,42.14%,1106383,1156614,1198516,1240784,1258498,1369815,1387258,1467648,1557185,1672099,1217306 +,Delaware,7.72%,10.11%,14.02%,16.39%,17.72%,19.11%,21.10%,21.90%,22.65%,23.41%,24.31%,19.80%,25.22%,28.50%,30.69%,32.34%,33.35%,34.90%,35.92%,36.64%,37.40%,38.55%,200150,258090,292769,322749,332992,380406,396295,427667,443259,463440,321004 +,South Carolina,8.99%,11.31%,14.48%,16.53%,17.90%,16.87%,18.28%,19.42%,20.68%,21.46%,23.50%,28.91%,31.19%,33.11%,34.52%,35.60%,34.01%,35.81%,37.41%,38.67%,39.31%,41.79%,1134337,1430879,1559498,1768629,1875329,2441765,2802354,3121736,3275202,3271131,2432058 +,Massachusetts,12.88%,13.14%,14.51%,17.69%,19.21%,19.20%,19.70%,20.68%,20.78%,21.87%,24.72%,26.15%,26.10%,28.15%,30.21%,30.56%,29.42%,29.94%,31.35%,31.58%,32.10%,34.75%,1208500,1512773,1798221,1887025,1911262,2159523,2400402,2642876,3049978,3185608,2318496 +,Maryland,10.05%,12.57%,15.62%,18.51%,19.30%,18.00%,20.94%,22.09%,22.67%,23.96%,27.75%,32.32%,33.87%,34.39%,35.73%,35.56%,32.55%,36.71%,38.17%,38.85%,40.33%,44.04%,616011,771413,932989,1104062,1222304,1560420,1472950,1514402,1566157,1574569,1027137 +,Tennessee,8.71%,9.60%,11.91%,13.96%,16.23%,17.45%,19.00%,20.85%,20.99%,22.57%,26.38%,36.56%,34.40%,36.17%,37.37%,37.47%,36.11%,36.90%,36.99%,35.53%,38.79%,43.40%,429542,574157,662386,708277,745943,887856,949971,1012884,1189692,1381108,900772 +,Wisconsin,11.45%,12.35%,13.36%,14.33%,14.93%,15.82%,17.63%,18.94%,20.25%,22.19%,24.35%,31.98%,32.54%,33.19%,33.77%,33.71%,33.96%,35.04%,35.76%,36.29%,37.37%,39.53%,2482340,2566875,2661483,2745251,2846370,3124651,3112603,3160737,3196691,3163530,2321929 +,Missouri,9.95%,12.12%,14.34%,15.91%,17.34%,19.26%,20.85%,21.39%,22.16%,23.23%,26.31%,34.84%,36.73%,38.31%,39.59%,40.23%,39.29%,38.59%,39.34%,39.45%,40.39%,44.26%,377022,474734,540037,588158,612398,663640,710114,840187,902766,910513,627054 +,Illinois,8.02%,9.54%,10.52%,13.08%,15.40%,17.21%,18.82%,19.64%,20.64%,22.27%,24.82%,29.15%,30.21%,31.04%,32.30%,33.76%,34.06%,35.17%,35.76%,36.60%,38.04%,41.55%,3304571,3521271,3855204,4010880,4104673,4618904,4659528,4865928,5066783,5015597,3436826 +,Idaho,8.72%,10.48%,12.01%,13.21%,14.10%,15.14%,17.12%,18.78%,19.65%,20.10%,22.99%,24.16%,26.69%,28.41%,29.73%,30.91%,31.38%,32.53%,33.54%,34.12%,34.00%,36.96%,419033,473671,502853,552074,593094,661649,765625,800814,848247,846796,587511 +,Connecticut,9.59%,11.17%,12.89%,14.34%,15.08%,15.40%,17.38%,19.15%,20.51%,21.35%,24.09%,26.75%,28.33%,30.50%,32.05%,32.48%,31.67%,33.65%,34.99%,35.77%,36.14%,39.42%,1417599,1609946,1754022,1860794,1988864,2267581,2208234,2224578,2296102,2344393,1679689 +,Georgia,9.73%,11.24%,13.13%,14.98%,17.02%,17.09%,17.77%,19.22%,20.64%,21.93%,26.07%,26.07%,26.95%,28.15%,30.58%,33.10%,33.12%,33.79%,34.97%,36.08%,37.68%,41.89%,1655721,1975819,2403784,2689553,2676663,3132026,3624480,3991975,4223088,4199002,2659046 +,Minnesota,11.91%,13.16%,14.70%,16.07%,16.84%,16.95%,18.40%,19.43%,20.74%,22.36%,24.97%,31.60%,31.95%,32.43%,33.00%,33.04%,32.01%,32.95%,33.57%,34.67%,36.26%,38.78%,1861693,1958489,2024748,2097684,2098667,2335821,2233069,2289575,2299089,2255403,1461800 +,Florida,10.45%,12.17%,14.14%,15.71%,16.33%,15.49%,15.85%,18.09%,19.93%,21.56%,24.87%,27.06%,28.34%,28.95%,29.46%,29.30%,28.04%,28.18%,31.23%,33.04%,34.78%,37.89%,2061680,2304082,2459079,2563678,2686570,3670963,5400324,6652709,7196621,7707786,5107145 +,Virginia,9.33%,10.63%,13.05%,15.20%,16.69%,17.47%,18.94%,19.23%,19.33%,20.04%,23.16%,31.35%,32.81%,34.40%,35.16%,36.14%,35.47%,36.34%,36.45%,37.06%,38.56%,42.28%,2296180,2667038,2810215,2995695,3084289,3492447,3691661,3967997,4056715,4012856,2708087 +,Kansas,10.24%,12.59%,14.75%,16.20%,17.12%,17.25%,18.32%,18.97%,20.47%,22.76%,25.35%,34.17%,35.88%,36.67%,37.70%,37.87%,36.81%,37.25%,37.41%,38.59%,40.56%,43.12%,456166,489860,522085,544948,549061,600754,612541,748043,808155,851865,642950 +,Maine,9.60%,10.92%,13.88%,15.57%,16.08%,15.86%,17.57%,18.14%,18.96%,18.26%,20.23%,24.69%,26.18%,30.21%,31.65%,32.36%,32.09%,34.39%,35.09%,35.82%,35.51%,38.32%,359726,464646,501545,555224,575801,661444,670919,664258,678890,665398,485279 +,Texas,10.61%,12.29%,13.92%,15.31%,16.43%,15.86%,16.99%,18.19%,18.91%,20.24%,22.76%,26.27%,28.11%,29.20%,30.39%,31.82%,31.18%,32.87%,33.95%,34.20%,35.58%,38.47%,4018830,5002977,5877899,6467924,6742150,8675625,8758475,9236681,10105399,10588468,6854741 +,Oklahoma,8.92%,13.41%,15.24%,16.03%,16.16%,16.47%,17.33%,17.73%,18.51%,19.83%,22.71%,30.53%,29.88%,34.72%,37.41%,38.84%,38.50%,38.38%,37.60%,38.32%,39.96%,42.90%,542483,755096,926084,996832,1009932,1087412,1142284,1311727,1431269,1461216,961589 +,New Jersey,7.63%,8.54%,11.41%,13.63%,15.82%,15.49%,17.08%,17.59%,17.87%,19.61%,23.25%,26.22%,27.32%,29.01%,31.24%,32.86%,30.99%,32.97%,33.85%,34.50%,36.10%,39.18%,594902,767974,1086326,1344054,1477238,1965869,2186388,2497310,2782864,2883339,1881188 +,Nebraska,9.83%,11.18%,11.84%,12.97%,13.89%,14.02%,15.03%,16.66%,17.65%,19.41%,22.34%,32.27%,34.63%,33.90%,36.01%,37.58%,37.79%,38.45%,39.25%,39.32%,41.24%,44.55%,233047,280326,399076,456675,485505,543128,569498,591588,663724,692469,481749 +,New York,9.57%,10.91%,12.26%,13.85%,14.35%,14.79%,16.88%,18.08%,18.64%,19.75%,22.58%,27.79%,28.78%,29.72%,29.81%,28.90%,28.75%,31.72%,33.07%,33.42%,34.77%,38.33%,3302897,3774996,4236884,4877168,5529447,6927767,6773590,6984271,7372014,7428848,4961905 +,Montana,7.04%,8.05%,8.99%,14.83%,17.67%,18.45%,18.88%,17.17%,16.27%,17.06%,18.44%,26.30%,28.06%,29.28%,29.40%,28.84%,27.68%,28.65%,28.58%,30.83%,33.15%,37.02%,196947,215908,226813,235337,242082,267935,269740,323539,383932,394305,263558 +,South Dakota,10.58%,12.49%,13.41%,14.77%,14.63%,14.00%,14.98%,16.08%,17.12%,18.73%,21.53%,31.60%,30.78%,29.17%,29.59%,28.94%,27.79%,29.19%,30.04%,30.54%,31.72%,34.26%,268833,287941,316190,327085,342173,381163,373153,371369,376606,375929,263737 +,New Mexico,10.08%,11.15%,12.54%,13.58%,12.18%,12.27%,13.50%,14.81%,16.01%,16.73%,18.97%,30.87%,30.94%,32.37%,33.59%,32.07%,31.79%,33.40%,34.34%,35.02%,35.05%,38.04%,431254,494126,550209,588928,563869,612714,634361,651291,665317,666298,447045 +,New Hampshire,7.52%,8.81%,10.98%,12.71%,13.34%,14.27%,15.09%,15.41%,16.13%,17.80%,19.85%,28.51%,27.73%,30.43%,31.70%,31.45%,32.13%,32.71%,33.04%,33.27%,34.24%,36.58%,359767,405623,426485,443765,459702,483282,496090,496364,512786,528648,383980 +,Arizona,10.10%,10.85%,12.41%,13.62%,13.91%,12.74%,13.92%,15.70%,16.81%,18.50%,20.31%,30.79%,31.21%,32.87%,33.83%,32.62%,28.59%,28.44%,29.44%,30.47%,32.59%,34.94%,449245,538569,572060,605971,650479,866823,1059782,1222056,1379498,1431201,889897 +,Utah,7.45%,7.86%,8.15%,8.58%,8.76%,13.78%,18.56%,20.11%,20.13%,17.74%,20.09%,22.59%,23.28%,23.88%,24.05%,23.82%,23.37%,23.35%,23.45%,23.55%,21.53%,26.54%,365144,391632,408836,432359,449865,534726,508037,544089,578909,1075976,904509 +,Oregon,11.14%,12.01%,12.62%,13.05%,13.04%,11.28%,13.26%,14.02%,14.99%,16.08%,18.01%,26.80%,28.00%,28.77%,29.09%,28.65%,24.69%,27.92%,29.25%,30.07%,30.85%,33.11%,1145904,1226387,1339798,1422423,1464342,1899867,1691243,1713732,1776673,1806853,1235433 +,Wyoming,9.98%,10.73%,11.37%,12.67%,13.72%,14.82%,15.77%,14.98%,15.24%,16.04%,18.49%,31.24%,31.54%,32.35%,32.23%,32.89%,32.51%,32.57%,32.11%,32.58%,33.91%,37.54%,88394,94273,101713,110154,112253,124471,129379,144272,153144,169319,111781 +,California,8.60%,8.74%,10.13%,10.90%,11.17%,10.82%,12.22%,13.32%,14.43%,16.26%,18.71%,22.94%,23.41%,25.11%,26.07%,25.25%,23.15%,23.97%,25.03%,26.20%,27.44%,29.79%,2335320,3103857,3454804,4154112,4963768,6327688,6695130,7141416,8024610,8094833,5206521 +,Vermont,7.47%,8.27%,9.15%,11.20%,11.97%,11.96%,11.80%,11.94%,12.22%,13.28%,14.86%,29.37%,29.89%,29.93%,28.55%,27.63%,27.00%,27.68%,28.64%,29.16%,30.13%,31.98%,206541,213675,223313,255395,300432,334671,338673,350242,359602,357489,250934 +,Nevada,11.49%,12.71%,12.80%,13.24%,10.65%,10.95%,13.48%,14.67%,15.48%,15.42%,19.33%,28.02%,27.06%,27.76%,29.03%,24.14%,23.66%,27.11%,28.27%,29.32%,29.44%,33.44%,270325,343517,454051,512634,692179,776188,701274,708225,748539,859041,511996 +,Colorado,7.81%,8.93%,10.01%,11.40%,12.37%,12.10%,13.43%,13.33%,13.62%,14.68%,16.63%,20.17%,21.82%,23.47%,24.12%,24.50%,23.03%,24.91%,24.77%,25.97%,27.90%,30.81%,1364874,1528639,1666660,1791432,1895707,2371847,2360038,2465725,2672380,2624000,1745081 +,Washington,8.22%,8.94%,12.72%,14.18%,14.41%,12.88%,11.35%,11.22%,12.03%,13.08%,15.71%,27.01%,27.24%,28.43%,29.29%,29.48%,27.07%,25.89%,26.01%,27.60%,29.31%,33.00%,714195,800183,882789,925586,948130,1086893,1188253,1389496,1458298,1457077,906832 +,Alaska,9.74%,10.85%,12.90%,14.56%,14.04%,13.18%,13.11%,12.87%,12.33%,11.07%,12.55%,28.61%,29.31%,29.84%,30.36%,29.51%,28.37%,29.22%,29.91%,28.57%,28.03%,30.68%,8580,10042,11649,11970,11919,13205,12449,12388,12819,13111,7190 +,Hawaii,8.84%,9.99%,10.89%,11.39%,11.56%,9.49%,11.00%,12.40%,13.17%,13.93%,15.83%,22.45%,23.26%,23.90%,24.04%,23.99%,19.79%,22.35%,24.16%,25.15%,26.37%,28.65%,399351,414645,422738,439246,430729,575539,533730,544314,567822,556442,339030 +,District of Columbia,4.89%,5.35%,6.17%,6.79%,6.72%,5.90%,9.30%,11.50%,11.62%,13.38%,16.46%,18.06%,18.70%,19.24%,20.35%,18.88%,19.23%,27.34%,29.76%,28.49%,31.10%,34.82%,17006,19289,22449,24899,29382,75783,90633,93336,114363,105555,55111 +,"Total: Total includes all data under the Total* bucket, including data from rows not currently displayed.",10.52%,12.42%,14.68%,16.48%,17.42%,17.23%,18.48%,19.65%,20.49%,21.86%,24.67%,29.85%,30.89%,32.03%,32.99%,33.34%,32.31%,33.50%,34.39%,34.98%,36.21%,39.33%,61129681,69957926,77402511,83906824,88583858,105400238,110032890,117902259,126132021,128728351,88071787 diff --git a/data/cosmos_chronic/standard/county_year.csv.gz b/data/cosmos_chronic/standard/county_year.csv.gz index 2b17904..4903423 100644 Binary files a/data/cosmos_chronic/standard/county_year.csv.gz and b/data/cosmos_chronic/standard/county_year.csv.gz differ diff --git a/data/cosmos_chronic/standard/state_year.csv.gz b/data/cosmos_chronic/standard/state_year.csv.gz index 6a74c2e..3c3a626 100644 Binary files a/data/cosmos_chronic/standard/state_year.csv.gz and b/data/cosmos_chronic/standard/state_year.csv.gz differ