diff --git a/DESCRIPTION b/DESCRIPTION index fbca2d8b..0271647f 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -51,3 +51,4 @@ VignetteBuilder: knitr Roxygen: list(markdown = TRUE) Config/testthat/edition: 3 Config/roxygen2/version: 8.0.0 +RoxygenNote: 7.3.3 diff --git a/NEWS.md b/NEWS.md index b209a27e..0c74148a 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,11 @@ +# Developmental + +* Added new datasets: + * `county_2023`, `EVs_region`, `generation_climate_action` added by [@npaterno](https://github.com/npaterno) + * `sdea` added by William Krenzer & Siobhán Griffin + * `Brazil_death_anxiety` added by Isaac Handley-Miner, Yuichi Shoda and Christian Unkelbach + * `skill_aquisition` added by Y. Andre Wang, Gareth Yu and Julia, G. Bottesini + # openintro 2.5.1 * Added new datasets: diff --git a/R/data-Brazil_death_anxiety.R b/R/data-Brazil_death_anxiety.R new file mode 100644 index 00000000..2a3a2cb8 --- /dev/null +++ b/R/data-Brazil_death_anxiety.R @@ -0,0 +1,44 @@ +#' Brazil death anxiety +#' +#' The dataset consists of responses from 200 individuals from Brazil. +#' The main measure is the DAQ, a 15-item multidimensional scale that +#' measures fears related to suffering, loneliness, the unknown, and +#' personal extinction (see Variable Description). The scale measures +#' range from 0 (“not at all”) to 8 (“very much”). In addition, the +#' file contains a free-list measure of participants’ fears and worries, +#' which may be coded, and several demographic variables. +#' +#' @format A data frame with 200 rows and 28 variables. +#' \describe{ +#' \item{participant}{Participant id} +#' \item{gender}{Gender of pariticipant.} +#' \item{year_born}{Year participant was born.} +#' \item{age_in_2015}{Age of participant when data was collected.} +#' \item{ethnicity}{Ethnicity of participant.} +#' \item{marital_status}{Marital status of participant.} +#' \item{employment}{Employment status of participant.} +#' \item{occupation}{Occupation of participant.} +#' \item{fivefears_1}{The first entry in a free list of participants’ fears and worries.} +#' \item{fivefears_2}{The second entry in a free list of participants’ fears and worries.} +#' \item{fivefears_3}{The third entry in a free list of participants’ fears and worries.} +#' \item{fivefears_4}{The fourth entry in a free list of participants’ fears and worries.} +#' \item{fivefears_5}{The fifth entry in a free list of participants’ fears and worries.} +#' \item{worry_death}{Do you worry about dying?} +#' \item{incomplete_bucket_list}{Does it bother you that you may die before you have done everything you wanted to?} +#' \item{deathly_ill}{Do you worry that you may be very ill for a long time before you die?} +#' \item{concern_for_others}{Does it upset you to think that others may see you suffering when you die?} +#' \item{painful_death}{Do you worry that dying may be very painful?} +#' \item{loved_ones}{Do you worry that the persons most close to you won’t be with you when you are dying?} +#' \item{die_alone}{Do you worry that you may be alone when you are dying?} +#' \item{cognitive_function}{Does the thought bother you that you might lose control of your mind before death?} +#' \item{expenses_burden}{Do you worry that expenses connected with your dying will be a burden for other people?} +#' \item{as_you_wish}{Does it worry you that your instructions or will about your belongings may not be carried out after you die?} +#' \item{buried_alive}{Are you afraid that you may be buried before you are really dead?} +#' \item{left_behind}{Does the thought of leaving loved ones behind you when you die disturb you?} +#' \item{remembered}{Do you worry that those you care about may not remember you after your death?} +#' \item{permenant}{Does the thought worry you that with death you may be gone forever?} +#' \item{after_death}{Are you worried about not knowing what to expect after death?} +#' } +#' @source Jong, J., Halberstadt, J., Bluemke, M. et al. Death anxiety, exposure to death, mortuary preferences, and religiosity in five countries. Sci Data 6, 154 (2019). [Link to doi](https://doi.org/10.1038/s41597-019-0163-x) +#' +"Brazil_death_anxiety" diff --git a/R/data-EVs_region.R b/R/data-EVs_region.R new file mode 100644 index 00000000..66a30fd5 --- /dev/null +++ b/R/data-EVs_region.R @@ -0,0 +1,12 @@ +#' Electric vehicles +#' +#' Pew research results regarding consideration of buying electric vehicle. +#' +#' @format A data frame with 5085 observations on the following 2 variables. +#' \describe{ +#' \item{\code{region}}{a factor with levels \code{Urban, Suburban} and \code{Rural}} +#' \item{\code{consideration}}{a factor with levels \code{Not too or not at all likely}, \code{Very or somewhat likely} and \code{Do not expect to buy a vehicle}} +#' } +#' +#' @source Pew Research Center, Survey of U.S. adults conducted April 28-May 4, 2025. "Americans' Views on Energy at the Start of Trump's Second Term" +"EVs_region" diff --git a/R/data-county_2023.R b/R/data-county_2023.R new file mode 100644 index 00000000..291b3a69 --- /dev/null +++ b/R/data-county_2023.R @@ -0,0 +1,55 @@ +#' county_2023 +#' +#' County level data from the US Census American Community Survey 2023 5-year estimates. +#' +#' @name county_2023 +#' @docType data +#' @format A data frame with 3144 rows and 43 columns. +#' \describe{ +#' \item{\code{geoid}}{Unique numeric code used by the U.S. Census Bureau to identify specific geographic areas.} +#' \item{\code{county_state}}{Name of county and state.} +#' \item{\code{name}}{Name of county.} +#' \item{\code{state}}{Name of state.} +#' \item{\code{individual_income}}{Median individual income for the county, measure in 2018 USD.} +#' \item{\code{population_size}}{Number of people residing in the county.} +#' \item{\code{white}}{Percent of the population who identified as only white.} +#' \item{\code{african_american}}{Percent of the population who identified as only Black or African American.} +#' \item{\code{age}}{Median age of those who live in the county, measured in years.} +#' \item{\code{age_under_5}}{Percent of the population under the age of 5.} +#' \item{\code{age_85_plus}}{Percent of the population age 85 and older.} +#' \item{\code{age_18_plus}}{Percent of the population age 18 and older.} +#' \item{\code{age_65_plus}}{Percent of the population age 65 and older.} +#' \item{\code{travel_time}}{Mean travel time to work, measured in minutes.} +#' \item{\code{household_size}}{Mean household size.} +#' \item{\code{family_size}}{Mean family size.} +#' \item{\code{one_unit_structure}}{Percent of properties with a residential building that contains a single housing dwelling unit.} +#' \item{\code{two_unit_structure}}{Percent of properties with a residential building that contains two or more separate housing units (such as a duplex or apartments).} +#' \item{\code{mobile_and_other}}{Percent of properties with mobile homes and all other types of housing structures.} +#' \item{\code{individual_income_25_plus}}{Median individual income for those age 25 or older.} +#' \item{\code{hs_grad}}{Percent of the population over the age 25 or older with at least a high school diploma.} +#' \item{\code{college_grad}}{Percent of the population over the age 25 or older with at least a Bachelor's Degree.} +#' \item{\code{total_households}}{Total number of households in the county.} +#' \item{\code{spanish_speaking}}{Percent of households that speak Spanish.} +#' \item{\code{indo_european_language}}{Percent of households that speak an Indo-European language other than English.} +#' \item{\code{api_language}}{Percent of households that speak an Asian and Pacific Islander language.} +#' \item{\code{non_euro_api}}{Percent of households speaking an non-European or Asian and Pacific Islander language.} +#' \item{\code{limited_english}}{Percent of households that speak limited English.} +#' \item{\code{poverty}}{Percent of population living below the poverty line.} +#' \item{\code{poverty_18}}{Percent of population under the age of 18 living below the poverty line.} +#' \item{\code{poverty_65}}{Percent of the population over the age of 65 living below the povery line.} +#' \item{\code{household_income_mean}}{Mean household income, measured in 2018 USD.} +#' \item{\code{household_income_median}}{Median household income, measured in 2018 USD.} +#' \item{\code{per_capita_income}}{Mean income per capita, measured in 2018 USD.} +#' \item{\code{veterans}}{Percent of the civilian population age 18 or older who served in the military.} +#' \item{\code{unemployment_20_64}}{Unemployment rate for those age 20 to 64.} +#' \item{\code{uninsured}}{Percent of the civilian population who is uninsured.} +#' \item{\code{uninsured_6}}{Percent of population under the age of 6 who are uninsured.} +#' \item{\code{uninsured_19}}{Percent of the population under the age of 19 who are uninsured.} +#' \item{\code{uninsured_65}}{Percent of the population age 65 and older who are uninsured.} +#' \item{\code{computers}}{Percent of households that have a laptop or desktop computer.} +#' \item{\code{smartphones}}{Percent of households that have a smartphone.} +#' \item{\code{broadband}}{Percent of households with computers that have access to broadband internet.} +#' } +#' @source \url{https://www.census.gov/programs-surveys/acs/data.html} collected using the `tidycensus` package. +#' +"county_2023" diff --git a/R/data-generation_climate_action.R b/R/data-generation_climate_action.R new file mode 100644 index 00000000..a08f8583 --- /dev/null +++ b/R/data-generation_climate_action.R @@ -0,0 +1,12 @@ +#' Poll on climate change activism +#' +#' A Pew Research poll published in May of 2021 looks at how Americans' attitudes about climate change differ by generation, party and other factors. +#' +#' @format A data frame with 13664 observations on the following 2 variables. +#' \describe{ +#' \item{\code{generation}}{a factor with levels \code{Gen Z, Millenial, Gen X} and \code{Boomer & older}} +#' \item{\code{response}}{a factor with levels \code{Took action} and \code{Did not take action}} +#' } +#' +#' @source Pew Research Center, American Trends Panel. Survey conducted April 20 - 29, 2021. "Gen Z, Millennials Stand Out for Climate Change Activism, Social Media Engagement With Issue" +"generation_climate_action" diff --git a/R/data-sdea.R b/R/data-sdea.R new file mode 100644 index 00000000..7c0aa331 --- /dev/null +++ b/R/data-sdea.R @@ -0,0 +1,36 @@ +#' Spatial distancing, emotional arousal +#' +#' This dataset is from a published research paper examining the effects of +#' spatial distancing on emotional arousal to reactivated memories. It contains +#' data on gender, age, trait reappraisal and suppression, desirability, and +#' self-reported distress before and after experimental sessions (across three +#' days). Participants underwent an experimental session, where they viewed images +#' from the IAPs. For day 2, participants were spilt into four groups: +#' reactivation + regulation, no regulation, no reactivation, no regulation. +#' The reactivation & regulation group viewed emotional objects cut from the +#' pictures and were asked to regulate them. When they saw the word "far" they +#' had to imagine the object was far away from them. +#' +#' @format A data frame with 175 rows and 14 variables. +#' \describe{ +#' \item{id}{Subject ID number.} +#' \item{gender}{M = Male; F = Female.} +#' \item{age}{Age of the participants.} +#' \item{condition}{1 = Reactivation + Regulation; 2= No Regulation; 3 = No Reactivation; 4 = Neither.} +#' \item{sds_17}{Social desirability scale.} +#' \item{erq_reappraisal}{motion Regulation Questionnaire - Reappraisal Subscale.} +#' \item{erq_suppression}{Emotion Regulation Questionnaire - Suppression Subscale.} +#' \item{day1_pre_suds}{Day 1 Subjective Units of Distress Scale Pre-Session.} +#' \item{day1_post_suds}{Day 1 Subjective Units of Distress Scale Post-Session.} +#' \item{day2_pre_suds}{Day 2 Subjective Units of Distress Scale Pre-Session.} +#' \item{day2_post_suds}{Day 2 Subjective Units of Distress Scale Post-Session.} +#' \item{day3_pre_suds}{Day 3 Subjective Units of Distress Scale Pre-Session.} +#' \item{day3_post_suds}{Day 3 Subjective Units of Distress Scale Post-Session.} +#' \item{race}{The self identified race of the participant.} +#' } +#' +#' @source Parikh, N., McGovern, B. & LaBar, K.S. Spatial distancing reduces emotional arousal to reactivated memories. Psychon Bull Rev 26, 1967–1973 (2019).[Link to doi](https://doi.org/10.3758/s13423-019-01648-z) +#' +#' Parikh, N., McGovern, B., & LaBar, K. S. (2023). Data from: Spatial distancing reduces emotional arousal to reactivated memories. Duke Research Data Repositor [Link to full dataset](y. https://doi.org/10.7924/r4z89f54) +#' +"sdea" diff --git a/R/data-skill_acquisition.R b/R/data-skill_acquisition.R new file mode 100644 index 00000000..6ce5e852 --- /dev/null +++ b/R/data-skill_acquisition.R @@ -0,0 +1,36 @@ +#' Skill Acquisition +#' +#' This data set contains 1,035 observations of 18 variables from Experiment 1 +#' of Kardas and O’Brien (2018). In this experiment, the authors randomly assigned +#' participants to one of six between-subject conditions in a 3 (type of exposure: +#' watch, read, think) × 2 (amount of exposure: low, high) design. The key +#' dependent variable is perceived ability, operationalized as how much +#' participants believed they could pull off a “tablecloth trick” (removing the +#' tablecloth from a table without upsetting the dishes on the table) based on +#' the type of training they received. +#' +#' @format A data frame with 1035 rows and 18 variables. +#' \describe{ +#' \item{p_number}{participant ID} +#' \item{heard_before}{Whether the participant knows what “the tablecloth trick” was before the beginning of the study with levels 1 = Yes and 2 = No. All participants completed the study but participants who indicated they did not know were excluded from the analysis.} +#' \item{type_of_info}{Experimental condition for type of exposure with levels 1 = Watching, 2 = Reading and 3 = Control.} +#' \item{amt_of_info}{Experimental condition for amount of exposure with levels 1 = Low Exposure and 2 = High Exposure.} +#' \item{perceived_ability}{Dependent variable; “You jump in and give the trick ONE SHOT yourself. What do you feel are the chances that you’d successfully pull it off?” on a 1 to 7 scale where 1 = I feel there’s no chance at all I’d succeed on this attempt, 7 = I feel I’d definitely succeed without a doubt on this attempt.} +#' \item{manipulation_check}{Manipulation check for amount of information; “About how much of this ‘more information’ do you feel you were given?” on a 1 to 7 scale where 1 = very little/went by quickly, 7 = a lot/displayed for a while.} +#' \item{technical_difficulties}{Whether participants had any technical difficulties with levels 0 = No and 1 = Yes.} +#' \item{technical_difficulties_description}{Free text describing the technical difficulty.} +#' \item{gender}{Participant’s gender with levels 1 = Male, 2 = Female and 3 = Other.} +#' \item{ethnic_1}{Participant identified as Black with levels 0 = No, 1 = Yes.} +#' \item{ethnic_2}{Participant identified as Hispanic with levels 0 = No, 1 = Yes.} +#' \item{ethnic_3}{Participant identified as Asian with levels 0 = No, 1 = Yes.} +#' \item{ethnic_4}{Participant identified as American Indian with levels 0 = No, 1 = Yes.} +#' \item{ethnic_5}{Participant identified as White with levels 0 = No, 1 = Yes.} +#' \item{ethnic_6 }{Participant identified as Other with levels 0 = No, 1 = Yes.} +#' \item{age}{Participant’s age in years.} +#' \item{tried_before}{Whether participants had ever previously attempted a tablecloth trick in their everyday lives with levels 1 = Yes and 2 = No.} +#' \item{fail_ac}{Whether a participant failed an attention check with levels 0 = did not fail any attention checks and 1 = failed one or more attention checks.} +#' } +#' +#' @source Kardas, M., & O’Brien, E. (2018). Easier seen than done: Merely watching others perform can foster an illusion of skill acquisition. Psychological Science, 29(4), 521-536. [Link to doi](https://doi.org/10.1177/0956797617740646) [Link to full dataset](https://osf.io/u3byh/files/bfj8n) +#' +"skill_acquisition" diff --git a/data-raw/Brazil_death_anxiety/Brazil_death_anxiety-dataprep.R b/data-raw/Brazil_death_anxiety/Brazil_death_anxiety-dataprep.R new file mode 100644 index 00000000..74e5632b --- /dev/null +++ b/data-raw/Brazil_death_anxiety/Brazil_death_anxiety-dataprep.R @@ -0,0 +1,19 @@ +# load packages ---------------------------------------------------------------- + +library(tidyverse) +library(janitor) + +# load data -------------------------------------------------------------------- + +Brazil_death_anxiety <- read_csv("data-raw/Brazil_death_anxiety/Brazil_death_anxiety.csv") + +# cleaning: clean names -------------------------------------------------------- + +Brazil_death_anxiety <- Brazil_death_anxiety |> + clean_names() |> + select(-country) |> + rename(employment = employment_fulltime) + +# save ------------------------------------------------------------------------- + +usethis::use_data(Brazil_death_anxiety, overwrite = TRUE) diff --git a/data-raw/Brazil_death_anxiety/Brazil_death_anxiety.csv b/data-raw/Brazil_death_anxiety/Brazil_death_anxiety.csv new file mode 100644 index 00000000..4e59b163 --- /dev/null +++ b/data-raw/Brazil_death_anxiety/Brazil_death_anxiety.csv @@ -0,0 +1,201 @@ +Participant,Country,Gender,Year_Born,Age in 2015,Ethnicity,Marital_Status,Employment_Fulltime,Occupation,Fivefears_1,Fivefears_2,Fivefears_3,Fivefears_4,Fivefears_5,worry_death,incomplete_bucket_list,deathly_ill,concern_for_others,painful_death,loved_ones,die_alone,cognitive_function,expenses_burden,as_you_wish,buried_alive,left_behind,remembered,permenant,after_death +1,Brazil,M,14,30,Branco,Married,Full-time,Manager,The dark/darkness,End of the world.,Death,Single.,Anabelle,7,7,6,7,7,7,8,7,7,6,6,7,7,7,7 +2,Brazil,F,34,50,Caucasiano,Married,Full-time,Desk,Getting old,Not having money.,Being forgotten.,Getting fat,Getting ugly,6,7,6,7,6,7,6,5,7,6,7,7,6,7,7 +3,Brazil,M,14,30,Branco,Committed,Full-time,Tax Analyst - Head of Department,Being without salvation.,Getting left behind.,Dieing in sin,Suffering.,Pain,5,8,7,4,4,0,0,3,7,0,3,8,0,4,0 +4,Brazil,M,26,42,branco,Married,Full-time,director ti,Death,Illness,Disability.,Sadness,Defeat,8,8,7,6,5,6,7,7,6,4,4,8,7,8,7 +5,Brazil,M,9,25,Branco,Single,Full-time,Administrator,Snakes.,Loneliness,Losing somebody I love,Going blind,Amnesia,5,7,4,8,6,0,8,8,1,0,1,8,6,0,4 +6,Brazil,F,6,22,Caucasiana,Married,Part-time,Director / CEO of an IT company,The dark/darkness,Ghosts,Vampires,Not getting the job/work I want,Living a monotonous life,4,8,6,8,7,5,2,8,5,2,8,8,5,6,8 +7,Brazil,M,15,31,Pardo,Single,Full-time,HR Manager,Illness,Losing relatives.,Not having money,Loneliness,Violence,7,8,8,7,8,8,7,7,7,8,8,8,4,7,6 +8,Brazil,M,13,29,pardo,Single,Full-time,director of a construction company,The end of relationships,Prejudice.,Illness,Loneliness,Anxiety,7,8,3,8,8,0,0,8,0,0,0,8,0,4,8 +9,Brazil,M,17,33,Branco,Married,Full-time,Board administrator,Losing my mother,Faculties/school,Planes,Heights,Rats,7,4,5,5,4,4,3,2,4,3,4,3,4,2,3 +10,Brazil,M,12,28,Negro,Committed,Full-time,IT,Heights,The future,Traffic/transit,n/a,n/a,2,1,1,1,2,1,1,2,1,1,0,2,2,2,1 +11,Brazil,F,5,21,Branca,Married,Full-time,-,Children,Spider,Snakes.,Shadows,Ghosts,8,8,6,8,1,8,4,3,8,5,2,8,8,8,3 +12,Brazil,M,17,33,Branco,Married,Full-time,CIO,Health,Money,Safety,Old age,Home.,8,6,7,7,7,8,8,2,6,2,1,7,7,6,2 +13,Brazil,F,36,52,Branca,Committed,Retired,-,Unemployment,Loneliness,Hunger,Kidnapping.,Illness,8,8,8,8,8,8,8,8,8,6,8,8,5,6,8 +14,Brazil,F,27,43,Branca,Married,Full-time,Professor,Failing.,Illness,Family.,Losing my vision.,Not having time.,0,0,8,0,0,0,0,8,0,0,0,0,0,0,0 +15,Brazil,M,14,30,parda,Single,Full-time,Civil Engineering,Snakes.,Losing the one I love the most,Demons.,Spiders,Doing poorly at work.,8,8,8,8,7,7,5,4,8,0,8,8,2,8,6 +16,Brazil,F,16,32,Branca,Single,Full-time,Process Analyst,Death,Snakes.,Cockroaches,Needles.,Pain,5,8,6,4,8,5,5,8,1,0,8,8,0,6,7 +17,Brazil,F,5,21,branca,Single,"Unemployed, looking",student,Unhappiness.,Death,Not realizing my full professional potential.,Ending up alone,Not having water in the city.,8,8,8,8,7,7,8,7,6,7,5,8,4,8,7 +18,Brazil,F,28,44,Morena Claro,Married,Part-time,IT Profisssional,Illness,Losses,Unhealthy senescence.,Climate change.,Loneliness,0,4,8,8,0,4,4,8,8,4,4,8,2,0,0 +19,Brazil,F,15,31,branca,Single,dona de casa,-,Death,Not realizing my full professional potential.,Crowds.,Speaking in public,Relationships,8,6,7,8,8,7,6,8,7,6,8,7,6,6,8 +20,Brazil,F,16,32,Misturada,Single,Full-time,Cab,Health,Family.,Money,Well-being.,Comfort.,4,7,7,7,5,6,4,7,7,2,8,6,3,3,2 +21,Brazil,F,11,27,Caucasiano,Single,"Unemployed, looking, Bolsista de mestrado",-,Fear of failure.,Fear of being ridiculed.,Fear of violence.,Fear of crowded places.,Fear of new things,2,3,8,2,8,0,0,0,5,4,0,3,1,0,0 +22,Brazil,M,4,20,Pardo,Single,Part-time,Trainee,Death,Loneliness,Losing friends.,Getting married.,The death of family members,8,8,8,6,6,1,8,8,3,1,2,7,5,8,8 +23,Brazil,M,19,35,catolico,Married,Full-time,Electronics Technician,Not paying the bills.,Becoming an invalid/disabled.,Fear of flying,Earthquakes.,Illness,8,8,8,8,8,8,8,8,0,4,8,8,2,8,6 +24,Brazil,M,12,28,Pardo,Married,Full-time,Editor,Fear of driving.,Fear of not paying the bills.,Fear of accidents.,Bills to pay,I don't know.,4,7,7,7,6,8,4,4,5,3,2,8,4,4,8 +25,Brazil,F,9,25,caucasiana,Single,Part-time,Researcher and professor,Losing my parents.,Not being successful.,Not being able to support my family financially.,The consequences of losing control of my emotions.,Not being able to properly educate/raise my children.,5,8,8,5,7,6,7,7,2,4,8,5,0,0,6 +26,Brazil,M,33,49,caboclo,Committed,Full-time,Civil Servant,Supernatural things.,The dark(ness),Venomous animals,Isolated placed,Suffocation,2,7,8,7,8,4,0,7,2,0,4,3,1,0,2 +27,Brazil,M,15,31,Branco,Married,Full-time,Production manager,Death,Illness,Hunger,Violence,Unemployment,8,6,8,8,8,8,8,6,0,6,0,8,0,0,1 +28,Brazil,F,14,30,Brasileira,Married,Full-time,Psychotherapist,Failure,Loneliness,Professional.,Relationship,Money,4,4,4,0,0,0,0,4,0,0,0,8,0,0,0 +29,Brazil,F,6,22,europeu/alemão,Single,Estudante,-,Not having work,Fear of displeasing God,Death,Debilitating illness,Failing in life.,5,8,8,7,5,6,2,8,8,7,7,8,5,0,0 +30,Brazil,M,12,28,Americano,Married,Full-time,-,Death,Getting in debt,Getting hurt,Getting ill,Losing a loved one,6,5,7,7,6,6,5,7,6,4,0,7,6,6,0 +31,Brazil,M,12,28,BRASILEIRO,Married,Full-time,GOVERNMENT,Employment,Assault,Death,Accidents,Losing my mother,4,7,8,5,8,7,6,6,7,7,6,7,7,7,7 +32,Brazil,M,5,21,Branco,Single,Estudante,-,Faculties/school,Exchange,The future,Health,Employment,5,5,5,5,5,5,4,5,3,4,4,5,4,4,5 +33,Brazil,M,16,32,pardo,Single,"Unemployed, looking, autonomo",traffic instructor,Death,Illness,Loneliness,Violence,Water,4,8,5,5,5,0,0,3,0,0,0,8,0,8,0 +34,Brazil,M,20,36,Afro,Married,Full-time,Counter,Death,Illness,Poverty,Loneliness,Pain,8,8,8,7,8,5,8,8,1,8,8,5,5,8,8 +35,Brazil,M,11,27,Branco,Married,Full-time,Administrator,Loneliness,Illness,Disability.,Betrayal,Sadness,6,8,5,7,7,6,6,5,7,6,6,8,6,5,5 +36,Brazil,F,9,25,Parda,Single,Full-time,Technical Adm,Being alone for ever.,Losing the people I like,Losing my way in life.,Death,Being unhappy.,6,7,6,7,6,7,8,8,7,5,6,6,8,6,7 +37,Brazil,M,39,55,Indo-Europeu,Married,Full-time,Federal Government,Illness,Invalidity,Debt.,Divorce.,Death,7,5,7,6,5,6,4,8,7,4,4,6,4,6,5 +38,Brazil,M,8,24,Negro,Committed,Full-time,Director of Technology and Medias,The future,Snails,Violence,Technology,Humans,0,2,0,2,0,3,5,5,5,0,0,3,0,3,0 +39,Brazil,F,13,29,branca,Single,Full-time,Biologist,Failure,Ending up alone,Falling ill,Not having a family,Not having a good job,7,8,8,0,8,3,1,1,8,5,4,7,3,0,2 +40,Brazil,F,9,25,parda,Married,Full-time,Manager,Loss,of not being somebody important,Not graduating,Health,Life,5,8,8,8,7,8,8,5,4,5,5,7,5,5,5 +41,Brazil,M,37,53,Branco espanico,Divorced,Part-time,Agriculture,Health,Money,Safety,Inflation.,Age,5,8,7,8,4,8,4,7,4,5,0,8,2,7,7 +42,Brazil,M,21,37,branco,Married,Full-time,Employee public,Death,Old age,Illness,Loss of a loved one,Loneliness,8,8,8,8,8,8,8,8,6,7,8,8,8,8,8 +43,Brazil,F,43,59,negra,Single,Retired,-,Lack of faith,Poor health,Having my own home,Loss of friends,Lack of money,1,6,5,4,0,2,1,6,0,2,1,3,2,1,0 +44,Brazil,F,12,28,parda,Married,Full-time,director,Insecurity,Violence,War,Financial problems,Injustice,6,6,8,6,8,7,2,6,0,0,7,6,0,0,0 +45,Brazil,M,17,33,parda,Single,Part-time,freelancer,Speaking in public,Violence,Illness,Loneliness,Pain,7,6,8,6,6,6,6,8,7,6,7,6,4,5,5 +46,Brazil,M,15,31,Caucasiano,Married,Full-time,Engineer,Death,Accidents,Failure/bankruptcy,Work,Relationship,8,8,6,8,7,7,6,5,7,5,5,8,6,8,7 +47,Brazil,M,3,19,Caucasiano,Committed,"Unemployed, looking",Unemployed,Death,The dark/darkness,Cemeteries,Fire,Death,4,4,8,8,8,8,4,8,4,0,8,8,0,0,4 +48,Brazil,M,19,35,pardo,Married,Full-time,technical,Inflation,Getting ill,Violence,Water running out,If it stopped raining,8,8,8,8,8,8,0,8,8,4,8,8,5,8,6 +49,Brazil,Other,35,51,parda,Single,Full-time,adminstrativo assistant,Death,Losing my mother,Not having somewhere to live,Becoming an invalid/disabled.,Going blind,8,6,8,8,8,8,7,8,7,5,8,8,7,8,8 +50,Brazil,M,10,26,nao sei rs,Single,Full-time,secretary executive,Spiders,Losing somebody I love,Getting ill,Losing a family member,Being alone/not having anyone,7,7,8,8,8,8,8,7,6,5,8,8,7,8,7 +51,Brazil,M,19,35,Branco,Married,Full-time,IT Manager,Coffee,Tea,Computers,Belt,Slippers,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8 +52,Brazil,F,38,54,parda,Seperated,Autonomo,Saleswoman,Getting old,Loneliness,Illness,Unemployment,Death,7,8,8,8,8,8,8,8,8,3,8,8,4,8,7 +53,Brazil,M,4,20,caucasiano,Single,Part-time,attendant,Heights,Death,Going bald,Losing my job,Anxious for the arrival of Saturday,6,7,6,4,5,7,3,7,4,5,2,6,8,7,8 +54,Brazil,F,4,20,white,Committed,Part-time,Translator,The future,Money,Career,Family,Violence,0,6,6,3,0,0,6,6,0,0,0,5,0,0,0 +55,Brazil,M,15,31,Branco,Married,Full-time,Production manager,Death,Illness,Accidents,Poverty,Storms,8,8,8,8,8,8,8,8,0,0,8,8,0,8,8 +56,Brazil,Other,5,21,pardo,"Single, Committed","Unemployed, looking, Estudante",-,Losing salvation,Death,Heights,Graduating,Starting a family.,8,6,5,6,3,7,5,6,4,0,2,8,4,2,0 +57,Brazil,F,21,37,Branco,Married,Full-time,Operator,Dead people,The dark/darkness,Ghosts,An early death,Heights,4,7,7,2,5,6,7,6,3,1,6,7,5,3,6 +58,Brazil,F,6,22,branca,Single,Estudante,-,The death of my parents.,Not having a home.,Not having food to eat,Cockroaches,The dark/darkness,8,8,8,8,7,8,7,8,6,4,8,4,1,7,8 +59,Brazil,M,44,60,branca caucasiana,Married,"Retired, autônomo",Counter,Being dependent on others.,Heights,Ending up alone,Death,Falling.,7,2,8,5,4,6,5,2,4,5,7,8,3,8,6 +60,Brazil,M,23,39,LATINA,Married,Part-time,OFFICE ASSISTANT,Death,Unemployment,Betrayal,Suffering.,Deficiencies,8,4,4,8,4,0,0,4,8,0,8,8,4,4,4 +61,Brazil,M,13,29,negro,Single,"Unemployed, looking",-,Violence,Health,Depression.,Prejudice.,Politics,5,8,8,8,8,8,8,8,8,0,8,8,8,5,4 +62,Brazil,M,28,44,Branco,Married,Full-time,-,Assault,Poor health,Floods/overflows,Corruption,High places.,2,6,8,4,8,6,2,8,7,8,8,8,8,0,0 +63,Brazil,M,56,72,BRAMCO,Married,Retired,I exercise ALSO PEACE JUDGE FUNCTION,Debt,Death,Enemies,Personal finances.,The well-being of my family,8,8,8,4,4,0,0,8,4,8,0,7,0,4,0 +64,Brazil,F,32,48,Branco,Married,Full-time,Manager,The dark/darkness,Being called,Losing my job,Losing mobility,Death,4,5,8,8,8,5,8,8,0,0,8,8,0,0,0 +65,Brazil,M,11,27,Branco,Married,Full-time,-,Death,Unemployment,Hunger,Loss,Winning,8,8,2,0,4,0,0,2,8,0,8,8,2,0,0 +66,Brazil,M,4,20,Caucasiana,Single,Estudante,-,Not being somebody (important),Disappointing my family.,Failing.,Not achieving my dreams.,Being unhappy.,4,8,8,8,8,8,8,8,7,8,8,8,8,8,7 +67,Brazil,F,12,28,branca,Single,Full-time,events,Death,A masculine touch,Cockroaches,Scorpions,Snakes.,8,8,8,8,8,8,8,8,4,6,8,8,6,8,8 +68,Brazil,F,3,19,Branca,Committed,"Unemployed, not looking",-,The death of family members,Not having work,Spirits,The dark/darkness,Weight,8,7,1,6,4,8,2,7,2,0,0,8,5,6,4 +69,Brazil,F,13,29,branco,Single,Estudante,student,Violence,The economy,Unemployment,Illness,Loneliness,5,6,8,3,3,4,7,8,6,3,6,5,0,1,5 +70,Brazil,M,21,37,Pardo,Single,"Unemployed, looking",Technical Buildings,Not having money,Dieing without kids.,Not getting married.,Becoming destitute,Being killed by psycho,0,8,6,6,5,1,0,6,1,3,0,0,0,0,0 +71,Brazil,M,43,59,cristao,Divorced,Full-time,driver \ particular security,Health,Debt,Ending up alone,Safety,Children,0,8,8,2,4,8,8,8,0,4,0,8,0,0,0 +72,Brazil,M,21,37,branco,Married,Full-time,counter,Speaking in public,Pressure,Death,Heights,Shyness,4,4,4,3,6,5,6,6,4,4,3,5,5,4,6 +73,Brazil,M,39,55,caucasiano,Married,Full-time,CEO,Financial bankruptcy,Violence,Poverty,Dependence,Illness,4,6,8,6,7,2,3,8,1,2,3,6,0,4,6 +74,Brazil,F,11,27,branca,Married,Full-time,executive director,Unemployment,Inflation.,Death,Not working any more.,Being alone/single,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8 +75,Brazil,M,27,43,Branco,Married,Full-time,Commercial Director,Not being healthy.,Not having adequate financial security for retirement.,Being attacked.,Natural catastrophes,Not having a source of income,3,6,8,6,3,6,3,8,3,8,3,6,3,5,3 +76,Brazil,M,14,30,GERMANICA,Committed,Full-time,Finance manager,Violence,War,Lack of food and water,Safety,Stability,0,5,2,0,1,0,0,5,5,5,4,3,0,0,0 +77,Brazil,M,22,38,branco,Divorced,Full-time,autonomous,Poverty,Death,Loneliness,Hunger,Lack of water,4,3,7,8,8,0,8,3,0,3,1,8,0,0,0 +78,Brazil,M,39,55,branca,Married,Full-time,Draftsman,Poor health,Lack of safety,Unemployment,Lack of money,Lack of friends,8,8,8,8,6,6,6,7,8,6,8,8,8,8,5 +79,Brazil,M,14,30,branco,Committed,Full-time,administrative assistant,Corruption,Illness,Unemployment,Lack of water,Lack of energy,0,0,8,4,5,2,3,0,8,2,4,4,0,0,0 +80,Brazil,M,27,43,Branca,Married,Full-time,IT Manager,Health,Safety,Heights,Unemployment,Violence,8,8,8,8,8,8,8,7,7,7,5,8,7,8,8 +81,Brazil,M,20,36,negro,Married,Full-time,workman,Injustice,Planes,Heights,Dentist,Hospital,1,0,0,0,2,8,0,0,3,5,8,6,8,0,0 +82,Brazil,M,34,50,Branca,Married,Full-time,sales,Children,Money,Home.,Crime,Drugs,4,8,7,6,4,7,5,8,4,6,6,8,4,7,2 +83,Brazil,F,23,39,BRANCA,Married,Part-time,FINANCIAL ANALYST,Attack,Rape,Rays (lightening),Storms,Snakes,7,4,6,7,7,8,8,6,7,4,8,8,6,7,6 +84,Brazil,F,17,33,BRANCA,Single,Full-time,IMPORT,Death,Losing my job,Illness,Depending on somebody due to illness,Doing poorly financially.,7,8,8,7,6,7,7,8,8,8,6,6,7,7,8 +85,Brazil,F,11,27,Brasileira,Married,"Unemployed, not looking",-,Violence,Death,Heights,Panic,Phobias,6,6,7,7,6,7,6,4,6,3,6,7,4,5,4 +86,Brazil,F,27,43,caucasiana,"Single, Committed",Full-time,Bilingual operator,Abuse of power,Assault,Violence,Hunger,Death,7,2,7,3,4,4,7,1,8,8,8,4,7,4,7 +87,Brazil,M,3,19,Branco,Single,Estudante,-,Losing somebody,Sadness,Illness,Disappointment,Enemies,4,8,8,5,5,8,4,4,2,4,8,7,7,0,0 +88,Brazil,M,19,35,Branco,Single,Full-time,Seller,Death,Illness,Unhappiness.,Not reaching my goals,Financial instability,7,8,7,5,6,4,4,6,3,6,6,7,2,6,8 +89,Brazil,M,6,22,pardo,Single,Full-time,full time,My family,Other people hurting others,Not making the right decisions,Others,Others,7,8,7,8,6,4,5,6,8,5,8,8,6,7,6 +90,Brazil,M,10,26,Branco,Single,"Unemployed, not looking",-,Ending up alone,Assault,Strangers,Irrelevance,Spider,0,6,6,1,1,2,0,6,8,0,3,1,0,5,0 +91,Brazil,M,19,35,braco,Married,Full-time,executive,Death,Hunger,Lack of money,Loneliness,Prison,8,8,6,8,8,7,7,8,7,7,8,7,8,7,8 +92,Brazil,M,6,22,pardo,Married,Full-time,Mechanical designer,Spiders,Snakes.,Being weak,Not being intelligent,Death,4,7,7,4,4,0,0,6,7,0,0,5,7,0,0 +93,Brazil,M,4,20,baiano,Single,Full-time,aux administrative,Snakes.,Man.,Weapons,The future,Losing somebody,0,0,2,3,0,0,0,0,0,0,3,4,0,0,0 +94,Brazil,M,26,42,Caucasiano,Divorced,Full-time,Sub-editor,Death,Loneliness,Anger,The future,Frustration,8,8,7,7,8,7,6,8,1,1,4,7,3,8,7 +95,Brazil,F,17,33,BRANCO,Married,Full-time,WARRANTY SUPERVISOR QUALITY AND SHOPPING,Lack of water,Illness,Death,Suffering,Accidents,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8 +96,Brazil,M,51,67,negra,Married,Retired,-,Suffering from serious illness,Public and political uncertainty,Terrorism,Communism in Brazil,Losing faith in Jesus Christ.,0,0,8,0,0,0,0,0,8,0,8,0,0,0,8 +97,Brazil,F,40,56,Branco,Seperated,Retired,I am retired,Death,Becoming an invalid/disabled.,Losing a family member,Taking care of my family,Not being able to study,7,6,8,8,5,8,8,8,7,4,2,8,4,4,4 +98,Brazil,F,13,29,Parda,Married,Full-time,Administrator,Death,Not having money,Changes/moves,Not pleasing (others),Losing my loved ones.,0,0,2,0,4,0,0,2,4,0,0,8,0,0,0 +99,Brazil,F,16,32,branca,Married,Full-time,manager,Loneliness,Snakes.,Thieves,Heights,Water,3,8,8,7,5,6,1,4,0,0,0,8,0,4,4 +100,Brazil,F,28,44,Parda,Married,Full-time,Teacher,Violence,Illness,Accidents,Heights,Loneliness,1,2,6,6,2,3,2,1,2,0,0,0,0,0,1 +101,Brazil,M,4,20,Branco,Committed,Part-time,Manager,Admonishment,Not being able to support my family financially.,Taking tests,Not being a good entrepreneur,Loss,5,8,8,7,8,8,0,8,8,8,8,6,0,5,3 +102,Brazil,F,9,25,BRANCO,Married,Part-time,TEC.AUTOMOCAO INDUSTRIAL,Ending up alone,Horseback riding,Fear of snakes.,Fear of roaches.,Fear of rats.,1,5,3,7,2,3,7,5,6,6,4,4,6,1,3 +103,Brazil,M,3,19,branco,Single,Full-time,production assistant,Fear of public places.,Loneliness,Dieing without having done anything (important),Failing.,Impotence,4,8,6,4,8,6,8,8,3,6,8,4,7,3,5 +104,Brazil,M,14,30,Caucasiano,Committed,Full-time,Managing Director,Death,Illness,Suffering.,Pain,The future,6,7,8,7,7,6,7,7,2,0,3,6,5,3,1 +105,Brazil,F,17,33,branca,Single,"Unemployed, looking",-,Being the center of attention,Love,Flying insects,Being dependent on others,Being a mother,0,4,7,5,3,0,0,8,3,0,0,3,0,0,0 +106,Brazil,F,11,27,Caucasiana,Single,"Full-time, Autonoma",Hand-made confectionery,Lack of money in the future,Illness,Lack of water in the world,Not being a mother,Ending up alone,2,6,6,7,2,4,6,8,8,0,6,8,1,2,3 +107,Brazil,F,16,32,Branca,Committed,Full-time,Secretary,Violence,Lack of water,Health,Pollution,Unemployment,1,2,4,4,5,2,1,2,0,0,0,3,0,0,0 +108,Brazil,F,46,62,brasileira,Divorced,Retired,-,Illness,Suffocation,Fire,Surgery,Assault,6,0,8,8,8,8,7,8,0,0,8,7,0,0,6 +109,Brazil,F,13,29,Branca,Committed,Full-time,Techniques in Business Administration,Death,The dark/darkness,Storms,Insomnia,Illness,8,8,8,8,8,8,8,8,1,8,8,8,7,7,8 +110,Brazil,F,37,53,Branca,Committed,Full-time,Road Trip ticket issuer,Death,Loss of family members,Suffering from illness,Assaults,Failing in my responsibilities,7,8,8,8,8,7,6,7,8,0,8,7,4,7,7 +111,Brazil,F,34,50,Branca,Married,Full-time,IT Manager,Heights,Animals,The dark/darkness,Panic,Being arrested,8,8,8,8,8,8,8,8,8,7,8,8,7,8,8 +112,Brazil,M,19,35,Negro,Married,Full-time,Manager,The dark/darkness,High speeds,Questions,Doubts,Answers,4,7,7,4,7,4,7,4,7,4,7,7,6,7,4 +113,Brazil,F,19,35,branco,Married,Full-time,sales manager,Insecurity,Politics,Theft,Unemployment,Accidents,0,5,4,3,4,3,0,2,3,5,0,8,4,0,0 +114,Brazil,M,15,31,Germanico,Married,Full-time,manager,Poverty,Illness,Climate,Violence,Death,4,5,3,4,3,4,3,3,3,5,4,4,4,4,4 +115,Brazil,F,26,42,Branca,Married,Full-time,auxiliary accounting,Dieing and leaving my child behind,Not seeing my child progress,Losing my child,Getting ill,Suffering an accident,8,8,8,8,8,7,4,7,4,8,8,8,4,8,8 +116,Brazil,M,16,32,branco,Married,Full-time,IT manager,Illness,Financial problems,Death of family members,Children,Freedom,7,8,8,8,7,7,8,7,7,7,7,8,8,8,8 +117,Brazil,M,22,38,Branco,Married,Full-time,Tecnico Informatica,Loss of a loved one,Death,The future,Insecurity,War,7,7,7,6,6,6,7,8,7,6,8,8,1,6,6 +118,Brazil,M,19,35,brasileiro,Married,Full-time,Minister,Heights,War,Insects,Violence,Crime,4,8,7,8,4,0,0,8,8,2,0,7,0,0,0 +119,Brazil,F,7,23,Branca,Single,Full-time,saleswoman,Poor health,Lack of money,Unemployment,Loneliness,Sadness,8,8,8,8,8,8,8,5,7,0,8,8,8,8,8 +120,Brazil,M,22,38,branco,Married,Full-time,director,Debt,Sadness,Unhappiness.,Illness,Prison,0,8,8,8,4,8,2,8,3,0,0,0,0,0,0 +121,Brazil,F,12,28,BRANCA,Committed,Full-time,AUX ADMINISTRATIVE,Loneliness,Death,Losing my job,Loss of family,Losing friends.,6,7,7,7,8,7,7,5,5,6,7,7,7,6,7 +122,Brazil,F,12,28,branca,Single,Part-time,Attorney,Unemployment,Life,Death,Loneliness,Falling out of love,3,8,3,4,4,5,6,4,5,7,8,8,5,3,8 +123,Brazil,F,26,42,BRANCA,Seperated,Full-time,ANALYST,Death,The unknown,The dark,roaches,Rats,8,8,8,8,8,8,8,8,8,4,8,8,8,8,8 +124,Brazil,M,12,28,Branco,Married,Full-time,Analyst Automation Systems,Brochures,Death,Accidents,Bankruptcy,Loneliness,5,6,8,7,7,6,4,8,8,2,1,7,4,5,4 +125,Brazil,M,16,32,Pardo,Married,Full-time,Nutritionist,Failure,Group tragedy,Death by stabbing,Asphyxia,Open fracture,1,8,0,4,8,0,0,0,3,2,0,0,0,0,0 +126,Brazil,M,36,52,branca,Married,Retired,-,Financial situation,Falling ill,Being attacked.,Losing my child,Injustice,4,7,8,8,6,8,8,8,3,4,8,7,7,6,8 +127,Brazil,M,38,54,Branco,Married,Full-time,chief of staff department,Unemployment,Death,Becoming an invalid/disabled.,Accidents,Losing my child,8,8,8,5,4,6,8,8,4,5,8,8,7,7,6 +128,Brazil,M,9,25,Branco,Committed,Full-time,Supervisor IT,Death,Ending up alone,Fear of closed spaces,Fear of heights.,Losing somebody I love,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8 +129,Brazil,M,11,27,Asiático,Single,Part-time,Operator Call Center,Failure,The unknown,Heights,Death,Supernatural things.,6,8,6,4,7,4,4,8,8,5,1,4,2,3,7 +130,Brazil,M,28,44,negro,Single,Part-time,lawyer,Rats,Heights,Money,Dogs,Unemployment,3,3,6,1,2,4,2,3,6,0,3,5,4,0,0 +131,Brazil,F,9,25,Brasileira,Married,Full-time,General manager,Financial troubles,Falling ill,Ending up alone,The big crisis in my country,Insecurity,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8 +132,Brazil,F,11,27,branco,Single,Part-time,Desk,Being raped,Being attacked.,Being kidnapped,Death,The death of those close to me,6,8,8,8,6,4,4,5,1,1,6,8,7,5,6 +133,Brazil,M,8,24,Pardo,Single,"Unemployed, looking",-,Death,Heights,Unemployment,Craziness,Blackmail,8,7,5,5,6,5,6,6,3,5,7,6,5,8,6 +134,Brazil,M,10,26,Pardo,Committed,Full-time,Student,Ending up alone,Waiting,Finishing my course,Losing my child,Closed spaces,8,8,8,8,7,7,8,7,7,8,8,7,8,7,5 +135,Brazil,F,39,55,PARDA,Seperated,Retired,BANK,Streets,Streets,Agglomerations,Elevators,Planes,0,0,0,0,0,0,0,0,1,0,0,7,0,0,0 +136,Brazil,M,4,20,Negro,Single,Part-time,teacher,Unemployment,Lack of attention,Technology,Education,Health,0,2,6,0,0,4,0,3,5,0,4,6,0,0,0 +137,Brazil,M,45,61,branco,Married,Retired,retired,Illness,Accidents,Fights,Arguments,Death,8,8,8,8,8,8,8,8,8,8,8,8,0,8,8 +138,Brazil,M,14,30,branco,Single,Full-time,Geophysical,Death,Loneliness,Chronic conditions,Snakes.,Large arachnids,8,8,8,8,8,8,8,7,8,2,4,8,6,4,5 +139,Brazil,M,35,51,calcaziano,Committed,Autonoma,Property manager,Loss of family,Death,Being disabled,Unemployment,Traffic/transit,7,6,8,7,8,7,8,6,5,5,7,5,4,7,6 +140,Brazil,M,9,25,hispanico,Single,Part-time,freelancer / autonomous,Not graduating,Assaults,Faith,"Being ""nothing""",Being bedridden for a long time,0,5,8,2,2,0,0,7,6,1,0,1,1,1,0 +141,Brazil,M,22,38,Parda,Committed,Full-time,IT Manager,Fear of death,Fear of unemployment,Solitude,Being vulnerable,Public uncertainty/insecurity,5,6,8,7,4,8,8,8,7,7,4,8,4,4,4 +142,Brazil,F,37,53,Brasileiro,Married,Full-time,ADMINISTRATIVE ASSISTANT,Losing my job,Getting old alone,Losing th woman I love,Being ill and bedridden,Seeing my children get sick,0,8,8,8,0,0,0,8,8,0,8,0,0,0,0 +143,Brazil,M,19,35,Parda,Married,Full-time,Operations Manager,Loneliness,Unemployment,Illness,Violence,Lack of money,5,5,6,5,5,6,7,6,6,0,7,4,0,0,0 +144,Brazil,M,29,45,Brasileiro,Married,Full-time,Chief,Venomous animals,Closed spaces,Heights,Agoraphobia,Frights,8,8,8,8,8,2,8,8,0,0,8,8,3,8,8 +145,Brazil,M,25,41,AFRO DESCENDENTE,Single,Full-time,Officials PUBLIC,Natural disasters,Physical dependence,Serious accidents,Public safety,The well-being of my family,4,5,8,8,8,6,5,8,7,4,8,7,4,4,5 +146,Brazil,M,14,30,caucasiano,"Single, Committed","Part-time, desenvolvendo outros trabalhos autonomos durante o tempo livre",and administrative manager,Going without food,Losing somebody I love,Becoming depressed,Not having money,Losing my house,1,8,7,8,4,2,5,8,8,2,8,6,1,2,6 +147,Brazil,F,17,33,Branca,Single,-,Organizational Psychologist,Losing my job,Debt,The death of my parents.,Getting ill,Urban violence,4,8,7,5,0,7,7,1,4,0,5,6,4,2,1 +148,Brazil,M,7,23,pardo,Married,"Unemployed, looking",Graphic design,Lying,Death,Going to hell,Not having money.,Not having water,6,6,5,4,5,5,6,6,6,5,6,5,7,6,4 +149,Brazil,M,7,23,branco,Single,Full-time,administrative public position,Spiders,Fear of snakes.,Fear of death.,Being impatient,Getting angry easily,6,6,7,5,8,6,5,4,6,3,8,6,3,6,6 +150,Brazil,M,19,35,BRANCO,Married,Full-time,SUPERVISOR,Health,Money,The future,Children,Work,8,7,7,8,7,8,8,7,6,8,6,8,5,8,8 +151,Brazil,F,19,35,parda,"Single, Committed",Part-time,autonomous,Death,Snakes.,Hunger,Violence,Illness,7,8,8,7,7,8,8,7,0,6,8,8,7,8,6 +152,Brazil,F,47,63,Branca,-,Part-time,Assistant in Oral Health,Health,Money,The environment,Lack of water,Safety,0,0,8,0,6,0,0,8,8,0,0,0,0,0,0 +153,Brazil,F,25,41,Branca,Married,Full-time,University Professor,Unemployment,Illness,Loneliness,Injustice,Invalidity,0,0,8,0,8,8,8,8,8,8,8,0,8,0,0 +154,Brazil,M,41,57,branco,-,Part-time,agropecuaria,Health,Finance,Safety,Family,Climate,0,6,2,0,1,0,1,2,1,2,1,5,1,4,3 +155,Brazil,M,29,45,branco,Single,Full-time,micro-entrepreneur,Falling ill,Ending up alone,Being misunderstood,Losing loved ones,Being undervalued,0,8,8,6,0,8,8,4,0,8,8,0,0,0,0 +156,Brazil,F,5,21,Parda,Committed,Estudande,-,Fear of disappointing others.,Fear of failure.,Fear of being forgotten.,Fear of causing fights,Speaking in public,7,5,7,7,7,5,3,6,7,7,7,7,7,5,7 +157,Brazil,M,20,36,Branco,Married,Full-time,Government employee,Death,Money,Loneliness,Acceptance,The unknown,6,8,7,4,6,6,6,3,5,8,8,7,7,5,6 +158,Brazil,M,34,50,Negro,Committed,Full-time,Civil Servant,Losing my job,Becoming gravely ill,Loss of family,The amputation of a limb,Going blind,0,8,8,7,8,6,7,8,6,8,6,8,0,0,0 +159,Brazil,M,38,54,branco,Married,beneficiario do INSS,-,Death,Invalidity,Heights,Serious illnesses,Not being able to support (myself/others),8,8,8,8,7,8,8,8,7,8,8,8,8,8,3 +160,Brazil,M,16,32,negro,"Committed, Married",Full-time,distributor driver,Not winning,Not being successful,Poor health,Dissatisfaction,Not being able to take care of my family,4,8,8,8,8,7,3,6,5,4,8,8,5,8,5 +161,Brazil,M,45,61,italiana,Married,Full-time,company director,War,Armed assaults,The Brazilian government,Climate,Neglect of humanity,2,8,6,7,3,1,2,3,1,0,0,8,0,1,0 +162,Brazil,M,39,55,Branca,Married,Part-time,technical electronic,Health,Financial matters,Missing my wife,The death of my parents,The death of my siblings,5,0,6,5,6,6,0,6,0,0,6,6,0,0,0 +163,Brazil,M,12,28,pardo,Single,Full-time,official,Fear of dying too young,Fear of the future,Fear of ending up totally disabled,Fear of dieing alone.,Fear of death.,8,8,4,4,8,8,8,7,8,8,5,8,8,8,8 +164,Brazil,M,9,25,Branco,Single,Full-time,IT,Death,Public,Nervousness,Hunger,Pain,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8 +165,Brazil,M,8,24,Pardo,Married,"Unemployed, looking",-,Loss of family,Loss of a limb,Going without food,Death,Spider,7,8,8,8,8,8,6,6,7,4,8,8,4,8,8 +166,Brazil,M,18,34,Caucasiana,Married,Full-time,CIO,Lack of sex,Lack of money,Health problems,Family problems,Dissatisfactio with my work,2,5,6,6,8,4,2,7,5,0,2,2,1,0,1 +167,Brazil,M,28,44,Mestiço,Married,Part-time,Operations manager,Unemployment,Violence,Illness,War,Catastrophes,8,8,8,8,8,0,0,0,6,0,8,8,7,0,0 +168,Brazil,M,51,67,BRANCO,Married,Part-time,QUALIFIED WORKER,Prolonged illness,Lack of money,Loneliness,Being unappreciated,Death,8,7,8,8,8,7,8,2,7,2,8,7,7,6,8 +169,Brazil,M,34,50,BRANCA,Married,Part-time,ASSISTANT ADMINISTIVO,Safety,Lack of money,War,Lack of water,Lack of money,2,0,0,3,0,0,0,2,8,0,0,6,0,0,0 +170,Brazil,F,20,36,Branco,Married,Autonomo,"Speaker, training",The security/safety of my family,Automobile accidents,Domestic accidents,Financial situation,Assessment of people,4,2,7,8,2,8,8,8,6,0,0,2,8,0,0 +171,Brazil,M,30,46,branca,Married,"unemployed, looking",-,Heights,Unemployment,Money,Health,Age,1,5,7,6,6,6,8,7,6,3,8,6,5,0,0 +172,Brazil,M,18,34,parda,Married,Full-time,Government company,Heights,The dark(ness),Closed spaces,Scorpions,Planes,0,8,0,0,0,7,0,0,0,0,7,7,0,0,0 +173,Brazil,F,13,29,Parda,Committed,estudante,student,Being far from my kids,Death,Not having a job,Finishing school,Heights,4,7,8,8,7,7,6,3,4,4,5,8,6,6,5 +174,Brazil,M,18,34,hispânica,Married,Full-time,Board of Directors,Heights,Bats,Suffocating,Burning,Death,6,7,7,6,7,6,7,8,4,5,7,7,5,8,8 +175,Brazil,M,24,40,branca,Married,Full-time,teacher,Heights,Commitments,Snakes.,Spiders,Death,8,8,8,8,8,8,7,8,8,7,8,8,7,7,8 +176,Brazil,F,28,44,latina,Married,Full-time,beautifying automotive,Lack of money,Feeling useless,Old age,Car and motorcycle accidents,Fires,0,8,8,8,4,4,8,8,8,0,8,4,0,0,4 +177,Brazil,F,22,38,latian,Married,Part-time,merchant,Falling ill,Getting old,Not having money,Unemployment,Ending up alone,5,7,8,6,7,6,6,8,5,5,8,8,7,4,2 +178,Brazil,M,17,33,Branco/Caucasiano,Married,Full-time,Director of Technology,The death of those I love,Losing my job,The general situation in my country,Achieving a higher position at my company,Not being able to spend as much time with my children as I would like,8,8,8,8,4,8,6,8,8,4,7,8,4,8,7 +179,Brazil,M,18,34,pardo,Married,Full-time,micro-entrepreneur,Employment,Loneliness,Illness,An impasse,Shame,6,8,8,4,3,8,8,6,5,5,1,7,6,2,3 +180,Brazil,M,27,43,AFRO AMERICANO,Married,Full-time,Archival,Violence,Hunger,Unemployment,Illness,War,2,7,8,0,8,8,3,3,2,5,0,8,5,1,2 +181,Brazil,M,26,42,Branca,Married,Full-time,Sales Manager,Death,The security/safety of my family,Losing money,Injustice,Health,6,7,7,4,7,6,6,6,6,5,6,8,4,6,4 +182,Brazil,M,13,29,alema/indigena,Single,Full-time,math teacher,Failure,Loneliness,Being ambushed,Snakes.,Death,6,8,5,8,6,8,7,8,5,5,5,8,6,7,5 +183,Brazil,M,14,30,afro-descendente,Single,estudante,I do well in tests and study,Bees,The death of loved ones,Being useless,Horror films,My uncle Valério,2,2,7,7,4,4,0,5,0,1,8,7,5,3,8 +184,Brazil,M,30,46,latina,Single,Full-time,"autonomous, independent professional",Falshoods,Loneliness,Failure,The future,Illness,4,7,6,1,4,2,2,8,0,0,3,1,1,0,2 +185,Brazil,M,25,41,branco,Married,Full-time,administrator,Death,Not having money,Suffocating,Being kidnapped,Being abducted,7,8,8,7,8,7,8,7,6,3,6,7,7,7,7 +186,Brazil,F,20,36,branca,Single,Full-time,Assistant,Being burnt alive,Fear of roaches.,Losing a limb,Not having my mobility,A car accident,5,3,8,4,5,3,3,3,1,0,8,4,2,1,5 +187,Brazil,F,10,26,negro,Committed,Full-time,administrative assistant,Not having somewhere to live,Going without food,Loss of a loved one,Getting ill,Fear of the dark,4,6,3,8,4,4,6,6,6,5,5,4,3,3,5 +188,Brazil,F,8,24,Parda,Committed,Full-time,telemarketing,Death,Cockroaches,Loneliness,Not having money.,Pain,5,8,6,5,8,6,8,3,0,4,8,7,6,8,3 +189,Brazil,M,23,39,branca,Single,Full-time,banking,Death,Illness,Old age,Falling.,Loneliness,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6 +190,Brazil,M,13,29,Branco,Committed,Full-time,Director of Services,Lack of money,Lack of friends,Not having my own house soon,Failure of my company,Failing at my plans,1,8,6,6,1,6,3,8,3,7,1,6,8,1,4 +191,Brazil,F,6,22,latino,Single,"Unemployed, looking",trainee,Losing my faith,Being run over,Death by asphyxiation,Being burnt alive,Being in a coma,1,5,8,0,1,1,0,7,1,1,0,2,1,1,1 +192,Brazil,M,26,42,branca,Married,Full-time,systems analyst,Falling ill,Burning,Going without food,Suffocating,Going blind,6,8,8,8,6,8,7,6,6,7,8,6,4,7,5 +193,Brazil,M,10,26,Branco,Single,Full-time,Administrative Assistant,Death,Loneliness,Losing my mother,Not achieving my goals,Not succeeding in life,8,8,8,7,7,8,7,8,7,2,2,7,7,8,8 +194,Brazil,F,27,43,branca,Married,"Unemployed, looking",Unemployed,Assault,Accidents,Unemployment,Illness,Death,3,8,8,7,3,8,5,7,6,8,4,8,6,6,0 +195,Brazil,F,29,45,NEGRA,Married,AUTONOMA,PHYSICAL THERAPIST,Closed spaces,Catastrophes,Wars,Illness,Attack,0,8,8,8,8,3,8,8,8,0,8,8,5,0,1 +196,Brazil,F,12,28,pardo,Married,Full-time,consultant,Losing my job,Being alone,Falling ill,Freaking out,Death,7,7,8,8,8,8,8,8,8,8,8,8,8,7,8 +197,Brazil,M,14,30,Branco/ Caucasiano,Single,Full-time,IT Director,Not achieving my professional goals,Financial instability,Loss of family members,Physical violence,Illness,6,6,6,7,6,7,7,6,7,6,5,7,5,6,6 +198,Brazil,M,32,48,BRANCA,Married,Full-time,CIVIL SERVANT,Violence,Debt,Lack of money,Illness,Death,7,8,7,7,7,7,7,7,7,7,6,7,7,7,7 +199,Brazil,M,5,21,branco,Single,Part-time,programmer,Death,Loneliness,Unemployment,Dangerous animals,Crime,8,8,8,4,8,3,6,8,5,4,8,4,0,8,8 +200,Brazil,M,6,22,Branca,Single,Part-time,Ecommerce,Injections,Tests,Relationships,Needles.,Venomous animals,6,5,7,4,6,5,3,2,3,2,2,8,1,7,6 \ No newline at end of file diff --git a/data-raw/EVs_region/EVs_region-dataprep.R b/data-raw/EVs_region/EVs_region-dataprep.R new file mode 100644 index 00000000..afb3b5d2 --- /dev/null +++ b/data-raw/EVs_region/EVs_region-dataprep.R @@ -0,0 +1,18 @@ +# load packages ---------------------------------------------------------------- +library(tidyverse) +library(usethis) + +# load data -------------------------------------------------------------------- + +EVs_region <- data.frame( + region = c(rep("Urban", 1576), + rep("Suburban", 2797), + rep("Rural", 712)), + consideration = c(rep("Not too or not at all likely", 748), rep("Very or somewhat likely", 621), rep("Don't expect to buy a vehicle", 207), + rep("Not too or not at all likely", 1466), rep("Didn't take action", 978), rep("Don't expect to buy a vehicle", 353), + rep("Not too or not at all likely", 460), rep("Did't take action", 130), rep("Don't expect to buy a vehicle", 122)) +) + +# Save ------------------------------------------------------------------------- + +use_data(EVs_region, overwrite = TRUE) diff --git a/data-raw/county_2023/county_2023-dataprep.R b/data-raw/county_2023/county_2023-dataprep.R new file mode 100644 index 00000000..5d35e1e0 --- /dev/null +++ b/data-raw/county_2023/county_2023-dataprep.R @@ -0,0 +1,17 @@ +# load packages ---------------------------------------------------------------- + +library(tidyverse) +library(janitor) + +# load data -------------------------------------------------------------------- + +county_2023 <- read_csv(here::here("data-raw/county_2023/county_2023.csv")) + +# cleaning: clean names -------------------------------------------------------- + +county_2023 <- county_2023 |> + clean_names() |> + select(-x1) +# save ------------------------------------------------------------------------- + +usethis::use_data(county_2023, overwrite = TRUE) diff --git a/data-raw/county_2023/county_2023.csv b/data-raw/county_2023/county_2023.csv new file mode 100644 index 00000000..3f9ca1a2 --- /dev/null +++ b/data-raw/county_2023/county_2023.csv @@ -0,0 +1,3145 @@ +,GEOID,county state,name,state,individual income,POPULATION SIZE,white,african american,age,age under 5,age 85 plus,age 18 plus,age 65 plus,travel time,household size,family size,one unit structure,two unit structure,mobile and other,individual income 25 plus,hs grad,college grad,total households,spanish speaking,indo european language,api language,non euro api,limited english,poverty,poverty 18,poverty 65,household income mean,per capita income,household income median,veterans,unemployment 20 64,uninsured,uninsured 6,uninsured 19,uninsured 65,computers,smartphones,broadband +1,1001,"Autauga County, Alabama",Autauga County, Alabama,36446,59285,73.6,20,39.2,5.8,1.3,76.5,16,NA,2.61,3.16,8.9,14.5,74.9,47719,90.3,28.3,22523,2.4,1,0.8,0.1,0.5,10.7,12.9,6.2,93367,36227,69841,10.4,2.4,7.4,0.3,2.7,0.3,76.1,89.2,90.9 +2,1003,"Baldwin County, Alabama",Baldwin County, Alabama,36552,239945,82.8,8,43.7,5.2,2,78.7,21.4,NA,2.5,3.05,13,11.2,77.5,47748,91.7,32.8,94642,3.5,1.9,0.5,0.2,0.8,10.5,14.4,7.2,100105,40775,75019,11,3.1,8.2,2,4.9,1,78.2,90.4,89.8 +3,1005,"Barbour County, Alabama",Barbour County, Alabama,25891,24757,44,46.9,40.7,5.6,1.6,79.1,19.7,NA,2.39,2.99,15.5,25.5,67.5,34557,77.8,11.5,9080,6,1.1,0.6,0.3,2.5,NA,NA,NA,64745,25439,44290,7.2,5.6,10.8,2.9,4.7,0,58.7,84.1,72.3 +4,1007,"Bibb County, Alabama",Bibb County, Alabama,25758,22152,75.1,20.7,41.3,4.8,1,79.9,17,NA,2.74,3.36,7.9,29.9,77.2,34001,80.3,11.5,7571,2,0,0.3,0,0.7,NA,NA,NA,67735,26022,51215,6.7,10,8.3,1.5,1.5,0,61.3,83.6,81.2 +5,1009,"Blount County, Alabama",Blount County, Alabama,31174,59292,89.5,1.3,40.9,5.7,1.6,76.8,18.6,35.3,2.67,3.2,5.5,24.5,79.5,42663,82.7,15.6,21977,6.9,0.7,0.2,0.1,1.8,14.1,17.5,14.5,79203,30656,61096,6.4,5.6,10.2,3.4,2.2,0,68.4,87,83.9 +6,1011,"Bullock County, Alabama",Bullock County, Alabama,21312,10157,22.9,71.2,40.4,5.4,1.8,79.3,17.9,NA,2.64,3.45,18,45,63.5,31328,74,9,3453,6.7,0.7,0,0.3,1,NA,NA,NA,51121,21462,36723,4.7,3.1,12.9,1.5,1.3,0,59.3,73.4,65 +7,1013,"Butler County, Alabama",Butler County, Alabama,24998,18807,51.2,44.7,42.2,5.7,1.8,77.6,21.4,24.4,2.55,3.29,13.2,21,68.4,36420,87.6,13.8,7262,2.1,1.1,0.2,0,0.5,NA,NA,NA,69162,28306,44881,6.5,6.9,12.3,0,6.2,0.6,58.3,80.3,79.8 +8,1015,"Calhoun County, Alabama",Calhoun County, Alabama,29222,116141,71,22,39,5.6,1.5,78.6,18,NA,2.48,3.16,12.4,14.1,70.4,39654,86.1,20.5,45125,2.9,1,0.7,0.1,1,17.5,22.9,11,71879,29571,55826,8.3,5.8,11.1,2.2,3.4,0.4,68,87.6,85.3 +9,1017,"Chambers County, Alabama",Chambers County, Alabama,27775,34450,55.4,39.8,41.5,5.8,1.9,79.3,20,NA,2.52,3.13,12.9,14.8,71,38845,83.6,14.6,13419,2.6,0.9,1.1,0.2,1.1,15.5,21,12.1,65673,27868,49295,7.3,4.6,12.2,5.2,4.6,0.9,59.2,84.4,78.8 +10,1019,"Cherokee County, Alabama",Cherokee County, Alabama,30356,25224,91.3,3.8,47.4,4.7,1.9,81.2,23.8,NA,2.38,2.98,4.3,23.5,79.5,42186,83.9,15.9,10477,2.5,0.7,0.4,0,1.4,NA,NA,NA,71062,31360,50769,7,3,9,0.8,1.4,0.6,60.9,82.6,80.2 +11,1021,"Chilton County, Alabama",Chilton County, Alabama,31816,45500,80.9,9.2,39.5,6.1,1.9,75.9,16.9,30.7,2.57,3.11,4.1,29.3,76.8,44884,84.2,15.2,17554,7,0.5,0.3,0,3.4,13.6,16.3,12.6,75680,30032,61873,5.4,4.5,10.1,0,2.4,0.2,62.7,84.5,82.1 +12,1023,"Choctaw County, Alabama",Choctaw County, Alabama,24814,12525,56.7,38.2,47,5.4,2.7,80.1,23.8,36.3,2.39,3.16,2.8,30.8,82.2,40933,84.2,13.9,5174,2.3,0.4,0,0,0,NA,NA,NA,63315,26781,44483,5.6,4.4,8.2,1.5,3.5,0.2,52.3,78.1,71.7 +13,1025,"Clarke County, Alabama",Clarke County, Alabama,27802,22802,51.5,45.4,42.5,5.9,2.7,78.3,20.6,NA,2.65,3.49,8.2,25.3,70.9,40403,85.3,15.4,8452,1.6,0.4,0.6,0.1,0.1,NA,NA,NA,73965,31101,49167,7.1,11.1,8.2,0.9,1.1,0.5,57.4,76.9,71 +14,1027,"Clay County, Alabama",Clay County, Alabama,28566,14188,80.5,13,43.8,5.2,1.8,79.3,20.5,NA,2.42,2.85,9.1,22.8,77.7,43519,82.8,15.2,5765,1.8,0.4,0.1,0.2,0.3,NA,NA,NA,71247,29268,51852,6.1,3.3,8.4,0,0,0,55.7,81.2,77.8 +15,1029,"Cleburne County, Alabama",Cleburne County, Alabama,32540,15254,92.8,3.9,42.3,5.9,2.4,78.2,20.4,NA,2.58,3.26,4.1,26.7,80,44974,85.4,18.2,5849,1.1,0.6,0,0,0.1,NA,NA,NA,73100,29569,53319,7.6,1.4,9.3,1.3,1.4,2.5,56.5,86.6,75.2 +16,1031,"Coffee County, Alabama",Coffee County, Alabama,31845,54231,71.5,16.6,38.8,6.2,1.5,75.9,17.1,NA,2.56,3.18,11.9,10.9,69.2,42585,86,21.5,20860,6.8,1.9,1.2,0.5,1.7,17.6,25.1,11,81266,32757,64672,16,4.2,10.5,5.1,4.7,0.8,70.8,87.4,86.9 +17,1033,"Colbert County, Alabama",Colbert County, Alabama,33697,57648,78,15.8,42.3,5.6,1.9,78.6,20.1,NA,2.36,2.96,14.3,7.4,70.8,43548,87.5,20.3,24217,2,0.5,0.1,0.1,0.9,16.9,26.9,11.7,74264,32685,56736,7.4,3.1,7.4,0.9,2.8,0.1,62.2,84,78.9 +18,1035,"Conecuh County, Alabama",Conecuh County, Alabama,25273,11411,50.2,45.8,46.3,5.3,2,79.8,24.3,29.7,2.5,3.31,7.5,29.8,74.9,42188,87.5,13.1,4528,0.9,0.2,0.5,0,0.5,NA,NA,NA,61553,26323,42266,5.7,8,8.2,2,3.4,0,47.9,70.9,68.1 +19,1037,"Coosa County, Alabama",Coosa County, Alabama,25912,10323,64.6,29.7,50.3,4.8,2.4,83.1,24.8,NA,2.38,3,5.7,32.8,81.3,32224,82.8,14.9,4201,2.3,0.3,0,1.1,0,NA,NA,NA,69698,29035,57063,8.3,4.9,7.4,4,6.1,0,62.7,82.3,80.4 +20,1039,"Covington County, Alabama",Covington County, Alabama,28956,37647,83.2,11.7,42.8,5.8,3.1,77.9,21.9,NA,2.55,3.19,8.1,17.9,75.7,38791,86.2,17.2,14495,1.5,0.3,0.5,0,0.1,18,24.4,16.7,73109,30151,50886,9.2,4.3,10.3,8.9,6,0.4,65.5,79.2,78.9 +21,1041,"Crenshaw County, Alabama",Crenshaw County, Alabama,27912,13144,70.6,23.4,42.4,5.4,2.1,77.1,19.9,NA,2.55,3.31,9.4,24.4,74.2,40352,82.6,16.8,5075,2.4,0.6,1,0.2,1.6,NA,NA,NA,70635,30321,49040,4.6,4,9.2,13.4,7.4,1.1,54.8,73.4,68 +22,1043,"Cullman County, Alabama",Cullman County, Alabama,31232,89463,91,1.1,41.1,5.8,1.7,77.5,18.9,27.1,2.56,3.06,9.5,19.3,76.4,39804,85,19.1,34543,3,0.4,0.5,0.1,0.7,13.9,18.5,10.8,78002,30977,60916,6.8,3.6,10.7,3,3.6,0.5,66.8,86,85.7 +23,1045,"Dale County, Alabama",Dale County, Alabama,29847,49516,68.6,21.2,38,6.7,1.5,76.7,18,22.3,2.46,3.14,11.8,17.5,61.3,39308,85.7,19.3,19769,4.3,1.7,1,0.1,1.4,18.7,29.6,12.2,69759,29344,53955,14.6,6.5,10.9,2.1,2.4,0,65.1,87.2,84.5 +24,1047,"Dallas County, Alabama",Dallas County, Alabama,23484,37536,27.2,70.5,40.3,5.9,2,76.2,19.8,NA,2.4,3.34,19.2,17.6,61,31940,87.1,17,15416,0.6,0.5,0.2,0.6,0.3,29,46.2,18.5,55600,24368,36810,6.2,11.1,9.3,0.9,1.9,0.3,51.2,79.4,79.3 +25,1049,"DeKalb County, Alabama",DeKalb County, Alabama,27493,71946,81.3,1.3,39.6,5.9,1.6,75.8,17.4,NA,2.74,3.3,6,21.2,76.8,36368,78.9,13.9,25946,10,0.8,0.4,0.2,2.8,20.4,30.3,12.7,65789,25274,51149,6.1,4.2,15,5.1,3.8,1.3,63.7,84.9,85.3 +26,1051,"Elmore County, Alabama",Elmore County, Alabama,37307,88669,73.3,21.1,38.9,5.4,1.1,78.3,16.1,27.5,2.59,3.07,8,15.7,76.9,48925,89.6,24.4,32529,1.9,0.8,0.4,0.2,0.7,10.3,14.8,7.1,96359,36616,75553,9.2,3.5,7.7,1.9,3.2,0,75.6,90,90.1 +27,1053,"Escambia County, Alabama",Escambia County, Alabama,25923,36695,61,30.7,40.5,5.8,2.1,77.2,18.8,22.2,2.67,3.49,10.6,19.2,68.7,35881,82.5,12.5,12781,1.6,0.2,0.3,0.1,1,21.2,25.7,15,60177,22916,44447,7.7,7.9,11.3,0.3,6,0.1,56.1,78.7,75.4 +28,1055,"Etowah County, Alabama",Etowah County, Alabama,28692,103208,77.3,15,41.8,5.8,1.6,78.2,19.5,NA,2.6,3.26,11.1,9.7,73.8,38850,85.8,17.5,39160,3.4,0.7,0.5,0.2,0.7,17.1,23.6,12.2,73124,29553,53070,6.6,6.2,12.2,3.8,4.8,1.3,65.6,85.9,85 +29,1057,"Fayette County, Alabama",Fayette County, Alabama,25266,16173,84.5,12.3,42.8,4.9,1.8,78.7,21.6,NA,2.62,3.33,9.6,22,78.2,39251,85.2,15.6,6051,0.6,0,0.2,0.3,0,NA,NA,NA,69566,27734,50733,6.4,9.6,7.9,0,1.2,0,56.1,80.2,77.8 +30,1059,"Franklin County, Alabama",Franklin County, Alabama,29120,31978,75.7,4,38.6,6.8,2.2,74.9,17.2,NA,2.73,3.46,10,12.9,71.8,36894,79.5,14.9,11593,13,0.1,0.1,0.1,4.4,17.4,26.8,8.3,67215,26036,51493,4.9,2.7,11.8,2.5,9,1.4,50.1,77.5,66.3 +31,1061,"Geneva County, Alabama",Geneva County, Alabama,27179,26726,84.3,8.6,44,5.4,2.3,77.9,20.4,26.6,2.51,3.07,4,25.6,78.3,39606,83.2,13.3,10550,2.4,0.2,1.1,0,0.9,NA,NA,NA,66098,26880,50951,10.3,4.7,12.8,5.3,2.8,0.6,63,83.4,76.6 +32,1063,"Greene County, Alabama",Greene County, Alabama,21145,7589,17.9,81.5,44.4,4,2.7,78.6,24,NA,2.46,3.49,10.6,37,69.7,30331,82,12.5,3037,0.7,0,0,0.3,0.7,NA,NA,NA,48047,20372,31495,6.6,2.7,13.8,0.4,10.1,0,41.9,69.9,60.4 +33,1065,"Hale County, Alabama",Hale County, Alabama,24555,14749,38.4,55.8,41,6.6,2.7,76.2,19.9,NA,2.62,3.75,7.2,40,77,40457,81.9,16.8,5541,1.2,0.1,0.1,0,0,NA,NA,NA,61740,26024,41325,7,6.4,6.3,0.5,3.2,2.7,48.7,79.1,76 +34,1067,"Henry County, Alabama",Henry County, Alabama,29853,17450,71,25.2,45,4.9,2.1,79.5,23.3,NA,2.57,3.24,4.3,20.6,80.9,40127,82.2,21.7,6684,1.5,0.5,0.5,0,0.2,NA,NA,NA,78795,31809,60135,9.2,3.4,8,1.7,4.7,0.5,56.9,81.5,80 +35,1069,"Houston County, Alabama",Houston County, Alabama,31675,107628,65.5,27.2,40.3,6.2,1.9,76.9,18.4,NA,2.5,3.14,14.7,11,63.9,41532,87.4,22.8,42581,3.2,0.9,1,0.3,0.7,18,27.1,10.8,80048,33053,57531,9.8,4.4,11.7,1.9,3.1,0.8,67.8,88.5,85.3 +36,1071,"Jackson County, Alabama",Jackson County, Alabama,28806,52839,89,3,43.4,5.2,1.5,79.2,20.8,NA,2.46,3.06,6.5,21.9,75,38280,82.1,15.6,21186,2.8,0.3,0.3,0,0.7,16.8,23.6,10.6,67768,28452,49454,6.8,5.3,10.5,3.8,2.8,0,62.1,84.5,86.9 +37,1073,"Jefferson County, Alabama",Jefferson County, Alabama,35600,669744,49.3,42.5,37.8,6.2,1.9,77,16.5,NA,2.41,3.12,24.3,2.9,63.7,48225,91,35.9,268911,3.9,1.7,1.2,0.7,1.7,16.3,22.8,12.7,97165,39826,64589,6.4,4.6,9.2,3.1,4,0.7,74.6,89.7,88.5 +38,1075,"Lamar County, Alabama",Lamar County, Alabama,24510,13809,86.6,9.3,44.5,6.7,1.8,77.7,22.2,25.1,2.74,3.39,11.1,21.4,74,37543,83.9,11.6,4987,0.7,0.7,0,0,0,NA,NA,NA,60489,24169,47447,6.9,6.8,9,0,0,0.1,61,76.3,72.4 +39,1077,"Lauderdale County, Alabama",Lauderdale County, Alabama,31515,95037,83.5,9.7,40.7,5,1.9,80.5,20.2,NA,2.38,2.98,18.8,7.5,67.8,43258,89.3,27.1,38777,2.2,1,0.8,0.1,0.9,13.6,18.1,8.2,78675,33595,59082,7.2,3.7,9.8,6.2,5,0.1,68,84.7,81.7 +40,1079,"Lawrence County, Alabama",Lawrence County, Alabama,31736,33182,76.1,9.9,42.8,5.4,1.9,78.2,18.8,NA,2.51,3.08,5.2,27.2,81.4,42154,84.6,15.6,13145,1.9,0.1,0.8,0,0.5,13.7,16.8,12.7,76640,31189,60040,8.2,1.9,9.2,1.1,2,0,58.1,78.2,74.4 +41,1081,"Lee County, Alabama",Lee County, Alabama,32893,177663,67.7,22.3,33.6,5.5,1.3,78.9,12.9,NA,2.51,3.19,20.9,15.5,65.7,47343,91.4,41.3,67944,4.3,2.1,3.6,0.4,2.5,18.9,16.2,9.9,86713,34504,61123,7.3,3.4,8.7,3.4,2.9,0.3,80.2,91.5,86.9 +42,1083,"Limestone County, Alabama",Limestone County, Alabama,40391,107577,75.3,12.8,40.5,5.5,1.2,77.7,15.4,NA,2.61,3.09,8.8,10.1,77.5,55264,87.6,30.4,40021,4.4,1.5,1.5,0.1,1.8,10.1,13.1,12.3,105108,39587,83534,8.5,3.2,8.1,1.4,2.9,0.2,77.9,89.5,89.2 +43,1085,"Lowndes County, Alabama",Lowndes County, Alabama,24124,10008,24.5,74.5,42.7,5.7,2.1,78,20.1,NA,2.37,3.12,10.2,38.6,77.3,37059,83.2,13.9,4161,0.9,0,0.2,0,0,NA,NA,NA,58417,24965,35160,6.8,6.8,8.5,3.4,2.1,3.5,55.3,77.7,64.6 +44,1087,"Macon County, Alabama",Macon County, Alabama,21180,18951,17.1,78.3,37.8,4.9,2.1,84.5,20.7,NA,2.29,3.02,16.4,20.6,64.8,35286,84.2,20.7,7151,1.7,0.7,0.1,0,0.2,NA,NA,NA,61698,24595,45951,7.4,10.3,9.1,1.3,4.7,0.6,55.5,79.7,75.9 +45,1089,"Madison County, Alabama",Madison County, Alabama,42642,397135,64.2,24.3,38.2,5.7,1.6,78.3,15.5,21.9,2.37,3,21.1,3.8,68.8,54786,92.6,45.7,162469,4.5,2.1,2,0.5,1.6,10.5,13.1,8.2,111962,46784,83528,11.1,3.6,7.7,1.6,2.8,0.4,84.6,91.5,91.3 +46,1091,"Marengo County, Alabama",Marengo County, Alabama,26673,19027,45,51.3,41.1,6.3,2.7,77.5,20.2,NA,2.47,3.3,14.6,27.5,69,41528,85.6,20.4,7615,1.9,0.9,0.2,0.1,1.6,NA,NA,NA,67077,27957,44205,9.7,2.1,8.6,0,1.7,0,55.2,80.4,76.5 +47,1093,"Marion County, Alabama",Marion County, Alabama,24853,29190,91.4,3.6,43.8,5.3,2.3,78.8,21.1,NA,2.62,3.38,13.2,18.7,75.2,37333,82.1,12.8,10874,1.5,0.3,0.7,0,0.2,NA,NA,NA,66253,26555,50714,6.7,6.2,10.2,0.3,1.7,0,55.3,80.4,76.6 +48,1095,"Marshall County, Alabama",Marshall County, Alabama,31869,98712,82.1,2.6,38.6,7.3,1.5,74.1,17,25.5,2.71,3.26,9,12.4,75.5,41738,84.4,21.3,35963,10.3,0.9,0.3,0.1,2.3,16.3,23.5,10.8,82099,31025,60946,7.5,3.3,11.5,3.8,4.1,0.6,69.3,88,89.4 +49,1097,"Mobile County, Alabama",Mobile County, Alabama,32499,413162,56.1,36,38.4,6.4,1.6,76.6,17,NA,2.53,3.25,17.5,7,64.9,43651,89,25.2,160507,2.3,1.2,1.5,0.4,1,16.3,23.6,11.2,79051,32032,58119,8,5.2,10.9,1.8,3,0.6,69.3,89.2,83.9 +50,1099,"Monroe County, Alabama",Monroe County, Alabama,26666,19580,53.7,42.2,43.9,3.5,1.1,78.8,21.2,24.2,2.61,3.47,9.7,18.6,70.2,37694,83.6,11.4,7396,0.1,0.5,0.2,0.6,0,NA,NA,NA,57308,23470,40225,5.4,12.6,11.2,0,2.9,0,47.7,72.5,68.8 +51,1101,"Montgomery County, Alabama",Montgomery County, Alabama,32861,227197,31.8,58.8,36.9,6.8,1.8,75.9,15.8,21.4,2.41,3.13,21.1,3.5,57.7,42372,88.8,34.3,90785,2.6,1.1,2.5,0.4,1.7,19.3,28.6,12.4,80704,33404,58153,8.9,6.1,10.6,3.7,3.6,0.9,71.3,89.3,89 +52,1103,"Morgan County, Alabama",Morgan County, Alabama,34517,123742,75.4,13.1,40.3,6.1,2,76.7,17.9,24,2.49,3.08,13.8,9.6,72.5,44956,85.1,23.2,48752,7,1,0.4,0.3,1.7,13.6,17.1,11.4,86044,34510,64858,7.9,3.9,11.2,3.4,4.4,0.4,69.9,85.4,83.2 +53,1105,"Perry County, Alabama",Perry County, Alabama,18398,8231,28,71,42.5,6.3,2.9,78.7,21,NA,2.3,2.89,17.8,32.8,69.3,26765,82.2,16.8,3195,0,0,0,0.8,0,NA,NA,NA,42730,16960,34368,4.3,10.3,7.5,0,0.4,0,45.6,75.8,71.5 +54,1107,"Pickens County, Alabama",Pickens County, Alabama,26637,18843,58.2,39.3,42.5,5,2.3,80.7,19.5,34,2.47,3.18,10.2,23.5,75.4,40218,83.9,13.7,6946,2.2,0.4,0,0,0,NA,NA,NA,66646,26328,47014,6.7,5.3,8.9,0.1,3.2,0,51.4,80.8,75.5 +55,1109,"Pike County, Alabama",Pike County, Alabama,27374,32953,56.1,37.4,31.7,5,1.8,80.9,15.4,20.2,2.42,3.15,15.2,22.4,62.9,37240,87.6,27.3,12605,2.4,1.1,1.8,0,0.8,23.4,32.8,12.7,69002,27762,47961,6.9,3.1,8.2,1.8,4.3,0.3,63.1,87.2,80.5 +56,1111,"Randolph County, Alabama",Randolph County, Alabama,30152,22310,75.6,16.5,44,5,1.7,79,20.7,NA,2.38,2.97,4.3,24.2,78.7,42666,83.6,20.5,9127,2.3,0.6,0.3,0.3,0.7,NA,NA,NA,70749,29488,51551,5.7,2.6,9,7.2,3.3,0.4,62,83.8,80.7 +57,1113,"Russell County, Alabama",Russell County, Alabama,28761,58858,46.6,45.5,37.2,6.7,1.3,75.7,15.2,25.7,2.45,3.16,18.7,13,60.6,38629,85.8,16.9,23784,4.6,1.3,0.9,0.2,1.1,22.2,33,18.6,65547,27383,50046,13.3,6.8,11.5,5.6,3.6,1.6,60.1,84.6,77.5 +58,1115,"St. Clair County, Alabama",St. Clair County, Alabama,37446,92903,84.3,9.9,41,5.5,1.2,77.6,17.5,31.2,2.64,3.1,4.6,20.3,82.5,49522,87.6,19.9,34477,2.5,0.6,0.4,0.2,0.6,11.2,15.1,9.7,92258,34937,78993,6.6,3.9,7.3,1.1,2.4,0.2,78.8,91,90.3 +59,1117,"Shelby County, Alabama",Shelby County, Alabama,46566,226955,76.5,13.2,40,5.4,1.4,77,16.4,29.7,2.61,3.12,10.2,7,81.3,58609,94,46.2,85414,5.6,1.3,1.8,0.6,1.3,6.9,7.8,8.1,123911,47914,93543,6.3,2.6,6.7,4.4,3.3,0.2,85.4,93.1,93.6 +60,1119,"Sumter County, Alabama",Sumter County, Alabama,19795,12020,25.9,71.2,34.9,5.5,1.7,80.8,19.2,23.6,2.1,2.56,6.7,35.9,69.6,27435,88,19,4765,1.1,0,0.4,0.7,0.1,NA,NA,NA,50405,19854,37981,3,7.9,9.2,5.5,3.8,0,61.3,80.7,76.6 +61,1121,"Talladega County, Alabama",Talladega County, Alabama,29708,81170,62.7,31.7,42.2,5.4,1.4,79.2,18.9,27.5,2.36,2.84,9.7,25.4,72.6,40660,84.5,16.8,32889,2.7,0.8,0.3,0.2,0.2,17.7,25.8,11.8,72746,29774,56249,6.9,7.5,8.4,3.4,3.8,0.2,61.9,85.8,86.1 +62,1123,"Tallapoosa County, Alabama",Tallapoosa County, Alabama,29523,41070,68.7,23.4,45.4,5.2,1.9,79.6,22.7,26.1,2.43,3.02,9.8,17.1,75.6,40852,83.8,18.7,16548,2.3,1,0.6,0,0.5,15.2,21,11.2,75764,31718,57185,7.8,7.6,8.9,0.7,2.2,0.1,66.9,84,82 +63,1125,"Tuscaloosa County, Alabama",Tuscaloosa County, Alabama,33079,234036,60.9,32,33,5.5,1.2,79.3,13.7,NA,2.52,3.17,24.5,9.3,62.2,46805,90.9,31.4,87289,3.6,1.8,1.1,0.4,1.1,16.7,20.8,11.5,85068,33674,63947,6.2,4.3,6.7,1.2,2.1,0.2,74.4,90,87.5 +64,1127,"Walker County, Alabama",Walker County, Alabama,29524,64886,87.9,6.1,41.3,5.7,1.9,77.3,19.6,NA,2.57,3.16,8.2,26.4,77.5,44332,82.9,16,24843,2.8,0.2,0.3,0,0.7,18,26.8,12.4,69909,28706,54509,5.8,3.6,11.6,7.6,8.6,0.2,61.7,85.1,81.7 +65,1129,"Washington County, Alabama",Washington County, Alabama,34501,15270,66.9,22.7,44.1,5.5,1.5,79.3,20.4,NA,2.67,3.11,2.1,24.6,85.9,51568,88.7,16.2,5678,0.2,0.8,0.1,2.4,0.1,NA,NA,NA,80526,31555,60503,6.1,6.5,7.7,0.9,1,0,59.2,78.8,79.4 +66,1131,"Wilcox County, Alabama",Wilcox County, Alabama,21692,10347,27.6,70.7,42,6.1,2.4,77.5,21.4,NA,2.75,3.74,4.8,34.4,77.9,36031,77.9,12.3,3693,0.8,0.2,0,0,0,NA,NA,NA,56527,23366,42236,5.4,12.6,9.1,0.4,0.1,0.1,51.1,73.5,73 +67,1133,"Winston County, Alabama",Winston County, Alabama,25015,23637,92.8,1.2,45.3,5.2,1.9,79.6,21.9,27.5,2.49,2.96,6.6,29.7,76.6,38061,78.8,13.4,9328,2.1,0.3,0.3,0,0.8,NA,NA,NA,66939,27258,48032,5.7,4.3,9.4,4.4,2.9,0.2,57.2,82.4,77.8 +68,2013,"Aleutians East Borough, Alaska",Aleutians East Borough, Alaska,37603,3423,16.6,6,41.8,3.1,1,88,11.5,NA,2.24,2.86,24.9,7.4,57,42353,83.9,18.1,998,4.6,0,11.5,2.5,6.9,NA,NA,NA,86888,46293,72692,4.2,3.8,35,35.2,29.9,0.8,62.5,87.4,58 +69,2016,"Aleutians West Census Area, Alaska",Aleutians West Census Area, Alaska,47613,5178,24.6,5.3,39.1,2.3,0.1,86.8,6.4,NA,3.6,4.65,67.7,2,29.5,52198,90.5,17.5,977,6.7,0.5,48.7,3.9,4.2,NA,NA,NA,122928,52596,107344,5.4,3.8,18.1,12,8.6,11.6,67.6,89.9,77.5 +70,2020,"Anchorage Municipality, Alaska",Anchorage Municipality, Alaska,47000,289069,58.3,5.3,34.9,6.5,0.9,76.2,12.4,NA,2.61,3.26,32.9,3.7,63.7,59426,94,37.7,107868,6.2,3.3,9.2,2.4,3,9.3,11.3,7.8,127598,49338,98152,11.4,4.3,10,7.6,7.4,1.1,85.2,94.5,94.3 +71,2050,"Bethel Census Area, Alaska",Bethel Census Area, Alaska,20327,18487,8.7,1.2,28.7,10.6,0.7,65.2,8,NA,3.75,4.4,16.4,2.6,60.5,35164,81.9,10.4,4661,1,3.4,2.5,68.7,3.5,NA,NA,NA,90872,24976,70616,6,13.6,12.9,4.7,5.5,2.4,52.7,92,80.6 +72,2060,"Bristol Bay Borough, Alaska",Bristol Bay Borough, Alaska,51016,878,48.2,0.6,39.3,7.3,0.8,83.4,13.8,NA,2.45,3,16.6,3.9,51.9,58942,95,25.1,283,2.1,2.1,2.5,8.1,2.5,NA,NA,NA,126030,59725,100625,7,4.5,19.5,1.4,4.7,1.7,75.3,90.5,80.6 +73,2063,"Chugach Census Area, Alaska",Chugach Census Area, Alaska,46691,6964,72.6,1.4,38.4,6.6,1,78.1,13.1,9.9,2.48,3.05,23,16.8,62.7,55585,95.7,29.6,2679,4.6,5.3,7,1,1,NA,NA,NA,109799,45898,88565,10.4,8.9,14,15.7,8.9,0,88.4,94.1,94.1 +74,2066,"Copper River Census Area, Alaska",Copper River Census Area, Alaska,39844,2626,53.4,0.1,45.5,6.9,0.9,73.9,22,24.7,2.27,3.05,10.9,8.4,67.7,58973,91,28.4,1146,0.3,0,0,3.6,0,NA,NA,NA,90710,38788,75053,14.5,6.7,16.8,10.5,14.7,0,73.8,76.2,81.2 +75,2068,"Denali Borough, Alaska",Denali Borough, Alaska,55924,2029,78.3,1,44.1,3.9,0.6,86.8,13.6,NA,2.26,3.17,6.8,5.8,78.2,65781,93.4,23.6,533,2.3,2.6,3.6,0,0,NA,NA,NA,103321,73423,88935,10.2,0.8,5.1,2.1,1.8,1.8,86.1,89.5,81.8 +76,2070,"Dillingham Census Area, Alaska",Dillingham Census Area, Alaska,28750,4780,15.3,0.6,30.9,8.7,0.8,69.1,12.4,NA,3.18,3.66,18.9,0.9,63.1,47092,87.4,19.4,1383,1.7,0.8,2,52.6,2,NA,NA,NA,91943,34097,74250,3,11.4,16.8,7,10.2,4.8,55.9,93.6,80.1 +77,2090,"Fairbanks North Star Borough, Alaska",Fairbanks North Star Borough, Alaska,44698,95555,70.4,3.8,32.4,7.1,0.7,76.1,12.2,19.9,2.53,3.17,27.3,2.3,61.7,57748,94.9,33.7,36176,4.9,4.2,3.9,2.7,1.7,6.2,4.6,5.9,110923,44666,84722,14.1,5,9,4,5.9,0.5,84.5,93.4,90.6 +78,2100,"Haines Borough, Alaska",Haines Borough, Alaska,37784,2077,79.2,0.2,52.4,2.9,1.2,78,26.8,15.4,2.24,2.94,11.9,8.9,76.4,42859,98.4,36.9,899,0.6,1.8,1,1.2,0,NA,NA,NA,83299,38529,72607,12.6,5.2,8.6,0,1.1,0,82.1,85.2,81.2 +79,2105,"Hoonah-Angoon Census Area, Alaska",Hoonah-Angoon Census Area, Alaska,27519,2313,51.1,0.9,51.4,3.6,1.7,84.8,27.4,NA,2.33,3.15,9.7,4.3,72.2,32900,93.5,23.3,922,3.8,2.8,2.4,10.5,0.9,NA,NA,NA,83266,38180,62500,11.3,15.8,20.8,24.2,17.3,4.1,61.8,78.7,65.4 +80,2110,"Juneau City and Borough, Alaska",Juneau City and Borough, Alaska,50438,31969,63.5,0.7,39.8,5,0.4,79.7,15.1,15.8,2.38,3.05,29.8,7.7,64.4,57405,94.7,40.5,13138,4.4,0.8,6.3,2,3,NA,NA,NA,122575,51146,100513,6.9,3.6,8,2.3,6.2,0,86.4,93.7,93.3 +81,2122,"Kenai Peninsula Borough, Alaska",Kenai Peninsula Borough, Alaska,39591,59843,79.1,0.6,41.5,5.7,1.6,77.8,19.3,NA,2.43,3.15,13.1,3.2,76.8,51687,94.3,29.4,23902,2.5,3.1,1.9,1.8,0.7,11.6,14,9.8,102341,42899,77722,10.4,5.7,11.7,10.1,9,0.4,79.2,89,86.9 +82,2130,"Ketchikan Gateway Borough, Alaska",Ketchikan Gateway Borough, Alaska,43569,13870,63.5,0.4,40.8,4.7,1.1,79.2,17.3,NA,2.41,2.96,33.3,3.2,67.3,55306,94.9,27,5621,3.6,1.2,6.6,1.5,1.6,NA,NA,NA,112238,46608,89155,8.8,3.5,9.5,9.3,8.3,1.4,81,89.4,90.1 +83,2150,"Kodiak Island Borough, Alaska",Kodiak Island Borough, Alaska,39478,12878,50.9,0.6,35.4,5.6,1.4,76.1,12.6,NA,2.69,3.25,23.3,4.9,60.7,40846,92.5,28.6,4608,4.8,4.3,16.9,1.9,6.8,NA,NA,NA,102245,40615,83716,11.4,5.2,10.2,4.1,5.4,6.8,82.5,94,91.8 +84,2158,"Kusilvak Census Area, Alaska",Kusilvak Census Area, Alaska,16189,8277,3.2,0.9,23.6,13,0.2,58.2,6.4,NA,4.23,4.5,6.3,0.8,69.4,30915,81,5.8,1891,0.3,0.1,0.7,48.2,1,NA,NA,NA,63070,16657,48233,4.6,16.7,11.2,6.4,6.7,1.1,41.6,88.6,80.6 +85,2164,"Lake and Peninsula Borough, Alaska",Lake and Peninsula Borough, Alaska,35156,1007,16.4,2.3,33.4,7.1,0.9,72.7,10,12.3,2.6,3.02,5.9,0,60.6,46806,91.1,18.4,322,0.3,1.2,0,18.3,0.9,NA,NA,NA,74678,45228,64000,4.3,10.2,31.4,27.4,19.7,3,61.8,87.6,74.2 +86,2170,"Matanuska-Susitna Borough, Alaska",Matanuska-Susitna Borough, Alaska,40319,110677,78.3,1.3,36.6,6.4,0.9,74.1,13.3,34.8,2.73,3.21,14.3,2.5,76.6,57825,94.3,24.3,39682,3,3.1,2.2,1.1,0.7,10.3,12.6,8.1,111363,40945,90625,13.7,5.8,12.2,9.1,10.2,1.2,83.1,92.7,92.1 +87,2180,"Nome Census Area, Alaska",Nome Census Area, Alaska,25647,9925,14.1,1,29.4,8.6,0.5,66.1,8.4,NA,3.35,3.87,16.5,0.8,63.4,49517,88.6,17.5,2786,1.4,2.1,3.4,36.3,1.2,NA,NA,NA,98246,30047,76643,5.5,15.7,15,8.7,8.9,3.6,59.4,93.1,83.5 +88,2185,"North Slope Borough, Alaska",North Slope Borough, Alaska,61241,10891,31.6,2.6,35.2,5.8,0.3,75.1,7.9,13.6,3.31,3.77,23.4,0.4,49.5,76090,90.2,14.9,2205,4.1,1.4,9.1,51,6.8,NA,NA,NA,110508,60295,86313,4.4,6.7,14.3,5.7,15.3,1,53.3,88.5,70.7 +89,2188,"Northwest Arctic Borough, Alaska",Northwest Arctic Borough, Alaska,24181,7611,10.4,0.6,28.3,10.4,0.7,62.4,8.4,NA,3.91,4.45,21.6,1.4,60.5,46250,85.9,12.4,1817,1,0.4,1.7,41.3,0.3,NA,NA,NA,100502,28467,81298,5.4,16.2,18.8,18.9,16.1,3.5,58.9,93.6,88.3 +90,2195,"Petersburg Borough, Alaska",Petersburg Borough, Alaska,34478,3394,61.7,1.5,45.7,4.5,1.3,80.8,22,NA,2.42,2.96,14.6,10.9,71,39788,90.6,27.5,1319,4.7,3.6,13,0.7,3.6,NA,NA,NA,98129,42380,77026,6.5,4.1,10.9,9.9,6.6,0.8,78.3,87.8,86.7 +91,2198,"Prince of Wales-Hyder Census Area, Alaska",Prince of Wales-Hyder Census Area, Alaska,30546,5730,44.5,0.4,43.7,5.2,1.1,78.6,20.3,NA,2.38,3.01,11.8,22.3,71.6,39659,92.5,17,2348,1.7,1.1,1.5,3.7,0,NA,NA,NA,80149,35162,59079,8.7,8.5,18.2,10.5,14.6,1.7,62.6,81.6,77.5 +92,2220,"Sitka City and Borough, Alaska",Sitka City and Borough, Alaska,46690,8393,61.5,0.4,39.6,4.6,2.1,80.4,17.3,12.3,2.3,2.79,33.1,7.7,61.7,51176,95.6,34.4,3503,4.7,1.9,4.3,1.9,1.4,NA,NA,NA,107564,45532,101207,7.9,6.1,11.6,18.5,9.4,0.9,83.9,89.9,89.7 +93,2230,"Skagway Municipality, Alaska",Skagway Municipality, Alaska,42228,1308,70.2,2.2,42.5,5,0.7,86.5,17.8,NA,2.37,3.37,25.3,7.1,65.6,53229,93.7,27.7,451,2,8,3.3,0,2.9,NA,NA,NA,98060,53798,78594,4.4,8.6,8.9,5.5,8.6,0,83.4,78.5,89.6 +94,2240,"Southeast Fairbanks Census Area, Alaska",Southeast Fairbanks Census Area, Alaska,33138,6936,76.1,0.9,37.9,7.2,1.6,74.8,15.8,15.3,2.79,3.51,3.4,3.5,75.9,47330,93,19.6,2311,2.3,7.4,1.3,5.8,1,NA,NA,NA,91780,38918,74223,14.3,6.7,16.6,15.1,11.1,2.5,72.6,86,79.1 +95,2275,"Wrangell City and Borough, Alaska",Wrangell City and Borough, Alaska,35429,2106,55.1,0.1,44.3,6.5,1,79.4,23.9,7.3,2.25,3.04,23.9,11.5,56.6,47466,90.2,18.9,912,1.6,0.4,3.1,1.1,0,NA,NA,NA,81433,37017,64545,11.7,4,17.2,20.8,15.6,1,73.2,83.4,88.8 +96,2282,"Yakutat City and Borough, Alaska",Yakutat City and Borough, Alaska,46964,506,24.7,5.5,53.2,5.7,2,87,27.7,5.8,1.91,2.12,19.3,3.9,60.9,50000,92.2,14.8,207,4.3,0,9.2,3.9,0,NA,NA,NA,92687,50644,80625,18.2,1.7,15.6,6.5,14.7,3.6,62.3,89.4,82.1 +97,2290,"Yukon-Koyukuk Census Area, Alaska",Yukon-Koyukuk Census Area, Alaska,30752,5271,22.7,1.3,37.3,6.8,1.1,73.5,16.5,NA,2.07,2.62,4.2,0.3,70.7,35739,86.6,12.8,2317,1.6,0.7,0.1,16.3,1.9,NA,NA,NA,65009,32096,52642,9.8,6.8,22.9,8.1,15.7,5,48.9,77.3,53.3 +98,4001,"Apache County, Arizona",Apache County, Arizona,27993,65680,20.2,1,36.2,6,1.3,73.7,16.2,28.1,3.14,4.03,6.8,22.5,79.1,38898,84.9,15.3,20439,3.8,0.6,0.7,64.2,13.7,31.2,40.3,21.8,57306,20100,40338,5.3,10,20.4,17.6,17.7,2,50.7,62.5,53.3 +99,4003,"Cochise County, Arizona",Cochise County, Arizona,32735,125458,66.8,3.8,42.9,5.2,2.1,79.1,24.2,NA,2.37,3.04,11.2,17.7,70.5,41674,89.2,27.7,50476,24.5,2.9,2.6,0.2,4.7,15.5,21,13,77541,32708,58970,18.2,7.3,8,4.6,8.4,0.6,78.4,85.9,86.1 +100,4005,"Coconino County, Arizona",Coconino County, Arizona,33271,144643,57,1.5,32.4,4.9,0.8,80.2,14,NA,2.45,3.06,25.2,13.6,58.8,47118,92,39.6,53642,7.9,1.5,1.5,16.9,2.5,17.7,18.7,13.7,95848,35810,69748,5.7,5.6,10.9,8.8,8.8,0.6,80.6,91.9,83.1 +101,4007,"Gila County, Arizona",Gila County, Arizona,32450,53610,67.7,0.6,51.4,4.4,3.3,81,30.4,NA,2.25,2.78,6.7,23,77.2,40023,89.6,18.8,23253,9.3,1.4,0.5,7.2,0.9,17.8,27.4,10.4,75671,32645,59089,11.3,7.1,10,13.1,12.9,0.3,68.6,83.8,80.7 +102,4009,"Graham County, Arizona",Graham County, Arizona,30687,38860,66.2,1.3,34.4,6.5,1.4,73.5,14.3,NA,2.87,3.31,6.4,18.7,73.5,40832,84.2,14.6,12460,18.1,0.6,1.3,7.6,0.8,17.7,19.7,14.8,80094,26094,67326,5.8,6.1,8.8,5.7,5.8,0.1,70,87.2,84.1 +103,4011,"Greenlee County, Arizona",Greenlee County, Arizona,40386,9452,64.7,1.5,36.1,7.5,0.9,72.9,14,NA,2.72,3.57,6.3,22.6,55.8,56928,88.1,20.4,3444,24.9,0,2.3,1.5,1,NA,NA,NA,84558,32028,75239,7.5,2.1,2.6,0,1,0,62.3,91.6,86.9 +104,4012,"La Paz County, Arizona",La Paz County, Arizona,29476,16605,61.3,0.4,59.7,4.2,4.6,84.3,42.2,NA,1.85,2.21,4.2,51.1,70.4,38716,82.5,13.9,8887,16.9,2.9,0.6,2.7,6.2,NA,NA,NA,68092,33413,49506,16,12.2,12.9,29.3,21.8,0.4,65.1,82.7,75.7 +105,4013,"Maricopa County, Arizona",Maricopa County, Arizona,43165,4491987,63,5.8,37.5,5.7,1.8,77.2,16,26.1,2.61,3.18,24.2,4.3,65,52654,89.5,35.9,1697342,19,3.4,3.2,1.6,3.2,11.3,15.1,9.3,115162,44210,85518,6.9,4.2,10.7,7.2,8.4,1.1,85.4,92.8,92.1 +106,4015,"Mohave County, Arizona",Mohave County, Arizona,30293,217420,81.5,1.2,53.2,4.1,2.7,83.7,31.9,NA,2.2,2.7,10.8,22.5,73.6,38017,88.2,14.9,96899,7.9,1.3,0.8,0.7,1.3,16.8,26.6,10.7,76121,34178,55799,12.6,6.4,9.7,4.1,8.9,0.3,75.4,85.6,86.7 +107,4017,"Navajo County, Arizona",Navajo County, Arizona,28679,107744,45.4,1.2,39.4,6.1,1.4,74.4,19.6,NA,2.68,3.23,7.9,18.4,72.7,38318,86,17.6,39171,6.4,1.4,0.6,34.8,6.4,24.7,30.7,16.2,67131,24347,52752,7.7,8.4,15.3,16.5,16.2,1.5,63.3,80.7,71.3 +108,4019,"Pima County, Arizona",Pima County, Arizona,35975,1049947,63.2,3.6,39.7,5,2.4,80.1,21.2,24.4,2.37,3.01,22.3,9.5,64.8,44893,89.9,35.9,430965,22.8,2.6,2.3,1.3,3.4,14.4,18.7,8.9,92561,38564,67929,9.6,5.2,8.9,5.5,7,0.6,81.7,90.8,90.9 +109,4021,"Pinal County, Arizona",Pinal County, Arizona,37997,449219,66,5,40.3,5.3,1.8,78.3,21.3,NA,2.74,3.18,5.1,14.7,80.5,47542,89.1,22.2,157193,17.2,1.6,1.6,1.5,1.7,10.9,14.3,8.6,97007,35245,77588,10.1,5.7,10.1,8.1,10.2,0.7,83.5,91.8,91.7 +110,4023,"Santa Cruz County, Arizona",Santa Cruz County, Arizona,30464,48209,42.1,0.2,37.9,6.4,1.7,73.9,18.9,24.3,2.85,3.45,14.9,5.8,68.4,38809,77.7,24.1,16816,77.8,0.6,0.2,0,24.5,20.2,27.1,16.2,70629,25634,53614,4.6,9.5,14.5,10.3,9.5,0.7,69,85.8,84.3 +111,4025,"Yavapai County, Arizona",Yavapai County, Arizona,35423,241656,82.7,0.6,55,3.8,3,84.4,33.5,NA,2.18,2.66,12.2,17.4,73.5,41421,92.5,29.6,108900,8.4,2,1,0.4,1.6,12.6,17.8,9.7,88175,39890,66106,12.2,4.1,10.7,10,10.5,0.4,82.2,87.4,90.4 +112,4027,"Yuma County, Arizona",Yuma County, Arizona,30947,207685,48.4,1.7,35.8,6.8,2.3,75.1,20.3,NA,2.6,3.07,12.1,23.5,70,39931,76.6,16.7,76903,51.5,1.3,1.3,0.5,10.7,16.5,22.5,14,77603,28918,60417,9.5,7.6,14.7,7.5,11.8,0.8,70.3,87.2,86.5 +113,5001,"Arkansas County, Arkansas",Arkansas County, Arkansas,34133,16773,70.4,25.7,41,6.1,2.2,76.8,19.9,NA,2.51,3.12,12.4,12.7,67.5,42587,87.5,15.3,6587,1.4,0.4,0.2,0.1,0.9,NA,NA,NA,73981,30130,60831,5.1,6.2,6.7,1.8,5.9,0,58.1,84.3,81 +114,5003,"Ashley County, Arkansas",Ashley County, Arkansas,25863,18722,70,24.6,42.7,6.1,3.3,77.3,21.3,NA,2.58,3.46,10.3,20.2,72.1,37445,87.8,12.2,7199,3.8,0.3,0.2,0,1.8,NA,NA,NA,60457,24754,44481,5.1,5.5,8.6,0,1.5,0.8,55.6,80.6,79.7 +115,5005,"Baxter County, Arkansas",Baxter County, Arkansas,28575,42150,92.9,0.4,51.9,4.2,3.8,82.3,31.1,18,2.16,2.71,9.3,11.7,75,34322,89.4,18.7,19289,2.6,1.6,0.7,0,0.4,14.5,20.7,8,68034,30900,48427,12.4,5.2,7.2,1.5,2.5,0.1,71.9,80.7,85.5 +116,5007,"Benton County, Arkansas",Benton County, Arkansas,42633,294541,66,1.8,35.8,6.7,1.5,74.3,13.6,21.1,2.71,3.17,15.3,3.6,67.2,53778,90.6,36.6,107667,10.5,1.9,2.7,0.3,2.9,7.6,10.1,8,121779,45335,89879,6.5,2.7,9.8,7.2,6.8,0.6,82.5,93.9,93 +117,5009,"Boone County, Arkansas",Boone County, Arkansas,30308,37896,94.3,0.3,41.3,5.4,2.5,77.2,21,NA,2.46,3.06,11.5,8.4,70.3,36749,90.7,16.3,15232,2,1.4,0.5,0.1,0.3,NA,NA,NA,70513,29583,54195,8.3,3.8,7.9,1.6,3.3,0.2,70.5,87.5,87.8 +118,5011,"Bradley County, Arkansas",Bradley County, Arkansas,29141,10354,58.3,26.4,38.5,6,2.5,75.2,18.5,NA,2.82,3.87,12.2,16.1,66.9,42245,87.3,15.8,3600,8.3,0.2,0,0,0.4,NA,NA,NA,62232,25607,39565,5.4,4.8,12,1.9,8.1,1,51.1,82,77.6 +119,5013,"Calhoun County, Arkansas",Calhoun County, Arkansas,28898,4717,79,12.3,44.8,3.6,2.7,81.7,21.7,NA,2.85,3.52,1.6,29.1,86.4,40122,86.7,18.1,1584,6.3,2,0.3,0,0.9,NA,NA,NA,73162,26261,63654,4.6,7.2,9.5,2.2,17.8,0,56.8,86.4,80.3 +120,5015,"Carroll County, Arkansas",Carroll County, Arkansas,29694,28526,73.2,0.2,44.7,5.2,2.1,77.9,23.3,NA,2.54,3.1,7.4,11.2,77.7,35459,84,21.1,11106,7.1,1.4,1.2,0,2.9,NA,NA,NA,72185,29107,55187,10.4,3.1,13.4,11.6,10.8,1,70.7,84.2,85.7 +121,5017,"Chicot County, Arkansas",Chicot County, Arkansas,25679,9997,41,53.4,42.9,6,3,77.8,21.7,NA,2.36,3.11,7.9,16.5,67.4,37313,81.6,17.2,3919,3.9,1.2,0.1,0,1.1,NA,NA,NA,59697,24003,39683,4.4,8.8,10.5,1.2,0.3,0,54.8,83,77.6 +122,5019,"Clark County, Arkansas",Clark County, Arkansas,24582,21378,69.6,23.7,31.9,5,1.3,80.3,16.2,20.3,2.3,2.95,20.9,13.7,61.5,39003,90,25.5,8147,3.2,1.3,0.1,0,0.7,NA,NA,NA,67510,26153,50985,4.7,3.5,8.7,5.7,5.2,0,67.3,85.8,80.6 +123,5021,"Clay County, Arkansas",Clay County, Arkansas,27947,14399,94,0.1,42.6,5.6,2.6,78.4,21.8,NA,2.34,2.81,7.3,9.6,71.5,36643,86.6,15.6,6116,0.5,0.3,0,0,0,NA,NA,NA,63441,27614,48500,8,5.8,8.9,4.1,4.2,0,59,83.3,78.7 +124,5023,"Cleburne County, Arkansas",Cleburne County, Arkansas,29595,25048,94.4,0.4,49.5,4.3,3.1,81.1,27.3,29.7,2.37,2.94,5.9,16.8,78.5,37543,88.3,18.3,10458,2.4,0.4,0,0.2,0.1,NA,NA,NA,74855,32380,55979,11.1,6.9,7.2,8,6,0.1,66.4,84.6,82.8 +125,5025,"Cleveland County, Arkansas",Cleveland County, Arkansas,29524,7491,83.9,13.1,43.7,4,3.4,79,20.9,NA,2.65,3.27,2.5,23.1,79.2,46998,91.6,16.2,2793,1.3,0.9,0,0,0,NA,NA,NA,69803,27496,50509,6.1,2.5,4.9,0,1.2,0,58.5,84.2,79.1 +126,5027,"Columbia County, Arkansas",Columbia County, Arkansas,25823,22527,61.2,34.9,34.5,6.2,2.7,78.5,17.3,21.9,2.45,3.08,14,14.8,69.1,35447,88.5,20.4,8361,3.1,0.6,0.1,0,1.2,NA,NA,NA,66389,25947,47363,5.4,2.6,6.6,5.9,3,0.1,53.8,81.9,78.8 +127,5029,"Conway County, Arkansas",Conway County, Arkansas,27667,20872,82,11.1,42.6,5.5,1.9,77.4,19.6,NA,2.49,3,8.2,19.7,71.5,40164,90.1,18.2,8303,3,0.1,0.7,0,0.5,NA,NA,NA,69207,28521,51212,8.6,7.2,6.4,2.7,2.6,0.1,62.7,85,79.6 +128,5031,"Craighead County, Arkansas",Craighead County, Arkansas,32325,112097,73.2,16.8,34.5,6.8,1.6,74.7,13.7,19.7,2.51,3.05,24.7,4.2,59.2,42155,90.3,27.8,43357,4.7,0.9,0.6,0.3,1.3,19.1,28.3,9.6,82653,32319,57615,6.2,5.6,8.4,1.1,4.9,0.6,73.5,91.1,87.4 +129,5033,"Crawford County, Arkansas",Crawford County, Arkansas,31052,60792,82.9,1.2,39.1,6,1.6,75.9,17.5,23.5,2.61,3.03,12.7,10,74.2,41048,86.6,19.3,22994,6.7,0.9,0.7,0.2,1,16.8,27,9.4,75580,28935,60362,9.8,5,8.4,6.3,6.2,0.1,68.1,87.6,85.2 +130,5035,"Crittenden County, Arkansas",Crittenden County, Arkansas,29968,47609,40.4,50.4,36,7.3,1.2,72.7,14.8,22,2.56,3.18,20.7,5.8,56.6,41749,85.3,17.2,18338,1.9,0.4,0.5,0.2,0.8,20.7,30.8,14.9,72770,28221,54271,5.6,8.8,8,3.6,2.9,0.5,58.5,86,84.1 +131,5037,"Cross County, Arkansas",Cross County, Arkansas,27731,16681,72,18.4,40.6,6.3,1.3,75.7,18.6,25.5,2.53,3.01,9.1,17.8,66.1,38022,83.4,14.8,6524,1.2,0.2,0,1.1,0,NA,NA,NA,69861,28569,47012,6.9,8.7,7.5,4,3.6,0,58.9,83.1,81.6 +132,5039,"Dallas County, Arkansas",Dallas County, Arkansas,29742,6351,52.9,43.8,44.5,5,4.3,79.6,25,NA,2.49,3.24,9.4,16.9,71.2,40028,89,11.1,2425,1.4,0,0.1,0,0,NA,NA,NA,60225,27474,44694,7.2,8.3,4.7,0,1.4,0,46.8,72.6,72 +133,5041,"Desha County, Arkansas",Desha County, Arkansas,24109,11041,44.9,48.6,41.2,6.7,1.9,74.7,19.6,18.3,2.3,2.8,13.6,9.7,60.5,35216,77.9,13,4750,4.9,0,0,0,2.1,NA,NA,NA,52920,22848,36064,5.4,4.3,8.5,10.3,4.2,0,50.8,84.2,74.3 +134,5043,"Drew County, Arkansas",Drew County, Arkansas,26310,17143,65.7,26.7,37.7,5.9,1.1,77.8,17.9,19.3,2.34,3.07,18.3,20.8,63.9,39475,87.1,23.3,7004,3.5,0.7,0.3,0.5,0,NA,NA,NA,63455,26563,41071,6.2,3.5,7.1,3.5,3.3,0,61.7,85,79.3 +135,5045,"Faulkner County, Arkansas",Faulkner County, Arkansas,35046,126001,79.9,11.9,34,5.9,1.2,77.2,13.4,NA,2.47,2.98,21,9.7,61.6,47432,93.7,33.2,48866,4,1.1,0.9,0.2,0.9,15,14.9,13,85913,33465,65071,6.2,2.8,7.5,2.2,4,0.2,82,93.1,92.7 +136,5047,"Franklin County, Arkansas",Franklin County, Arkansas,28937,17220,86.3,0.2,42.4,5.4,2.8,77.4,20.3,24.2,2.45,3.02,7.8,13.4,74,40928,87.1,13.2,6878,1.1,0.9,0.7,0.5,0.2,NA,NA,NA,65796,27137,51919,10.5,3.8,8.3,2.7,2.7,0.9,62.8,83.8,76.5 +137,5049,"Fulton County, Arkansas",Fulton County, Arkansas,23763,12239,92.9,0.2,48.6,4.8,2.2,79.6,25.9,27.8,2.51,3.26,3.8,21.8,84.7,31762,87.7,15.7,4808,0.6,0,0.3,0,0.2,NA,NA,NA,54372,23128,38941,8.8,3.6,11.4,21.1,19.6,0.4,68.8,72.7,69.1 +138,5051,"Garland County, Arkansas",Garland County, Arkansas,30571,100062,83.6,7.8,45.3,5.2,2.4,80,24.3,21.9,2.25,2.77,16,13.3,69.2,36774,90.9,26.2,43762,5,1.9,1,0,1.2,16.5,22.4,11.6,74518,32793,55409,9.8,5.6,9.5,4.4,5.6,0.3,71.4,86.7,83.2 +139,5053,"Grant County, Arkansas",Grant County, Arkansas,35121,18111,91.8,2.6,40.2,5.3,1.8,78.6,18.1,31.1,2.58,3.18,4.9,22.7,79.5,48859,91.1,20.9,6955,1.4,0.2,0,0.1,0.2,NA,NA,NA,91164,36832,72512,7.7,3.8,6.7,5.5,2.2,0,69.7,87.1,85.5 +140,5055,"Greene County, Arkansas",Greene County, Arkansas,29964,46182,90.2,2.2,37.8,6.3,1.6,75.8,16.2,NA,2.53,3.05,15.5,11.6,65.1,40065,87.4,16.5,17926,1.4,0.3,0.6,0.2,0.1,17,23.1,14.6,69475,27650,56793,8.3,7,9,3.2,5.4,0.6,67.4,88.8,85.5 +141,5057,"Hempstead County, Arkansas",Hempstead County, Arkansas,28568,19778,55.5,29.7,41.1,6.5,1.2,74.5,18.7,23.5,2.61,3.38,8.4,20.9,69.6,38745,83.4,14.6,7454,7.3,0.1,0.5,0,0.9,NA,NA,NA,66635,26620,47654,6,4.1,10.1,2.2,5.9,1.3,50.4,81.6,76.2 +142,5059,"Hot Spring County, Arkansas",Hot Spring County, Arkansas,29060,33142,82.8,11.5,43,4.7,1.6,80.4,19.7,28.3,2.55,3.1,6.6,20.3,77.4,38078,89.4,15.8,12101,4.3,0.5,0.6,0,0.1,NA,NA,NA,67204,26304,52644,8.3,3.8,8,5.3,6.1,1.5,65.1,84.1,77.6 +143,5061,"Howard County, Arkansas",Howard County, Arkansas,28592,12701,64.4,20.8,39.4,6.9,1.9,74.1,18.3,NA,2.42,3.03,6.7,20.2,71.2,35596,89.4,16.7,5169,8.1,1.4,0.5,0,1.4,NA,NA,NA,62736,25639,44492,5.8,7.2,11.7,5.5,10.9,0,56.8,82.5,77.1 +144,5063,"Independence County, Arkansas",Independence County, Arkansas,29085,38120,84.9,1.6,39,6.1,2.2,75.8,17.5,NA,2.56,3.1,9.5,21.1,67.6,38858,87.5,16.9,14515,6,0.2,0.9,0,0.5,19.6,29,10.1,77283,30007,56009,7.2,4.7,10.3,5.9,6,0.3,64.7,85.9,74.7 +145,5065,"Izard County, Arkansas",Izard County, Arkansas,24211,13866,87.8,1.6,47.5,4.2,2.8,82.3,25,NA,2.53,3.36,5.8,11.9,74.7,34352,84.8,18.7,5027,2,0.8,0.7,0.2,0,NA,NA,NA,61320,24443,47728,10.1,6.9,6.6,0.5,2.6,0.4,68.3,79.3,70.6 +146,5067,"Jackson County, Arkansas",Jackson County, Arkansas,23240,16775,75.7,14.7,40.4,5,1.8,80.4,17.9,21.3,2.37,3.01,11.9,9.5,65.3,32610,83.8,13.3,6094,0.7,0.7,0,0.2,0,NA,NA,NA,60764,24194,41215,5.6,10.6,8.9,7.4,3.8,0.6,52.9,82.2,77.3 +147,5069,"Jefferson County, Arkansas",Jefferson County, Arkansas,27964,65780,37.6,56.3,39.5,5.9,1.5,78.4,18.1,NA,2.47,3.16,15.8,11.6,63.2,36275,88.6,20.6,24334,2.7,0.5,0.2,0.2,0.4,20.6,28.9,13.3,66118,25317,48552,6.6,6.9,5.5,3.2,3.3,0.3,58.5,85.1,78.5 +148,5071,"Johnson County, Arkansas",Johnson County, Arkansas,26472,25932,84.3,1.7,39.4,6.6,1.7,75.5,16.8,19.4,2.5,3.1,12.3,9.8,71.7,34943,83.9,18.1,10047,9.8,1,1.2,0,2.7,NA,NA,NA,61307,24865,44808,8,4.3,7.8,1.3,3.2,0,62.4,78.9,70.2 +149,5073,"Lafayette County, Arkansas",Lafayette County, Arkansas,24565,6211,57.7,35.8,48.5,3.6,2.4,81.5,25.4,NA,2.38,3.04,4.3,25.8,77.2,36815,81.6,9.2,2564,0.9,0,0.6,0,0.2,NA,NA,NA,51942,22393,37237,8.6,9.2,8.6,6.9,7.1,0.5,53.2,77.2,67 +150,5075,"Lawrence County, Arkansas",Lawrence County, Arkansas,24964,16265,92.7,1,39.8,5.8,2.9,77.5,18.9,26.8,2.43,2.98,10.1,10.3,68.2,37409,82.4,14,6437,1.5,0.6,0.3,0,0.1,NA,NA,NA,63906,26104,44164,6.5,6,9.3,8.2,5.5,0.3,63.8,84.6,82.2 +151,5077,"Lee County, Arkansas",Lee County, Arkansas,21673,8511,40,54.7,41.9,6.3,3,80.7,20,NA,2.64,3.45,14.9,8.4,61.2,38903,82.6,6.9,2641,0.8,0.2,0,0,0,NA,NA,NA,60647,21687,36860,4.5,18.2,6.5,5.6,2.2,0.3,50.3,73.1,80.8 +152,5079,"Lincoln County, Arkansas",Lincoln County, Arkansas,28902,12966,62.1,28.6,40.1,4.4,1.2,84.1,15,NA,2.43,2.97,3.2,31.6,78.4,42782,83.3,10.9,3518,7.6,0.5,0.2,0,0.5,NA,NA,NA,67605,18302,51667,6.2,2.7,7.9,17.2,7.6,0,55.5,78.3,62.7 +153,5081,"Little River County, Arkansas",Little River County, Arkansas,29252,11959,72.9,19.6,42.2,5.9,1.9,77.7,21.2,29.4,2.46,3.08,4.9,13.1,80,40732,91,17.4,4790,1.6,0.6,0,0,0.6,NA,NA,NA,69554,28791,52241,6.6,9.5,5.6,7.9,3.8,0,65,88.5,78.7 +154,5083,"Logan County, Arkansas",Logan County, Arkansas,28738,21240,89.3,1.7,43.8,5.9,2,78.6,20.2,NA,2.44,2.97,6.4,9.9,76.7,36881,89.3,15.5,8484,3.4,1.4,1,0,0.6,NA,NA,NA,72784,29471,54237,7.2,6.1,7.7,1.8,6.3,0,67.8,85.1,78.8 +155,5085,"Lonoke County, Arkansas",Lonoke County, Arkansas,37883,74747,85.7,5.5,37.3,6.1,1.6,75,14.4,NA,2.66,3.16,8.3,13.4,74.4,48627,90.2,21,27817,3.8,0.9,1.2,0.5,0.7,11.1,16,8.7,88961,34081,71449,11.7,4.2,6.7,4,4.5,0.1,75.2,90.6,88.3 +156,5087,"Madison County, Arkansas",Madison County, Arkansas,28439,17032,74.5,0.2,41.2,5.7,1.5,76.6,19.3,NA,2.65,3.08,3.3,20,79,36455,85.8,12.8,6381,3.6,0.3,1,0,1.1,NA,NA,NA,73885,28869,53888,7.8,4.4,12.5,4.5,8.5,0.2,70.4,88,88.7 +157,5089,"Marion County, Arkansas",Marion County, Arkansas,25360,17076,94,0.2,51.9,4.2,2.2,81.4,29.1,NA,2.32,2.77,3.8,17.4,83.5,33955,86.3,15.4,7296,2,2.6,0.4,0.1,0.4,NA,NA,NA,61967,26461,46953,13.3,6.2,7.2,1.7,2.3,0.1,70.7,84.2,86.3 +158,5091,"Miller County, Arkansas",Miller County, Arkansas,29315,42588,67.5,25.7,39,6,1.2,76.4,16.8,20.7,2.53,3.23,15.7,10.6,65.3,43932,86.9,16,16311,2,0.2,0.3,0.1,0.3,21,24.9,17.7,68756,28025,49983,7.4,6.1,11.3,9.3,7.6,0.9,61.6,87.1,82 +159,5093,"Mississippi County, Arkansas",Mississippi County, Arkansas,29775,39749,57.5,34.8,36.9,7,1.5,73.9,15.2,NA,2.53,3.15,21.1,6.3,59.4,37329,85.6,14.2,15381,3.6,0.4,0.5,0,0.8,21,27.4,13.9,76088,30350,53428,6,7.5,9.5,6.9,5.9,0.4,59.2,82.5,82.7 +160,5095,"Monroe County, Arkansas",Monroe County, Arkansas,27667,6681,53.4,40.2,45.5,6.2,3.9,76.9,23.3,NA,2.34,3.34,14.5,15.1,65.7,39141,83.4,15.6,2819,0.2,0.5,0.9,0,0.1,NA,NA,NA,57347,25956,43955,8.3,10.4,7,12.9,4.1,0,53.1,76,75.5 +161,5097,"Montgomery County, Arkansas",Montgomery County, Arkansas,26885,8571,91,0.9,50.8,4.6,2.3,81.8,27,NA,2.25,2.66,3.1,31.8,78.9,35012,87.6,16.8,3752,2.2,0,0.7,0,0.7,NA,NA,NA,65505,28786,49015,9.3,6.7,11.2,9.2,5.9,0,63.8,78.3,76.9 +162,5099,"Nevada County, Arkansas",Nevada County, Arkansas,22177,8228,64.9,31.9,44.2,5.9,3.6,77.6,21.1,NA,2.36,3.03,4.1,23.2,65.9,36064,90.1,11.7,3402,2.5,0.2,0,0,0,NA,NA,NA,52418,23002,41761,9.4,8.8,6.2,6.1,4.1,0,51.6,76.4,68.6 +163,5101,"Newton County, Arkansas",Newton County, Arkansas,27003,7175,93.6,0.2,48.9,4.4,1.5,80.9,27,33.4,2.33,2.82,5.7,11.4,72.4,35213,85.4,14.3,3049,0.5,1.6,0,0.5,0.2,NA,NA,NA,64637,27063,47395,10.7,3.9,6.1,1.4,4.3,1.3,68,78.6,78.5 +164,5103,"Ouachita County, Arkansas",Ouachita County, Arkansas,28190,22317,55.2,41,44,5.5,2.7,77.7,21.1,21.2,2.55,3.29,10.7,14.7,71.2,42142,88.9,15.1,8590,1.2,0.1,0.1,0,0,NA,NA,NA,63323,26339,49838,8.3,5,5.8,0.3,3.6,0,60,80.7,80.2 +165,5105,"Perry County, Arkansas",Perry County, Arkansas,30386,10073,91.8,1.8,44.1,4.9,2.1,78.2,20.5,NA,2.58,3.03,4.6,20.1,77.4,45456,91.7,17.1,3840,1.2,0,0.1,0,0,NA,NA,NA,75452,29441,60078,10.8,4.9,5.3,1.1,7,0,65,78.4,79.6 +166,5107,"Phillips County, Arkansas",Phillips County, Arkansas,24465,15910,34.4,61.5,39.9,6.9,1.5,73.2,20.1,NA,2.54,3.31,16.9,11.7,54,39337,82.6,14.5,6179,0.7,0.4,0.8,0.3,0.6,NA,NA,NA,54537,22360,38874,5.9,16.8,8.4,1,6.9,0,54.2,81.2,79.2 +167,5109,"Pike County, Arkansas",Pike County, Arkansas,27909,10182,87.8,3.8,42.8,5.4,2.1,77.7,20.5,NA,2.42,3.04,7.3,21.3,75.9,43845,87.1,19.6,4120,4.5,0.1,0.1,0,0.6,NA,NA,NA,70571,29522,51000,9.5,1.8,11.5,3.9,6,0,60.2,80.8,77.8 +168,5111,"Poinsett County, Arkansas",Poinsett County, Arkansas,27073,22740,84.9,5.9,39.8,6.3,2.3,75.9,18.4,NA,2.48,3.21,13.1,10.8,63.7,36475,82.3,11.9,9031,2.3,0.7,0,0,0.4,NA,NA,NA,62397,25587,47188,5.8,5,9.9,5,5.6,0.3,56.2,85,79.6 +169,5113,"Polk County, Arkansas",Polk County, Arkansas,27961,19348,89.4,0.1,44.4,5.3,2,77.5,22.5,NA,2.44,3.06,3.4,18.6,82.2,36498,87.4,17.2,7884,4.4,1.1,0.1,0.1,1,NA,NA,NA,75460,32243,49252,9.3,8.3,9.7,2.2,2.6,0.8,58.9,82.7,78.6 +170,5115,"Pope County, Arkansas",Pope County, Arkansas,29118,63830,84.6,2.3,36.7,6,2.1,76.8,16.1,20.1,2.52,3.1,12.6,13,71.2,41307,86,24.6,24073,6.7,1.2,1,0,2,17.6,22.2,9.2,77373,29516,54606,7.3,3.9,7.5,3.2,5.3,0.1,70.8,86.5,83.3 +171,5117,"Prairie County, Arkansas",Prairie County, Arkansas,30620,8162,84.7,10.5,45.8,4.6,3.4,79.8,23.6,26.4,2.46,3.15,8.1,19.2,76.1,38394,85.9,16.7,3261,0.9,0.7,0,0,0,NA,NA,NA,75028,31979,51094,8.2,2.3,6,1.2,3.1,0,52.4,84.2,72.4 +172,5119,"Pulaski County, Arkansas",Pulaski County, Arkansas,37213,398949,50.8,36.8,37.5,6.3,2,76.6,16.3,20.3,2.31,3.09,26.9,4.6,57.7,46046,92,37.4,169453,5.4,1.7,1.5,0.6,1.8,16.2,24.5,8.5,91685,39780,60385,8.1,4.8,9.6,5.4,6.2,0.9,75.1,90.3,87.6 +173,5121,"Randolph County, Arkansas",Randolph County, Arkansas,25884,18733,89.8,1.1,39.3,6.4,2.2,75.6,19.4,NA,2.6,3.21,8.8,12,73.2,34765,86.1,14.5,7071,1.4,1.3,2.1,0.4,0.3,NA,NA,NA,68091,27416,52838,7.1,6.4,7.1,1.9,6.6,0,61.2,79.2,76.9 +174,5123,"St. Francis County, Arkansas",St. Francis County, Arkansas,24447,22740,41.1,55,39.7,6.1,1.7,78.7,17.6,NA,2.51,3.23,21.6,10.8,55.2,32756,85.7,12.9,7881,3.3,0.8,0.6,0,1.2,NA,NA,NA,59402,22296,41784,5.5,7.2,7.9,6.9,5.1,0.2,57.6,85,81.2 +175,5125,"Saline County, Arkansas",Saline County, Arkansas,40369,125724,82.1,8.4,40.4,5.6,1.6,76.6,18.2,NA,2.51,3.01,9.4,15,76.4,53055,92.7,28.5,49589,5.4,0.8,1.1,0,2.1,9.1,12.1,6.4,94089,38149,76534,8.6,3.4,6,1.7,3.1,0.1,76,92.7,87.8 +176,5127,"Scott County, Arkansas",Scott County, Arkansas,27462,9839,84.9,1.5,42.4,5.1,1.5,77,21.2,NA,2.48,3.07,8.5,15.2,73.9,33756,84.6,10.8,3927,4.2,0.6,1.4,0,1,NA,NA,NA,57192,23837,45955,7.3,5.9,9.8,3.9,12.2,0.3,58.2,77.4,75 +177,5129,"Searcy County, Arkansas",Searcy County, Arkansas,20637,7861,88.2,0.1,48.5,5.2,2.5,79.5,25.7,26.5,2.55,3.19,6.5,20.3,75.1,29175,80,13.7,3052,1.4,0.9,0.6,0,0,NA,NA,NA,53052,22545,41978,7.3,5.5,5.8,5.8,1.7,0,59.3,77.5,74.8 +178,5131,"Sebastian County, Arkansas",Sebastian County, Arkansas,31693,128448,69.2,5.7,38,6.3,2.3,76.1,16.7,19.8,2.44,3.02,23.1,3.2,61.2,40701,85.2,24.4,51951,10.6,1.2,3.8,0.5,3.3,16.3,20.5,12.2,85707,34275,56450,8.2,5.3,10.5,8.4,7.4,0.9,69.3,89,83.8 +179,5133,"Sevier County, Arkansas",Sevier County, Arkansas,30159,15797,58.7,5,34.8,7.2,0.9,71.4,14.3,NA,2.75,3.4,6.2,26.2,65.3,38015,72.5,10.9,5697,25.8,0.3,1,0.1,5.1,NA,NA,NA,67677,25685,51641,5.2,5.3,18.9,9.5,11.2,0,60,82.6,78.7 +180,5135,"Sharp County, Arkansas",Sharp County, Arkansas,23687,17597,92.4,0.6,47.5,5.3,3.4,79.3,25.5,NA,2.55,3.2,5,12.6,79.6,33579,85.4,11.9,6810,0.9,0.6,0.7,0,0.2,NA,NA,NA,66305,26959,42950,9.7,6.7,6,1.5,1.2,0,65.3,79.4,74.1 +181,5137,"Stone County, Arkansas",Stone County, Arkansas,22401,12474,90.6,0.1,49.2,5.1,3.1,80,27.8,NA,2.49,3.19,5.2,21.8,75.6,27101,86,15.4,4962,1.2,1.6,0.5,0,0.2,NA,NA,NA,53444,23196,38531,11.1,4,9.1,2.3,2.8,0,57.9,79,70.3 +182,5139,"Union County, Arkansas",Union County, Arkansas,29263,38368,62,32.4,41.5,6,2.3,76,18.9,19.2,2.5,3.34,7.2,19.7,72.9,40716,88,18.9,15125,2.4,0.2,0.5,0,0.2,19.4,23.7,16.2,74494,30968,50221,7.6,4.3,5.8,0.8,1.9,0.6,61,81.4,81.4 +183,5141,"Van Buren County, Arkansas",Van Buren County, Arkansas,24660,15936,92.9,0.6,49.6,4.5,2.6,80.9,26.7,31.8,2.21,2.68,5.8,21.8,78,32697,86.4,15.8,7115,2.4,0.5,1.2,0,0.7,NA,NA,NA,60906,27284,47266,10.1,3.9,9.9,7.3,5,0.9,64.2,84.9,79.3 +184,5143,"Washington County, Arkansas",Washington County, Arkansas,35490,251863,67.2,3.2,32.5,6.3,1.2,76.2,12.1,NA,2.55,3.14,27.5,4.7,55.6,45037,87.3,34.6,95467,11.9,1.8,3.1,0.4,3.8,14.8,15.2,9.5,95012,36545,66426,6,3.5,12.3,7.5,10.1,1.3,77.6,92.3,89.1 +185,5145,"White County, Arkansas",White County, Arkansas,28040,77395,87.8,4.4,38.4,5.7,1.6,76.7,16.6,23,2.56,3.09,14.1,18.9,68.2,39870,86.7,19.8,28945,4,0.4,0.5,0.1,0.2,16.4,19.7,9.8,73577,28459,53435,7.5,5.1,9.7,3.8,4.2,0.2,63.4,89.2,85.6 +186,5147,"Woodruff County, Arkansas",Woodruff County, Arkansas,28608,6157,69.7,27.1,44.9,6,2.3,78.4,24.4,21.4,2.19,2.93,16.2,14.1,65.7,41571,82.9,15.9,2753,0.7,0,0,0.4,0,NA,NA,NA,64984,29471,49982,6.4,5.7,8,0,3.7,0,53,73.8,62.4 +187,5149,"Yell County, Arkansas",Yell County, Arkansas,31403,20195,79.1,1.7,39.9,6.2,2.4,75.9,17.6,22.3,2.47,2.95,9.9,14.4,67.5,40583,81.5,14.3,8053,15.6,0.8,1.1,0,4.1,NA,NA,NA,66744,26871,58870,5.6,3.2,8.3,5,3.2,0.2,60,83.3,78 +188,6001,"Alameda County, California",Alameda County, California,56575,1651949,32,9.9,38.7,5.3,1.8,80,14.9,31.8,2.73,3.3,37.1,1.3,54.1,73582,88.9,51.5,593117,15.3,9.9,21.4,2,8.3,9.2,9.1,11,171948,63442,126240,3.2,5,4.1,2,2.4,1,87.5,93.5,93.5 +189,6003,"Alpine County, California",Alpine County, California,35598,1695,63.5,0,41.1,9.5,0.6,77.4,21.8,NA,3.42,4.14,6.1,3.6,81,44286,96.3,42.1,473,5.1,1.1,0,3.2,0,NA,NA,NA,162949,53247,110781,3.5,3,5,0,4,0,90.3,91.1,86.9 +190,6005,"Amador County, California",Amador County, California,41581,41029,77.8,2,49.9,3.9,2.9,84.5,27.2,NA,2.35,2.88,7.6,5.7,80.1,49672,91,22.4,16066,5.4,2.4,1.6,1,1.8,NA,NA,NA,104990,42602,81526,10.9,5.9,5.9,1.9,5.9,0.3,81.7,83.3,87.9 +191,6007,"Butte County, California",Butte County, California,33600,209470,72.6,1.8,36.3,5.3,1.8,79.5,18.2,NA,2.47,3.02,23.9,10.5,58.3,46325,90.3,31.7,82345,12,2.4,3.6,0.7,2.4,18.3,19.2,10.8,96124,37965,68574,6.9,7,6.4,3,2.9,0.3,81.9,90.1,90.7 +192,6009,"Calaveras County, California",Calaveras County, California,37043,45995,80.8,1.2,52,4,2.6,83.1,28.7,NA,2.54,2.92,4,8.1,84.4,47739,93.3,22.2,17897,7.1,1.7,1.6,0.8,0.3,NA,NA,NA,103128,41078,79877,8.8,5.9,5.3,6.6,3.8,0.4,82.1,89.6,85.6 +193,6011,"Colusa County, California",Colusa County, California,36820,21895,51.2,1.4,35.7,6.7,2.8,72.7,15.3,24.8,2.89,3.61,11.1,5.4,62.2,45193,73.2,14.5,7466,46.4,1.3,0.2,0.1,8.9,NA,NA,NA,93585,32776,75149,5,8.5,9,3.5,5.5,1.7,64.4,87.8,82.9 +194,6013,"Contra Costa County, California",Contra Costa County, California,54178,1161458,43.5,8.5,40.3,5.4,2,77.8,16.7,36,2.79,3.28,21.7,1.5,67.7,70249,89.6,44.9,411662,18.1,7.8,12.4,1.5,6.1,8.3,10,7.3,172107,61727,125727,4.4,5.7,4.8,2.2,2.7,0.9,87.9,93.5,95.3 +195,6015,"Del Norte County, California",Del Norte County, California,31929,27293,67.1,2.9,40.8,5.1,1.2,79,19.8,NA,2.59,3.15,13.3,21.7,71.2,41544,85.5,21,9621,9.1,1.5,2.3,0.5,1.5,NA,NA,NA,86246,31008,66780,6.9,5.7,5.9,7.9,6.2,0.9,77.4,86.7,90.3 +196,6017,"El Dorado County, California",El Dorado County, California,48876,192299,79.9,0.9,46.1,4.5,2.3,80.3,22.8,NA,2.51,2.96,11.9,5.5,76.4,62959,94.9,38.8,75719,7,3.8,3.7,0.4,1.5,8.3,9.1,6.5,145804,57916,106190,7.8,4.8,4,3.3,3,0.2,86.9,92,92.4 +197,6019,"Fresno County, California",Fresno County, California,33875,1012152,41.8,4.4,33.2,7.1,1.5,72,12.7,23.4,3.08,3.66,25,3.9,55.4,43527,78.6,23.9,322163,36.2,4.1,6.6,1,9.3,18.7,25.5,14.6,97005,31777,71434,4.6,8.1,7,2.6,3,1.2,75.2,89.6,87.2 +198,6021,"Glenn County, California",Glenn County, California,35120,28623,59.8,0.6,35.9,6.5,2.3,73.8,16.8,22.4,2.91,3.53,13.8,11.2,63.1,43863,80.3,16.5,9763,30.4,2.7,2.7,0.2,7.1,NA,NA,NA,86148,30697,70487,5.7,7,8.9,14.5,7.7,0.5,74.7,88.6,90.5 +199,6023,"Humboldt County, California",Humboldt County, California,31657,135418,73.6,1.3,39.6,4.8,1.8,81,19.3,19.2,2.39,3.03,17.8,7,56.3,40445,91.5,32.1,54878,7.5,2.2,2.1,0.4,1.5,18.9,18.2,12.9,86742,36082,61135,6,8.3,5.8,2.2,2.9,0.1,81.7,86.4,90.5 +200,6025,"Imperial County, California",Imperial County, California,24717,179319,30.4,2.5,33,7.2,1.7,71.5,13.5,22,3.51,4.15,24.4,8.1,56.8,36871,71.8,16.1,48844,78.3,0.4,0.9,0.8,23.8,19.6,25.4,19.7,77390,22702,56393,3.7,12.4,6.8,2.1,2.3,0.7,69.3,90.2,88.2 +201,6027,"Inyo County, California",Inyo County, California,41594,18803,64.6,1,45.6,5,3,79.7,24.4,15.8,2.28,3.05,10.6,25.7,67.1,54697,92.8,31.8,7923,15.6,1.3,1.2,2.2,0.9,NA,NA,NA,93044,40569,72432,7.4,2.4,7.1,5.7,8.2,0.5,78.1,84.3,82.7 +202,6029,"Kern County, California",Kern County, California,30912,910433,49.2,5.2,32.4,7.2,1.2,71.2,11.6,NA,3.15,3.67,17.2,7,59.8,41241,77.1,18.6,281416,40.3,2.2,3.7,0.8,8.5,19,25.8,14.9,91401,29238,67660,5.1,7.9,7.8,3.2,3.7,0.8,72.4,90.3,89.8 +203,6031,"Kings County, California",Kings County, California,34210,152830,46,6.4,32.3,7.2,1.2,72.9,10.6,NA,3.19,3.66,20.1,4.2,54.8,43446,74.2,13.9,43736,40.5,2.9,3.9,0.6,11.4,16.8,23.6,10.5,86268,26420,68750,6.9,9.3,7.9,3.1,4.2,1.3,71.6,90.8,87.8 +204,6033,"Lake County, California",Lake County, California,31565,68139,69.2,2.2,44.2,5.5,2.1,78.2,23.6,NA,2.55,3.2,8.5,19.5,70.9,41214,87.1,17.7,26364,14.8,2.3,0.7,0.2,2.1,16.7,20.1,10,86272,34768,58738,8.8,11.5,6.4,1.3,3.4,0.6,73.9,85.4,85 +205,6035,"Lassen County, California",Lassen County, California,34293,31177,68.9,8.3,37.8,4.7,1.8,82.1,16,19,2.64,3.29,12,13.6,68.2,44846,79.1,13.2,9060,8.8,1.2,1.8,0.5,2.3,NA,NA,NA,81066,25852,64395,7.9,8.2,6.7,9.7,5.1,0.9,69.2,88.4,87.2 +206,6037,"Los Angeles County, California",Los Angeles County, California,38111,9848406,35.4,7.8,37.9,5.3,1.9,79.1,14.7,30.8,2.85,3.5,43.2,1.7,46.1,48911,80.7,35.5,3390254,34.5,7.4,12.7,1.5,12.1,13.6,17.7,14.2,125539,44319,87760,2.8,6.7,8.7,2.4,3.5,1.6,82.6,92.6,91.7 +207,6039,"Madera County, California",Madera County, California,30316,158790,44.1,2.6,34.6,6.8,1.6,72.6,14.4,NA,3.42,3.85,11.9,5.8,65.5,37789,73,17.1,44513,42.7,2.8,1,0.9,9.5,19.9,27.7,13.1,99476,29698,75496,5.1,9.4,7.5,2.1,2.5,0.5,74.6,89.7,90.1 +208,6041,"Marin County, California",Marin County, California,65068,258765,70.4,2.3,47.3,4.4,2.8,80.3,23.3,28.3,2.44,3.02,27.7,1.6,63.9,81883,92.7,60.5,103201,11.1,7.2,3.8,0.9,4.3,7.8,8.9,7.2,224140,90408,142785,3.8,5.9,3.8,1.9,1.9,0.3,91.1,91.8,95.1 +209,6043,"Mariposa County, California",Mariposa County, California,36299,17060,79.7,1.3,51.6,3.3,3.2,83.2,29.4,NA,2.01,2.57,7.1,16.4,74.7,47907,90.5,30.9,7515,5.7,2,1.7,0.8,1.4,NA,NA,NA,86394,39798,65378,9.5,6.6,6.5,0,1.9,0,73.1,81,84.2 +210,6045,"Mendocino County, California",Mendocino County, California,34707,90709,68.3,0.9,43.9,5.4,2.2,78.9,24.1,NA,2.56,3.32,15,10.3,60.9,43320,86.2,24.9,34570,15.6,2,1.9,0.3,2.1,15.2,17.4,11.7,91472,37230,64688,6.6,9.2,8.2,5.3,5,1.7,73.5,83.8,87 +211,6047,"Merced County, California",Merced County, California,31343,285597,36,2.9,31.8,7.2,1.3,70.9,11.6,31,3.32,3.85,17.7,5.7,53.3,41758,71.9,14.8,84605,46.4,5.6,4.3,0.4,12.5,18.4,25,15.2,87129,27711,65044,4,9.6,9,4.2,4.2,1.6,69.7,88.4,88.1 +212,6049,"Modoc County, California",Modoc County, California,31521,8646,80.7,0.8,49,4.7,4.3,80.8,31,NA,2.48,3.11,5.9,13.6,77.3,36292,87.9,23,3264,10.5,1.3,0.4,0,3.3,NA,NA,NA,74476,30660,56648,11.4,6.1,9.8,22.4,12.6,1.7,68.4,84.1,82.7 +213,6051,"Mono County, California",Mono County, California,46048,13169,74.1,0.1,40.3,5.2,0.9,81.6,16.4,NA,2.3,2.79,23.7,10.7,69.2,49825,89.6,34.3,5521,15.7,2.1,0.7,1.5,3.3,NA,NA,NA,115814,49271,86953,6,2.2,11.6,6.8,4.6,0,83.6,94.8,91.1 +214,6053,"Monterey County, California",Monterey County, California,37063,435834,36.5,2.2,35.3,6.6,2,74,14.5,25.4,3.16,3.64,26.2,4.3,52.3,45690,73.3,27.9,132046,44.8,3.8,4.8,0.8,10.3,12.6,18,10.8,128334,39523,94486,4.5,5.1,9.9,2.9,3.5,1.5,77.7,93,93.1 +215,6055,"Napa County, California",Napa County, California,47432,136070,60.1,1.9,42.8,4.6,2.7,80.1,20.6,24.9,2.66,3.22,18.7,7.1,64.4,59276,84.7,38.5,49663,22.7,4.1,4.3,0.3,5.2,8.4,9.8,8.6,154011,57795,108970,5.4,4.9,5.7,5.7,4.1,0.5,85.2,91.4,93 +216,6057,"Nevada County, California",Nevada County, California,40174,102452,85.7,0.3,50.3,4,2.9,82.9,28.9,24.4,2.41,2.9,10.7,4.9,74.4,50410,95.1,39.5,41873,5.7,2.8,1.2,0.8,0.9,10.6,10.9,10.7,117745,49935,84905,8.5,4.7,5.2,1.8,3,0.4,87.6,90.3,91.8 +217,6059,"Orange County, California",Orange County, California,46430,3164063,46.4,1.6,39.1,5.4,2.1,78.7,15.8,27,2.9,3.4,34.3,2.7,56.4,59169,86.9,43.4,1074654,22.3,6.5,17.6,1.6,7.9,9.5,10.9,9.9,152475,52816,113702,3.6,5.1,6.8,2.7,3.5,0.9,88.6,94.2,94.4 +218,6061,"Placer County, California",Placer County, California,53071,412435,72.5,1.7,42.4,5,2.6,78,20.2,27.7,2.62,3.1,14.4,2.8,74.3,71742,94.9,42.9,155422,7.5,6.1,4.9,0.7,2.1,6.7,6.4,7,147894,56902,114678,7.7,4.1,3.4,3.1,2.7,0.5,89.8,92.8,93.6 +219,6063,"Plumas County, California",Plumas County, California,39230,19607,87.1,1.4,52.1,4.3,2.8,82.5,29.8,NA,2.39,2.96,8.4,13.3,74.8,48113,94,20.5,8055,4.8,1.5,0,0.1,1,NA,NA,NA,93296,41604,64946,11,9.1,5,4.1,4.8,0.1,76.5,85.6,83.5 +220,6065,"Riverside County, California",Riverside County, California,37929,2449909,42.2,6.5,36.7,5.9,1.7,75.6,15.1,33.8,3.17,3.65,16,8.1,68.9,48434,83.3,25.1,762234,35.1,2.9,5.6,1,6.4,11.1,14.1,10.6,115609,37162,89672,6,6,8,3.1,4,1.2,83.9,92.4,92.7 +221,6067,"Sacramento County, California",Sacramento County, California,42351,1584047,47.2,9.5,37.2,6,1.8,76.9,14.9,27.7,2.74,3.36,25.4,2.4,58.6,53678,88.4,33.3,568223,13.6,8.7,10.6,1.3,6.2,12.6,16.1,10.5,114458,41989,88724,5.7,6.1,5.1,1.8,2.7,0.6,85.1,92.6,93.3 +222,6069,"San Benito County, California",San Benito County, California,44611,66056,45.1,1,35.9,6.4,1.4,74.5,13.5,36.1,3.25,3.63,10.2,3.5,67.4,54046,83.2,22.4,20188,39.2,2.1,2.8,0.3,8.1,7.8,10.7,8.2,138189,43524,108289,4.2,5.9,6.3,3.7,2.7,0.9,83,94.2,94.3 +223,6071,"San Bernardino County, California",San Bernardino County, California,36178,2187816,39.1,8,34.4,6.5,1.3,74.2,12.3,32.5,3.21,3.66,20.5,5.4,61.5,46837,82.1,22.9,668004,36.8,2.4,7,1.4,6.3,13.6,18.2,12.3,105546,33180,82184,4.9,6.7,8.5,3.8,4.5,1.3,81,92.9,92.1 +224,6073,"San Diego County, California",San Diego County, California,45463,3282782,53,4.7,37.1,5.7,1.8,78.9,15,25.9,2.74,3.31,35.3,3.5,54.5,58265,89,42.1,1159822,23.5,4.8,9.2,1.9,5.9,10.4,12,9.4,136236,49891,102285,7.6,5.9,6.8,2.8,3.8,1,87.7,93.5,94.2 +225,6075,"San Francisco County, California",San Francisco County, California,69260,836321,40.5,5.1,39.7,4.2,2.6,86.3,17.2,31.2,2.24,3.02,67.1,0.2,38.5,90175,88.8,60.1,362650,10.5,8.7,24.6,1.3,10.8,10.6,8.2,16.4,204625,90285,141446,2.6,5.4,3.5,1.3,2,0.8,87,93.2,92.3 +226,6077,"San Joaquin County, California",San Joaquin County, California,38674,787416,37.1,7,35.2,6.6,1.5,73.5,13.3,34.6,3.19,3.69,16.3,3.1,61.5,50385,80.4,21.6,241373,27,6,10.8,1,8.1,12.6,16.5,11.1,114559,36192,88531,4.4,6.9,6.4,1.7,3,1,78.4,92.5,91.3 +227,6079,"San Luis Obispo County, California",San Luis Obispo County, California,40720,281486,72.4,1.1,40.2,4.4,2.3,82.4,21.6,NA,2.45,2.94,18.3,7.4,61.9,53414,91.8,39.2,108897,12.3,2.6,2.6,0.8,2.2,12.8,12.7,6.8,126122,49581,93398,6.6,4.9,5.8,4,3.3,0.6,87.5,91.3,92.4 +228,6081,"San Mateo County, California",San Mateo County, California,63325,745100,40.7,2.2,40.6,5.2,2.4,80.1,17.3,27.3,2.77,3.3,33.5,1.2,59.1,81157,90.3,53.1,264424,15.9,9.1,22.3,1.3,7.9,6.5,6.3,8.6,226660,81980,156000,3.1,4.3,3.9,2,2.3,0.9,89.3,94.1,95.2 +229,6083,"Santa Barbara County, California",Santa Barbara County, California,38787,443975,54.3,1.7,34.5,6.1,2.4,77.6,16.2,NA,2.83,3.39,30.4,4.5,52.9,50559,82.1,35.9,148960,29.5,4,4.1,1.1,6.4,13.8,15.5,9.3,137063,46679,95977,5,5.6,9.2,4.2,4.1,1.1,83.9,91.5,92.1 +230,6085,"Santa Clara County, California",Santa Clara County, California,62532,1903297,33.2,2.4,37.9,5.3,2,79,14.4,27,2.85,3.34,34.1,2.9,55.3,86715,89.3,55.9,654467,15.9,12.4,29.1,1.7,10.4,6.9,6.4,9.1,219664,77018,159674,2.7,4.2,4,1.4,1.8,1.1,90.7,94.7,95.1 +231,6087,"Santa Cruz County, California",Santa Cruz County, California,43988,266021,62.8,1,39.6,4.5,2,81.2,18.3,26.6,2.6,3.12,20.9,7.1,60,59971,88.5,43.6,96873,22.4,5.1,3.4,0.9,4.4,11.2,11,9.1,153085,55717,109266,4,5.4,5.3,1.9,2.3,0.8,86.1,91.6,93.5 +232,6089,"Shasta County, California",Shasta County, California,35503,181554,80.2,0.9,41.7,5.5,2.5,78.3,21.2,NA,2.49,3.05,16.3,10.9,65.4,46864,92.1,23.3,71473,4.8,2.1,2,0.3,1.1,13,13.9,10.4,96355,38746,71931,9.1,5.7,6.7,2.9,4.9,0.2,79.3,87.8,89.5 +233,6091,"Sierra County, California",Sierra County, California,31696,2731,90.4,0.3,56,0,1.6,87.2,34.5,NA,2.18,2.87,6.2,2.2,78.3,50536,91.4,24.4,1206,6.7,1.8,0,0,0,NA,NA,NA,89329,40612,60000,7.1,0,12.4,NA,12.9,0,70.7,69.7,74 +234,6093,"Siskiyou County, California",Siskiyou County, California,31315,43834,79.4,1.7,47.4,4.8,2.5,79.9,27.2,20.3,2.27,2.88,13.2,10.9,69.7,37410,91.1,23.1,18907,6,1.8,1.3,0.5,1.1,16.6,20.1,11.5,76699,34074,55499,10.4,7.3,6.4,5.4,4.2,0.3,74.8,83.4,86.3 +235,6095,"Solano County, California",Solano County, California,45137,450824,42.7,12.9,39.1,5.8,1.8,77.9,16.9,31.8,2.83,3.35,20.7,2.7,63.2,57702,88.9,28.4,155800,17.9,3.2,11.8,0.8,5.3,9.7,12.2,8.2,124288,44139,99994,8.3,5.7,4.9,2.5,3,0.7,84.9,92.5,93.1 +236,6097,"Sonoma County, California",Sonoma County, California,48308,485642,64.5,1.6,42.7,4.7,2.4,80.7,21,25.3,2.5,3.05,21,4.8,62.2,57092,88.9,37.8,190498,17.2,4,3.1,0.7,4.2,8.6,9.3,8.4,138572,54941,102840,5.2,4.8,5.4,2.5,3.2,0.7,87.1,91.5,94 +237,6099,"Stanislaus County, California",Stanislaus County, California,36126,552250,50.1,2.8,34.8,6.8,1.7,73.1,13.6,30.9,3.1,3.6,15.1,4.4,61,48135,80.1,19.1,176457,35.4,5.7,3.4,2,7.4,13.1,17,12.6,102442,33653,79661,4.4,7.4,6,2.4,2.8,0.7,75.4,91.8,91 +238,6101,"Sutter County, California",Sutter County, California,34285,98971,50.3,1.7,36.4,6.3,2.1,74.6,16.1,NA,2.95,3.5,18.4,4.6,59.2,44169,78.8,20.2,33240,21.2,11.2,3.1,0.4,7,14.8,19.8,12.1,101655,34330,75450,6.6,6.7,6,3.7,2.5,1.4,74.9,88.6,88.5 +239,6103,"Tehama County, California",Tehama County, California,33015,65520,69.3,0.9,40.1,5.9,2.1,75.9,20,NA,2.63,3.15,11.7,16.2,67.6,45975,86.3,18.8,24526,16.8,0.9,0.9,0.2,2.4,15.4,20.4,13.5,92809,35527,61834,7.3,6.2,6.4,1.4,4.1,0.6,72.4,88.2,86.1 +240,6105,"Trinity County, California",Trinity County, California,30470,15886,80.5,0.9,54.8,4.3,2.8,81.7,29.3,NA,2.9,3.84,4.2,17,73,40972,94.8,18,5373,1.2,3,0.4,0,0.4,NA,NA,NA,80934,32271,53498,9,6.4,12.4,9.5,14.1,0.7,67.3,76.6,79.2 +241,6107,"Tulare County, California",Tulare County, California,31326,475774,42.6,1.5,31.9,7.4,1.3,69.9,11.7,23.3,3.31,3.7,14.7,6.1,58.6,39994,74.4,15.8,142026,48.3,2.1,2.2,0.6,12.6,17.8,24.1,13.3,90157,27550,69489,4.3,8.6,8,2,2.5,1.4,72.2,91,87.8 +242,6109,"Tuolumne County, California",Tuolumne County, California,37688,54873,82.6,1.7,48.8,4.4,3.2,82.8,27.7,31.2,2.26,2.83,10.7,9.9,74.1,44146,93.5,23.9,22809,4.9,2.6,0.9,0.4,0.5,10.7,10.1,7.5,97299,41372,72259,10.4,7,5.8,5.7,4.7,0.6,75.8,86.3,88.2 +243,6111,"Ventura County, California",Ventura County, California,42693,838259,58.6,1.8,39.4,5.4,2.2,77.8,16.9,26,2.97,3.46,20.9,4.1,64.2,54094,85.3,35.7,278045,27.8,4.5,5.3,1,5.8,9,12.3,8.4,141716,48416,107327,5.2,5.2,7.9,2.7,3.6,0.6,84.5,91.5,93.1 +244,6113,"Yolo County, California",Yolo County, California,40567,217782,54.8,2.7,32.3,5,1.6,79.5,13.3,23.7,2.72,3.24,29.7,4.3,53.6,57545,88.4,44.1,76640,22.4,7,9.3,0.9,5.5,16.3,12.2,11.2,122086,43607,88818,3.8,4.5,4.6,1.4,2.3,1.2,84.5,92.4,91.7 +245,6115,"Yuba County, California",Yuba County, California,35459,83079,60.5,3.7,33.9,7.3,1.1,72.7,13.1,31.2,2.91,3.44,17.5,7.4,63.3,49749,84.7,17.9,28063,17.1,2.8,5.4,0.5,3.1,15.3,20.7,9.5,93604,32854,73313,8.9,6.6,6.9,5.5,5.4,0.6,78.6,90.4,91.5 +246,8001,"Adams County, Colorado",Adams County, Colorado,44696,524408,60.2,3.5,34.6,6.5,0.9,74.6,11,29.7,2.82,3.38,22.3,5.9,68.9,53838,85,28,184964,23.1,3,3,0.8,4.5,9.4,13.3,8.6,112415,40167,91387,6.2,4.1,11.1,3.7,5.9,2,83,92,92.1 +247,8003,"Alamosa County, Colorado",Alamosa County, Colorado,27524,16515,61.6,1.8,33.1,5.8,1.9,76.4,14.8,NA,2.37,2.99,23.7,10,56.4,37261,89.1,29.3,6570,25.5,2,0.7,0.1,1.9,NA,NA,NA,73926,29622,51445,4.1,1.9,6.4,1.4,1.5,0,72,87.5,89.7 +248,8005,"Arapahoe County, Colorado",Arapahoe County, Colorado,49109,655709,61.9,10.8,37.3,5.8,1.5,77.1,14,27.3,2.56,3.16,30.9,0.8,65.1,58192,92,45.7,253890,12.3,4.7,4,3.2,4.4,8.5,11.5,6.9,132105,51942,97215,7,4.3,9,5.3,6.4,1.2,88.1,93.7,94.2 +249,8007,"Archuleta County, Colorado",Archuleta County, Colorado,39066,13730,80.4,0,52.2,3.8,2.2,82.8,27.7,NA,2.3,2.71,7.5,11.9,77.5,41705,95.3,40.7,5904,6.1,0.9,0.3,0.2,0.6,NA,NA,NA,97641,43049,76524,10.2,1.8,11.5,10.5,8.8,0,79.3,88.2,89.3 +250,8009,"Baca County, Colorado",Baca County, Colorado,25241,3460,89.9,0.3,43,5.2,4,77.7,25,12.2,2.12,2.92,10.6,12.6,71.9,35819,85.8,24.1,1593,2.3,1.1,1.3,0.2,0.4,NA,NA,NA,61863,28598,40380,6.7,1.2,7.7,1.4,3.4,1.3,76.4,85.7,82.3 +251,8011,"Bent County, Colorado",Bent County, Colorado,24909,5524,70.2,3.5,41.7,4,2.7,83.8,18.8,NA,2.21,2.86,7.3,9.4,66.1,32923,81.2,14.2,1875,8.6,2.4,0.9,0,0.3,NA,NA,NA,58522,20360,49194,5.9,4.8,8.2,0,1.7,0,68.7,85,83.4 +252,8013,"Boulder County, Colorado",Boulder County, Colorado,47378,328317,80.7,0.8,37.5,4,1.8,82,15.8,NA,2.33,2.92,30.2,2.3,62.5,64758,95.5,63.9,135230,8.5,5.1,3.1,0.6,1.8,11.4,7.5,7.1,144869,60272,102772,4.4,4,4.4,1.3,2,0.5,92.2,94.1,95 +253,8014,"Broomfield County, Colorado",Broomfield County, Colorado,61340,75110,78.9,1.3,38.8,4.6,2.2,78.9,15.1,NA,2.42,3.02,30.9,2.1,62.6,73311,96.1,58.6,30921,6.7,4.5,4.5,1.3,1.1,NA,NA,NA,152217,62948,121025,6.1,3.3,4.8,3.8,3,0.4,93.8,94.8,96 +254,8015,"Chaffee County, Colorado",Chaffee County, Colorado,40112,19876,88.8,1.1,47.6,3.9,2.7,85.4,25.8,17.3,2,2.48,6.9,6.7,72.9,43283,94.6,45.4,9195,3,2.6,0.8,0,0.8,NA,NA,NA,100353,43357,70909,6.4,4.2,7.3,0,1.5,0.7,85.1,89.6,86.5 +255,8017,"Cheyenne County, Colorado",Cheyenne County, Colorado,40875,1732,83.4,1.1,43,4,1.3,77.2,19.9,NA,2.25,2.83,2.9,8.3,72.7,45759,91.7,24.4,751,8.3,2.3,0,0,3.3,NA,NA,NA,86295,38468,67768,7.4,2.3,8,3.8,10.5,0,84.2,90.8,88.8 +256,8019,"Clear Creek County, Colorado",Clear Creek County, Colorado,53464,9358,88.8,1.4,49.2,2.8,1.4,85.8,22.1,27.4,2.05,2.7,12.6,5.2,82.6,60181,94.6,56.3,4512,4.8,1.6,0.6,0.3,0.6,NA,NA,NA,136058,65848,96667,5.6,4,6.9,0,0,0,90.6,87.9,92.1 +257,8021,"Conejos County, Colorado",Conejos County, Colorado,31103,7536,61.4,0.2,38.8,6.1,2.1,74.6,20.4,22.9,2.4,3.24,4,20.4,74.5,35077,89.1,23.3,3112,41.8,1.4,0.9,0.2,8.3,NA,NA,NA,66821,28155,47209,7.5,4.2,13.5,7.8,10.6,0.7,67.2,82.6,80.4 +258,8023,"Costilla County, Colorado",Costilla County, Colorado,27325,3571,52.4,3.5,50.7,4.8,0.9,81.2,27.5,NA,2.26,2.87,5.5,18.7,78.5,33214,89.7,27.8,1574,39.2,0.4,0.4,0,6.2,NA,NA,NA,57688,27976,36519,11.8,4.3,8.3,0,2.2,0,66.6,88.5,83.5 +259,8025,"Crowley County, Colorado",Crowley County, Colorado,24943,5734,67,6,39.6,2.5,2.1,86.5,14,NA,3.14,4.07,9.1,19.3,65.8,40076,82.9,12.7,1333,9.2,0.8,3,0,1.3,NA,NA,NA,57856,19316,47563,6.9,5,7.7,1.1,0.2,0,68.5,80.5,81 +260,8027,"Custer County, Colorado",Custer County, Colorado,37844,5073,93.8,0,58.6,1.8,2.1,85.6,30.4,35.9,2.06,2.53,3.8,8.5,85.7,51929,96.5,35.3,2448,2.2,0.5,0,0,0.3,NA,NA,NA,90623,43529,72700,9.1,6.9,7.8,0,18.1,0,78.5,86,80.4 +261,8029,"Delta County, Colorado",Delta County, Colorado,31690,31353,86.7,0.8,48.4,4.5,3,80.7,27.8,26.3,2.39,3.05,6.8,14,76.4,43474,91,25.7,12648,6.6,1,1.2,0.2,0.8,NA,NA,NA,82168,35746,58330,9.9,3.3,11,0.9,7.6,0.6,75.5,77.6,79.9 +262,8031,"Denver County, Colorado",Denver County, Colorado,54395,713734,62.9,8.8,35.2,5.5,1.4,81.7,12.3,25.4,2.12,2.98,48.1,0.4,49.1,63536,91.4,55.6,329578,14,3.8,2.4,1.7,3.1,11.2,14.9,11.5,131349,61202,91681,4.7,4.3,8.8,2.8,5.3,1.1,85.9,93.7,92.2 +263,8033,"Dolores County, Colorado",Dolores County, Colorado,36486,2385,79.5,0,57.2,5.2,2.5,86,37.2,NA,1.93,2.24,6.7,25.9,84.1,50047,96.2,24.7,1238,17,1.5,0,3.3,0,NA,NA,NA,89770,42092,70490,13.4,2.4,6.7,0,5.2,1.1,79.2,88.9,74.4 +264,8035,"Douglas County, Colorado",Douglas County, Colorado,65074,368283,81.7,1.4,39.5,5.4,1.2,76,13.4,27.2,2.7,3.1,19,0.3,77.8,81223,98,60.9,136130,5.4,4.4,3.4,0.6,0.8,3.2,2.5,3.8,177521,66810,145737,7.7,3.2,3.7,2.2,2.9,0.6,94.8,96.1,97.7 +265,8037,"Eagle County, Colorado",Eagle County, Colorado,50069,55374,72,0.9,39.3,4.8,0.5,79.2,14.3,22.6,2.64,3.14,33,8.8,67.6,52057,93.2,50.3,20911,18.2,4.6,0.9,0.7,4.5,8.3,9.8,4.1,157411,62607,103174,4.8,4.6,10.1,2.2,5.2,0.3,85.4,95.3,95.1 +266,8039,"Elbert County, Colorado",Elbert County, Colorado,53109,27152,85.7,0.5,44.8,4.7,1.6,78.9,18.1,NA,2.81,3.05,0.5,2.4,94.4,71977,96.8,35.2,9657,4.5,1.2,0.2,0.1,0.3,NA,NA,NA,156236,57481,129477,10.7,2.9,4.6,2.1,3.1,0.2,89.1,93.1,94.2 +267,8041,"El Paso County, Colorado",El Paso County, Colorado,43590,736008,72.6,5.9,35,6.2,1.4,76.6,13.7,NA,2.52,3.03,21.3,2.9,66.4,53219,95.1,41.1,283174,9,3.2,2.4,0.6,1.5,8.5,10.3,6.9,113043,44250,87470,15.8,5,7.1,4.3,4.7,0.3,88.8,93.2,94.4 +268,8043,"Fremont County, Colorado",Fremont County, Colorado,32259,49394,86.8,3.8,44.9,3.8,2.3,84,22.4,NA,2.34,2.93,12.3,13.4,76.2,41791,90.6,21,17695,2.1,1.3,0.9,0.2,0.5,14,16.4,10.9,82233,30201,61027,11.2,4.5,5.9,4.4,3.3,0.5,79.1,84.8,84.3 +269,8045,"Garfield County, Colorado",Garfield County, Colorado,42418,62034,72.5,0.6,37.2,6.6,1.4,75.1,14.2,NA,2.64,3.17,19.3,12.6,69.7,49826,88.4,33.4,23071,22.9,2.4,0.7,0.4,5.1,9.1,10.2,8.7,110409,42253,86172,5.7,2.8,17.9,11.6,14.5,0.3,81.8,91.6,92.2 +270,8047,"Gilpin County, Colorado",Gilpin County, Colorado,53554,5877,88.4,1.1,48.7,4.6,1.8,84.3,20.1,NA,1.88,2.49,5.8,1.9,79.6,58158,94.1,48.4,3076,3.8,6.2,0.6,0.3,0.3,NA,NA,NA,118680,58842,88654,8.3,3.1,7.4,0,2.3,0,93.3,85.9,89.4 +271,8049,"Grand County, Colorado",Grand County, Colorado,43370,15794,81.2,0.4,45.5,4.1,0.8,83.9,20,22.7,2.4,3.03,16.7,5.3,76.4,47026,94.4,41.8,6460,3.5,1.2,0.1,0.1,0.8,NA,NA,NA,110584,49770,84558,7.5,4.6,13.2,10.3,6.4,0,87.2,90.7,92.8 +272,8051,"Gunnison County, Colorado",Gunnison County, Colorado,40863,17158,89.6,1.1,37,2.9,0.9,84.3,14.5,19.9,2.04,2.57,26,6.3,66.9,46144,98.3,59.3,7903,6,1.8,0.2,0.2,0.2,NA,NA,NA,102255,47042,77358,4.6,2.7,6.2,0,1,0.7,85.3,95.4,93.3 +273,8053,"Hinsdale County, Colorado",Hinsdale County, Colorado,42250,939,86.9,2,54.8,1.6,0.6,86.4,34.4,NA,1.98,2.33,10.4,6.6,79.7,42292,100,47.1,473,2.5,1.5,0,0,0,NA,NA,NA,89073,46490,64327,8.9,1.8,10.6,0,7.3,0,92.6,90.9,93.7 +274,8055,"Huerfano County, Colorado",Huerfano County, Colorado,30874,6946,85.1,0,55.1,5.2,2.4,84,34,NA,2.39,3.08,8.3,9.8,77.3,34389,92.9,27.1,2836,10.6,0,1.3,0,1.2,NA,NA,NA,83426,36275,52139,9.8,12.9,4.2,3.2,1,0.4,74.8,84.8,77.7 +275,8057,"Jackson County, Colorado",Jackson County, Colorado,27636,1422,89.7,1.1,51.5,2.3,2.6,80.9,32.7,NA,2.21,2.67,0.5,23.5,73.2,28482,84.4,27.5,634,2.5,0,0,0,0,NA,NA,NA,77824,34068,41809,17.4,8.6,7.5,0,7.5,0,70.2,76.7,83.3 +276,8059,"Jefferson County, Colorado",Jefferson County, Colorado,54103,579715,82,1.1,40.4,4.8,1.9,81.1,17.4,26.6,2.38,2.91,25.3,1,70.6,65291,95.5,50.7,240031,7.1,2.7,2.1,0.4,1.1,6.7,6.8,6.8,137752,58142,107800,6.8,3.6,5.2,2.4,3.7,0.6,89.9,92.6,94.4 +277,8061,"Kiowa County, Colorado",Kiowa County, Colorado,36417,1356,93.2,0,43.9,3.7,2.8,77.8,21.7,NA,2.3,2.94,7.5,10.8,69.7,44063,90.9,20.6,574,5.6,0.2,0,0,3,NA,NA,NA,73510,31339,56389,4.2,0,7,2.9,1,0,81.4,80.3,84.5 +278,8063,"Kit Carson County, Colorado",Kit Carson County, Colorado,37231,7015,80.6,0.1,39,6.4,3.3,74.1,19.9,16.2,2.37,3.08,10.2,9.3,68.3,46570,89,18.4,2914,12,0.3,0.1,0,3.6,NA,NA,NA,89493,37807,59810,7.5,2.9,10.8,6.2,10.4,0.4,74.7,85.3,88.7 +279,8065,"Lake County, Colorado",Lake County, Colorado,48183,7411,67.7,0.1,36.9,4.8,0.3,80.7,13.2,27.2,2.46,3.26,13.5,12.4,76,58183,91.9,46.1,2959,14.9,1,1.5,0.4,0.3,NA,NA,NA,108464,49180,93655,7.5,2.5,13.3,0,6.3,1.8,72.7,88.3,89.4 +280,8067,"La Plata County, Colorado",La Plata County, Colorado,43046,56088,83.4,0.2,42.3,4.2,1.5,82.1,20,NA,2.34,2.86,16.2,13.8,71,50207,96.4,47.3,23200,8.3,1.9,1,1.7,0.9,12.4,19.6,6,106437,45717,85296,7.1,2.6,9.5,10.7,7.3,0.3,85.6,93.6,88.2 +281,8069,"Larimer County, Colorado",Larimer County, Colorado,44002,363561,84.1,1,36.6,4.5,1.8,81.3,16.9,23.3,2.33,2.84,24.2,3.3,64.3,58023,96.6,51.7,151571,6.7,2.4,1.4,0.4,0.8,11.1,8.5,7.1,118812,49323,91364,6.3,3.8,5.7,3.6,3.8,0.4,91,93.6,92.7 +282,8071,"Las Animas County, Colorado",Las Animas County, Colorado,31611,14392,71.5,1.7,46.5,4.6,1.9,81.7,25.6,NA,2.03,2.58,11.8,8.4,70.1,39467,89.6,17.3,6701,13.3,1,1.6,0,1.4,NA,NA,NA,67905,30623,50408,9.9,6,8.5,4.6,2.8,0.4,71.3,82,85.4 +283,8073,"Lincoln County, Colorado",Lincoln County, Colorado,34287,5561,83.6,5.7,40.7,4.4,3.6,82.3,17.8,NA,2.22,2.95,11.8,9.2,71.1,44853,88.1,25.7,1970,2.1,0.1,0.1,0,0.1,NA,NA,NA,81465,29350,54257,6.6,2,7.9,14.5,6.4,0,73.2,83.2,77.4 +284,8075,"Logan County, Colorado",Logan County, Colorado,32721,21067,82.8,1.6,39.1,4.8,1.7,81.7,18.6,15.8,2.33,3,11.7,9.6,68.3,38117,89.4,18.9,8148,6.5,0.9,2.4,1.2,0.5,NA,NA,NA,73188,29538,55074,8.3,4.6,8.8,2.1,4.6,0,73.8,83.7,85.5 +285,8077,"Mesa County, Colorado",Mesa County, Colorado,36651,157316,84.7,0.6,40.8,5.2,2.5,79.1,20.4,NA,2.37,2.92,15.4,8.3,71.9,45519,92.4,30.6,64559,6.2,1.5,0.8,0,0.5,11.2,13.3,9.8,92470,38589,71485,9.3,4.6,9.8,2.8,6.1,0.2,82.5,89.1,91.9 +286,8079,"Mineral County, Colorado",Mineral County, Colorado,29750,799,90.9,0,53.7,3.5,1,87.5,29.7,NA,1.82,2.4,3.5,13.4,73.7,24783,97.8,54.5,434,0.9,1.4,0,0,0,NA,NA,NA,77895,41950,52455,10.8,6.3,15.6,37.5,12,0,74.2,92.9,91.9 +287,8081,"Moffat County, Colorado",Moffat County, Colorado,39076,13258,85.1,0.1,37.9,5.8,1.3,74.8,16.1,21.9,2.47,3,11.4,19.1,72.1,46364,91.5,21,5303,9.8,1.8,0.7,0.1,2.2,NA,NA,NA,84978,35380,70975,8.6,4.4,8.9,10.1,4.9,0,72.7,87.8,85.9 +288,8083,"Montezuma County, Colorado",Montezuma County, Colorado,32891,26204,77.8,1.2,44.5,5.1,2.6,79.1,23.9,21,2.37,2.91,11.1,17.9,74.8,40990,91,30.8,10915,6.2,1.8,1.1,5.3,2.9,NA,NA,NA,82262,34667,63005,9,4.1,11.4,27.2,17.5,0.6,78.2,84.9,82.1 +289,8085,"Montrose County, Colorado",Montrose County, Colorado,34114,43272,81.4,0.3,45.7,4.7,2.5,79.5,25.3,NA,2.43,2.96,9.3,19.3,74.6,42820,91,28.3,17529,14.2,1.1,0.5,0,2.9,NA,NA,NA,86915,36936,66072,8.7,3.7,12.9,6.9,13.5,0.1,80.8,82.2,84.9 +290,8087,"Morgan County, Colorado",Morgan County, Colorado,36546,29186,70.4,3.1,36.9,6.9,1,73.8,15.8,22.4,2.59,3.17,13.3,11.5,65.1,46018,84.6,17.6,11033,18.4,1.7,1.1,2.7,4.8,NA,NA,NA,85441,31867,75407,6.4,4.1,10.8,8.6,9.4,0.3,68.6,87.8,90.8 +291,8089,"Otero County, Colorado",Otero County, Colorado,32124,18460,71,1,40.9,5.8,3.6,76.6,21,21.3,2.35,2.96,12.3,8.5,68.9,37345,89.2,18.8,7643,17.9,0.7,0.2,0.2,2.4,NA,NA,NA,68583,28634,54897,8.7,4,7.1,0,2.7,0,68.3,82.1,85.4 +292,8091,"Ouray County, Colorado",Ouray County, Colorado,43695,5024,89.9,2,55.6,2.3,1.2,87.4,35.5,NA,2,2.43,16.3,6,78,47282,97.3,54,2514,5.1,3.4,0.3,0.2,0,NA,NA,NA,109038,53914,84556,11.3,3.7,14.3,1.5,6.3,0,90.5,91.6,92 +293,8093,"Park County, Colorado",Park County, Colorado,50273,17739,90.8,0.8,51.7,3.1,0.7,85.3,22.8,NA,2.09,2.42,3.6,4.1,87.4,58314,97.3,38.8,8447,1.9,2.2,0.6,0,0.2,NA,NA,NA,113500,53396,95450,9.5,3.8,7,7.4,3.3,0,84.7,90.4,91.3 +294,8095,"Phillips County, Colorado",Phillips County, Colorado,41994,4491,81.7,0,40.3,7.8,3.7,74,18,20,2.37,3.12,6.1,5.1,74.9,47188,90.5,25.7,1859,23.5,1,0.3,0,6.1,NA,NA,NA,99893,43285,60372,8.2,0.5,5.5,0,2,0.7,78.1,77.7,81.5 +295,8097,"Pitkin County, Colorado",Pitkin County, Colorado,59427,17119,86.2,0.5,47.3,3.7,1.9,85,21.6,NA,1.88,2.57,42.4,6.8,67.5,59287,97,64,9031,9.2,5.8,1.5,0.5,2.8,NA,NA,NA,200851,105096,100318,4.6,1.7,4.5,0,1,0,91.8,93.9,92.4 +296,8099,"Prowers County, Colorado",Prowers County, Colorado,31129,11931,70.4,0.7,38.5,6.5,2.7,74.3,18.6,14.2,2.53,3.12,13.5,12.7,70.3,40931,84.7,18.8,4564,21.6,0,0.2,0.1,5.3,NA,NA,NA,84132,32128,57601,9.4,4.6,10.1,2.3,4.8,1.7,62.6,83.6,83.5 +297,8101,"Pueblo County, Colorado",Pueblo County, Colorado,35447,168726,74.5,2.1,40.4,5.4,2.3,78,19.4,NA,2.41,3.04,14.7,4.9,68.3,46342,90.5,25,67816,13.8,1.3,0.5,0.3,1.4,15.4,19.5,12.3,82275,33716,62250,8.9,5,5.7,1.2,2.4,0.2,74.3,87.4,86.5 +298,8103,"Rio Blanco County, Colorado",Rio Blanco County, Colorado,39869,6518,85.5,0.1,39.1,6.4,1.4,75.5,16.9,NA,2.4,3.01,9,8.6,75.9,47141,93.2,26.6,2587,6.4,3.7,0,0,1.5,NA,NA,NA,80991,33375,72620,10.3,4.9,9.6,33.4,13.1,1.6,83.1,90.7,94.4 +299,8105,"Rio Grande County, Colorado",Rio Grande County, Colorado,34963,11394,74.5,0.4,43.2,5.1,2.3,79.6,22.1,21.1,2.22,2.63,15,12.9,68.4,46916,89.3,31.1,5032,22.1,0.9,0.1,0.1,4.1,NA,NA,NA,86169,40132,62166,6.5,7.4,13.8,5,12.4,0.9,74.7,85,80.7 +300,8107,"Routt County, Colorado",Routt County, Colorado,53540,24990,85,0.2,42.6,4.1,1.8,82.5,17.6,19.8,2.31,2.72,20.8,7.5,75.9,56553,96.5,52.1,10619,6.8,3.3,0.3,0.1,1.1,NA,NA,NA,148388,65003,104803,5.3,2.3,8,13.5,7.4,0.3,87.5,92,91.9 +301,8109,"Saguache County, Colorado",Saguache County, Colorado,31681,6511,76.5,0.7,49.8,5.9,1.8,81.5,26.5,NA,1.99,2.47,5.8,16.6,75.1,35722,88.3,30.7,3261,25.1,2.8,1.7,0,3.4,NA,NA,NA,81741,39711,54283,10.6,7.5,11,0,8.3,1.8,73,82.8,85.7 +302,8111,"San Juan County, Colorado",San Juan County, Colorado,44583,690,87.5,0,42.2,2.8,1,88.7,20.7,15.2,1.91,2.27,14.9,9.7,55.5,48807,100,47.2,362,16.3,2.5,0,2.5,0,NA,NA,NA,86808,46192,73889,5.1,7.4,12.5,0,0,0,96.1,92.5,83.4 +303,8113,"San Miguel County, Colorado",San Miguel County, Colorado,48607,8026,89.6,0.7,42.7,3,1.8,84,17.3,16.4,2,2.62,43.1,3.4,65.2,53922,98.3,65.2,3998,12.6,3.9,0.3,0.6,4.2,NA,NA,NA,131344,64164,80117,5.5,4,10.8,2.3,6.7,0,87.9,91.2,88.4 +304,8115,"Sedgwick County, Colorado",Sedgwick County, Colorado,33339,2346,84.8,0.9,42.9,8,2.6,78.1,24.5,NA,2.3,3.02,12.8,1,72.3,40450,91.2,27.4,1000,9.2,1.7,1.7,0,2,NA,NA,NA,77564,34866,52833,9.6,2.8,8.3,3.8,4.3,0,78.9,85.5,86.5 +305,8117,"Summit County, Colorado",Summit County, Colorado,50935,30857,79.5,0.4,39.2,3.6,0.6,83.6,15.4,21.2,2.46,2.91,28.5,2.4,69.2,53755,94.9,52.5,12347,6.7,1.7,0.3,0,3.3,NA,NA,NA,138554,58219,106255,5.7,3.2,10.2,3.7,2.8,2.3,88.9,98,97.1 +306,8119,"Teller County, Colorado",Teller County, Colorado,41992,24774,87.5,1,52,3.2,1.7,84,24.2,NA,2.19,2.61,8.2,5.1,82.2,49936,96.2,37.8,11253,3,2.3,0.1,0.3,0.2,NA,NA,NA,103056,46242,80666,17.2,3.2,7,4,2.4,0.4,87.4,87.6,92.2 +307,8121,"Washington County, Colorado",Washington County, Colorado,35707,4839,88.6,1.2,41.2,4.9,3.3,77.7,21.9,NA,2.25,2.83,4.9,11.5,71.7,45417,89.7,24.9,2070,7.1,1.6,0.7,0.3,3.2,NA,NA,NA,82841,36138,65164,6.9,3.1,6.3,7.9,6,0,76.8,85.5,86.7 +308,8123,"Weld County, Colorado",Weld County, Colorado,43951,340711,76,1.4,35.2,6.8,1.2,74.3,12.7,NA,2.79,3.24,14.7,6.6,75.5,54753,88.5,32,120019,17.7,1.6,1.3,0.5,3.4,9,10.3,8.4,114623,41661,93287,6.9,4.2,8.5,3.8,4.7,0.8,84.6,92.4,91.9 +309,8125,"Yuma County, Colorado",Yuma County, Colorado,39053,9921,80,0.1,39.6,7.1,2.7,72.6,17.7,14.2,2.46,2.97,7.9,11.3,69.9,43565,83.8,26,3957,19.7,0.5,0,0,6.4,NA,NA,NA,85202,34352,60051,5.2,4.7,14.6,14.9,14.8,0.1,76.5,86.8,89.6 +310,9110,"Capitol Planning Region, Connecticut",Capitol Planning Region, Connecticut,46344,969029,65.8,12.5,40.2,5.1,2.5,79.6,17.7,23.5,2.41,3.02,34.9,0.6,65.4,60924,91.2,41.5,389086,13.9,9.4,2.9,1.3,5.2,10.3,12.9,9,122979,49924,91541,4.7,4.9,4.2,2.3,2.5,0.8,80.9,89.1,90.5 +311,9120,"Greater Bridgeport Planning Region, Connecticut",Greater Bridgeport Planning Region, Connecticut,41250,326296,59.1,12.6,40,5.4,2.2,77.7,15.8,31.1,2.68,3.29,36.5,0.3,65.4,55501,87.3,41.7,118335,22,11.9,2.8,1.7,8.8,13.2,17.8,11,134912,50592,87135,3.2,7.2,8.4,2.5,3.6,1.3,79.5,87.4,90 +312,9130,"Lower Connecticut River Valley Planning Region, Connecticut",Lower Connecticut River Valley Planning Region, Connecticut,50331,174983,82.1,5.1,45.8,4.1,2.9,83,21.6,26,2.3,2.86,23.3,0.8,75.2,65774,95.2,45.5,73624,5.5,5.7,1.5,1.4,2.4,6.9,7,6,134068,56906,101117,6,3.4,3.4,1.7,1.7,0,84.2,87.6,91 +313,9140,"Naugatuck Valley Planning Region, Connecticut",Naugatuck Valley Planning Region, Connecticut,44260,452303,67,11.2,41.9,5.1,2.5,79.6,18.7,28.4,2.5,3.09,31.5,0.8,67.6,58385,90.3,33.8,178340,14.2,8.8,2,1.3,5,10.3,14,8.5,113511,46063,86365,5.1,5.7,4.5,1.2,1.7,0.8,78.5,87.3,89 +314,9150,"Northeastern Connecticut Planning Region, Connecticut",Northeastern Connecticut Planning Region, Connecticut,44715,95829,88.6,1.8,43.9,4.6,2.1,81.4,19,NA,2.41,2.85,19.4,1.2,76.2,57024,92.1,26.2,39155,3.9,3,1.1,0.2,1.1,8.6,11.7,8,107010,44393,87564,8.3,6.1,3.7,0.5,1.2,0.1,79.4,87.2,90.2 +315,9160,"Northwest Hills Planning Region, Connecticut",Northwest Hills Planning Region, Connecticut,47348,112848,85.1,2.7,47.1,4.2,2.9,81.9,22.2,28.5,2.35,2.9,20.5,0.1,75.9,57176,94.1,39.4,47035,5.4,6.3,1.3,0.3,1.6,9.2,11.2,7.1,130654,55526,91035,6.2,5,3.9,0.5,1.9,0.2,83.4,86.8,92.1 +316,9170,"South Central Connecticut Planning Region, Connecticut",South Central Connecticut Planning Region, Connecticut,44465,566803,64,14,40.2,5,2.5,80.2,18.2,23.7,2.4,3.04,39.4,0.5,60.6,58398,91.7,41.1,227739,14.2,5.4,2.9,1.4,4.9,11.6,16.1,8.8,118110,48264,86266,4.6,5.8,5.1,2.3,3.2,0.8,80.6,89.2,91.6 +317,9180,"Southeastern Connecticut Planning Region, Connecticut",Southeastern Connecticut Planning Region, Connecticut,42962,279025,76.2,5.5,41,4.8,2.4,80.4,19,24.1,2.34,2.9,30.2,2.5,65.4,55794,92.6,34.6,114577,9.8,4.5,2.4,0.5,3.3,10.6,14.8,6.8,108630,45691,84185,8.7,5,4.5,2,2.1,0.7,80.5,88,90.6 +318,9190,"Western Connecticut Planning Region, Connecticut",Western Connecticut Planning Region, Connecticut,55296,621232,64.1,10.3,41.5,5.3,2.3,78,17,31,2.64,3.17,34.2,0.4,66.2,70621,91.7,55,232279,14.7,12.2,3.1,1.1,6.3,7.4,9.1,6.9,209168,79648,124553,3.4,5.1,7.5,3.9,4.7,1.3,87.8,91.3,94.2 +319,10001,"Kent County, Delaware",Kent County, Delaware,37404,185043,59.9,27,38.5,5.9,1.9,77.1,17.9,NA,2.58,3.1,14.3,10.4,71,47390,90.2,26.7,70053,6,4.4,1.8,1.4,2,11.3,16.3,8.1,89176,34640,72872,11.6,5.2,7,5.1,5.7,0.7,78.6,87.8,90.4 +320,10003,"New Castle County, Delaware",New Castle County, Delaware,44880,573030,56.5,25.3,39.2,5.5,1.8,78.6,16.6,25.4,2.5,3.13,22.8,2.3,68.5,57648,92.6,39.2,222943,8,4.9,3.7,2,2.8,10.2,13.5,7.3,118003,46990,89901,6.1,4.7,5.7,2,3.1,0.9,83.3,91.3,92.3 +321,10005,"Sussex County, Delaware",Sussex County, Delaware,39223,247799,75.6,10.5,51.4,4.8,2.2,81.7,29.5,NA,2.37,2.85,9.1,12.7,81.3,45171,89.6,32.6,103213,7.1,3.1,1,0.5,2.5,11.5,21.6,6,105000,44963,78162,8.8,4.8,6.9,3.3,4.3,0.3,80.3,89.6,90 +322,11001,"District of Columbia, District of Columbia",District of Columbia, District of Columbia,70144,672079,39.1,43.3,34.9,6.1,1.5,81.3,12.7,30.3,1.99,2.98,65.7,0.1,41.1,88766,92.8,63.6,321556,9,5.7,2.7,2.6,3,14.5,20.4,14.6,157604,75253,106287,3.8,6.2,3.4,2.8,2.7,0.6,85.2,92.9,90.2 +323,12001,"Alachua County, Florida",Alachua County, Florida,32735,281751,62.7,19.4,32.2,4.8,1.9,82.1,14.9,NA,2.33,3.07,36.1,6.5,54.1,47010,94.2,47.7,112776,10.7,4.7,3.7,0.9,2,19.7,15.2,10.6,92218,37981,59659,6.4,4,7.8,3.8,4.4,1.2,84.4,93.2,87.7 +324,12003,"Baker County, Florida",Baker County, Florida,36508,28186,78.2,11.7,38.1,6.4,1.3,75.8,15.1,30.2,2.81,3.2,3.8,31.4,83.2,45935,85.2,15.3,9012,2.8,0.9,0.9,0.2,0,NA,NA,NA,89095,29167,70833,7.4,4.6,10.4,8,8.7,0,75.9,87.9,88.4 +325,12005,"Bay County, Florida",Bay County, Florida,37132,181368,76.5,10,41.4,5.6,1.8,79,18.2,24.6,2.35,2.87,21.1,13.3,68.3,43937,90.8,28,76118,6.8,3.2,2,0.8,2.1,11.7,16.2,10.2,92641,38856,70188,13.8,3.3,13.8,7.2,10,0.2,79.6,92.1,91.5 +326,12007,"Bradford County, Florida",Bradford County, Florida,30416,27888,73.9,18.6,40.5,5.1,1.5,79.5,18.1,NA,2.64,3.25,6.7,31.1,70.9,41534,82.7,15,9104,1.4,1,0.3,0,0.3,NA,NA,NA,73237,25603,59740,9.1,6.5,11.3,15.4,8.8,1.1,72.2,88.4,88.1 +327,12009,"Brevard County, Florida",Brevard County, Florida,37098,620533,75.4,9.8,46.8,4.4,3,81.8,24.2,25.4,2.43,3.04,19.4,6.1,76.9,45899,93.1,33.5,251889,8.1,3.8,1.6,0.5,1.6,9.9,13.3,7.7,101758,42738,75817,13.4,4.6,9.9,6.7,6.9,0.5,84.6,90,92.1 +328,12011,"Broward County, Florida",Broward County, Florida,37589,1946127,42.6,28.3,41.3,5.5,2.3,79.1,17.6,29,2.57,3.22,44.5,2.4,63.3,46034,90.3,35.8,749372,29.9,12.7,2,1.7,9.5,12.2,15.8,15.4,105773,41910,74534,4.1,5.3,13.3,6.5,8.7,2.5,83.4,92.6,90.9 +329,12013,"Calhoun County, Florida",Calhoun County, Florida,26060,13593,76.6,11.6,41.8,4.7,2.7,80,17.9,NA,2.56,3.24,6.4,33.3,76.9,32840,81.8,13.1,4625,1.5,1.4,0.6,0,0.2,NA,NA,NA,63582,22965,46901,9,1.8,19,7.3,13.5,0.2,65.8,86.2,85.3 +330,12015,"Charlotte County, Florida",Charlotte County, Florida,33856,195083,84.7,5.3,60,2.8,4.4,88.2,40.4,NA,2.18,2.61,14.5,8.2,83.2,40482,92.2,25.3,87376,5.6,4.4,1.3,0.5,1.6,9.6,12.6,7.7,88575,40603,66154,11.5,5.4,9.8,7.7,6.4,0.7,81.5,87.5,90.9 +331,12017,"Citrus County, Florida",Citrus County, Florida,30320,158693,88.8,2.2,56.9,3.4,4,85.2,36.3,27.8,2.24,2.73,5.3,19.1,84.8,38348,90.9,20.4,69701,4.7,2.5,1.3,0.1,1,15.5,23.2,11.2,78901,35586,55355,12.7,6.6,11.5,7.8,9.1,0.4,79.1,83.7,89.3 +332,12019,"Clay County, Florida",Clay County, Florida,41112,223436,71.9,11.4,40.2,5.2,1.8,77,16.8,32.5,2.71,3.09,10.6,11.4,76.2,48779,93.3,28.7,81757,8.8,3,2.5,0.4,1.4,9.1,13.4,7.5,105559,39166,86094,16.5,3.4,8.2,3.5,4.8,0.3,86.2,92.3,94.4 +333,12021,"Collier County, Florida",Collier County, Florida,41701,387681,69.5,6.6,53.1,4.1,4.3,83.6,33.6,NA,2.38,2.87,36.9,4.8,76,46225,90,39.5,160867,19.3,8.4,0.9,0.3,6.4,10.5,15.9,7.5,140361,59973,86173,6.5,3.7,11.2,7.3,8.5,0.6,83.2,91.7,91.7 +334,12023,"Columbia County, Florida",Columbia County, Florida,29685,70755,72.8,16.5,40.7,5.6,1.4,77.7,20,25.6,2.49,3.06,10.5,36,70.9,39839,85.5,16.3,26720,5.6,1.9,0.6,0,1.1,17,21.4,10.8,73958,28030,55070,11,5.5,13.8,10.8,12.9,0.7,72.7,88.8,86.8 +335,12027,"DeSoto County, Florida",DeSoto County, Florida,28387,34719,67.7,12.9,42.8,5,2.7,81.9,23.8,29.7,2.49,2.96,14.2,31.4,71.3,36227,73,11,12656,23,2.1,0,0,7,23.1,34,13.8,63257,24462,50868,7.7,9.6,18.8,6,8.8,2.8,63.4,85.4,81.8 +336,12029,"Dixie County, Florida",Dixie County, Florida,24151,16952,85.1,6.6,45.8,4.2,1.6,81.8,23.6,NA,2.5,3.01,2.2,55.1,83.8,31414,82.3,8.1,6130,2.3,0.6,0.2,0.2,0.8,NA,NA,NA,61155,21699,47655,10.5,4.9,17.7,3.3,15.5,0.8,56.2,78.4,73.6 +337,12031,"Duval County, Florida",Duval County, Florida,37885,1007189,52.8,28.9,36.7,6.4,1.6,77.5,15,24.1,2.43,3.11,30,3.6,58.1,46601,91,33.1,405139,8.9,4,3,1.4,3.6,14.6,20.5,13.6,93813,38827,68447,10.5,4.4,11.5,5.4,7.1,1,80.2,91.4,89.9 +338,12033,"Escambia County, Florida",Escambia County, Florida,33501,323275,64.4,21.2,38.1,5.8,2.1,79,17.7,NA,2.38,2.97,20.2,5.9,64,42230,90.5,28.9,128292,4.5,2.1,2.6,0.3,1.4,14.5,22.1,10.1,88025,35745,65715,13.8,5.5,12.1,5.2,7.5,0.5,78.1,89.8,90 +339,12035,"Flagler County, Florida",Flagler County, Florida,35786,121710,77.2,9.4,52.6,3.6,3.2,83.7,31.1,NA,2.41,2.78,9,3.5,81.5,44776,93.1,30.4,50296,7.9,8.6,1.2,0.4,3.6,9.4,14.2,6,101501,43100,72923,10.8,3.5,10.8,10.8,12.8,0.4,81.8,88,85.9 +340,12037,"Franklin County, Florida",Franklin County, Florida,34007,12418,80,10.9,49.2,3.7,1.3,84.7,26.2,20.5,2.2,2.65,7,18.7,77.2,33779,83.1,25.3,4918,1.8,1.4,0.6,0,0.3,NA,NA,NA,82821,33893,62734,10.2,7.9,15.3,9,18.3,0.3,69,87.6,87.9 +341,12039,"Gadsden County, Florida",Gadsden County, Florida,28070,43642,33.9,55.1,42,5.8,1.3,77.8,19.4,NA,2.42,3.02,7,26.4,72.9,37265,81.3,20.1,16485,7.9,0.5,0.5,0,2.2,27.7,41.6,14.7,60499,23206,46047,6.8,3.8,16.4,18.7,13,2.1,64.6,77.1,74.9 +342,12041,"Gilchrist County, Florida",Gilchrist County, Florida,30603,18494,89.1,3.2,42.7,5.4,2.5,79.2,20.2,NA,2.54,2.96,1.7,49.2,83.7,39688,85.5,14.5,6913,5.1,1.3,1,0.3,1.9,NA,NA,NA,86992,33507,61070,9.9,3,15.1,13.8,10.6,0,72.2,87.6,80.9 +343,12043,"Glades County, Florida",Glades County, Florida,28041,12324,64.3,15.1,45.8,3,2.5,86.3,26.6,NA,2.39,2.82,4.3,51.1,79.7,35208,72.4,12.7,4560,21.1,2.2,0.2,1,2.6,NA,NA,NA,62991,25697,38905,11.9,6.5,20.4,14.7,23.6,0.3,67.4,87.8,78.4 +344,12045,"Gulf County, Florida",Gulf County, Florida,39311,14772,79.1,14,47.3,3.6,1.4,85.2,23.5,25.3,2.11,2.49,5.3,23.3,80.3,43181,86.7,24.5,5800,1.4,0.7,0,0.7,0.4,NA,NA,NA,94247,38258,67361,9.9,3.1,9.5,10.4,9,0.1,76.9,87.1,87.1 +345,12047,"Hamilton County, Florida",Hamilton County, Florida,24519,13445,58.7,32.2,40.6,4.9,1.5,79.4,19.6,NA,2.49,2.86,7,37,74.9,30566,78.3,11.2,4360,7.6,3.1,1.1,0,1.5,NA,NA,NA,56421,18104,47696,7.5,8.8,13.3,2.7,8,1,50,74,77.1 +346,12049,"Hardee County, Florida",Hardee County, Florida,29854,25508,61.4,6.5,35.9,6.3,2.2,74.9,16.3,27.9,2.9,3.25,11.6,23.4,71.4,39694,78.4,12.3,8148,32.8,0.6,0.8,0.2,8.2,NA,NA,NA,76755,26225,54231,4.8,6.2,16.8,3.2,4.6,0.9,64.9,91.7,81.2 +347,12051,"Hendry County, Florida",Hendry County, Florida,29022,40798,55.2,10.8,35.7,7.4,1.2,74.8,13.6,31.7,2.76,3.2,6.7,34.3,72.4,36624,69.5,10.7,13944,48.5,0.5,0.5,1.3,14.7,21.6,25.2,19,74323,26234,53044,3.9,4.5,20.6,4.5,9.1,2.6,64.5,87.3,83 +348,12053,"Hernando County, Florida",Hernando County, Florida,32229,201512,78.7,5,48.1,4.3,2.9,81.5,26.6,30.4,2.48,2.95,6.5,14.3,81.8,41034,90.1,20.4,80544,11,2.9,1,0.3,2.2,12,15.5,9.6,80550,33079,63193,11.7,5.6,11.7,4.2,7.7,0.4,82.4,87.7,91.1 +349,12055,"Highlands County, Florida",Highlands County, Florida,30776,103808,72.6,9.4,54.2,4.1,4.8,83.2,35.9,NA,2.22,2.76,9.9,19.2,78.9,38414,86.4,19.7,45943,16.9,2,1.3,0.5,3.7,15.4,21.2,10.2,72590,32982,55581,11,5.4,12.7,9.5,9.4,0.8,72.3,84.8,84.7 +350,12057,"Hillsborough County, Florida",Hillsborough County, Florida,38793,1489634,54.8,16.4,37.8,5.8,1.6,78.2,14.8,28.7,2.56,3.17,27.8,6.3,61.1,48934,89.6,37.2,569998,24.2,5,2.8,1.3,6.8,13.2,16.5,13.4,106537,41980,75011,7.5,4.2,11.5,3.4,5.4,1.5,84.2,93.3,93.1 +351,12059,"Holmes County, Florida",Holmes County, Florida,26144,19626,84.8,6.7,42.4,5,2.5,79.5,20.2,NA,2.52,3.21,3.5,37.3,76.7,37330,84.2,12.1,7087,2.3,1.3,0.1,0.2,1.1,NA,NA,NA,61718,24505,48236,10.2,3.7,13.3,5.3,11.5,0.1,65.2,81.3,76 +352,12061,"Indian River County, Florida",Indian River County, Florida,36438,163856,77.3,8.1,55,3.8,5,84.8,34.2,NA,2.36,2.94,18,6.7,79.3,41798,92,33.4,68696,9.6,4.1,0.9,0.5,1.7,11.4,17.3,7.4,104837,46273,71049,10.2,5.4,10.6,4,6.4,0.3,82.3,88,88.4 +353,12063,"Jackson County, Florida",Jackson County, Florida,27265,47652,66.6,25.4,42.9,5.1,2.4,81,20.9,28.2,2.39,3.05,5.8,27.8,74.5,37194,83.2,14.6,17038,2.9,1,0.6,0,0.5,18.8,28.4,12.6,63425,23718,47327,8.1,4.9,9.8,5.8,7.9,0.1,64.1,85.2,80.5 +354,12065,"Jefferson County, Florida",Jefferson County, Florida,29627,14713,62.8,30.1,47,4.1,1.8,82.8,24.5,NA,2.39,2.98,5.9,29.1,75.1,42054,87.8,18.8,5675,2.8,1.6,1.2,0.5,0.2,NA,NA,NA,75727,30472,56984,10.5,6.2,9.8,3.3,3.5,0,64.9,78,73.8 +355,12067,"Lafayette County, Florida",Lafayette County, Florida,25378,8035,76.8,17.7,41.8,4,2.2,81.9,20.1,28.9,2.54,3.16,4.5,42,81.4,35625,80,7.9,2619,7.2,0.1,0,0,2.1,NA,NA,NA,65808,22165,60692,7.3,7.5,11,7.7,7.6,3.7,63.7,85.1,85.5 +356,12069,"Lake County, Florida",Lake County, Florida,35401,398696,70.6,10.1,46.7,4.7,3.1,80.9,26.6,29.9,2.47,2.97,12.8,15.1,76.6,44904,90.9,26.8,159474,12.6,3.2,1.2,0.3,2.6,9.5,12.8,7.8,90299,36956,69956,10.4,4.8,10.1,5.1,7.2,0.2,76.4,89.6,91.3 +357,12071,"Lee County, Florida",Lee County, Florida,36923,792692,70.5,8,49.3,4.5,3.3,82.8,28.9,NA,2.44,2.97,24.3,7.9,74,43947,90.4,30.8,319588,16.6,4.9,1.1,0.4,5.1,11.7,17.1,9.5,102290,43365,73099,8,4,12.5,8.1,9.7,0.6,81.3,91.2,91.3 +358,12073,"Leon County, Florida",Leon County, Florida,35481,295335,56.5,30.7,31.9,4.9,1.5,81.4,14.4,NA,2.29,2.98,33.9,6.8,51.9,47718,93.7,48.6,120673,7.1,3.7,2.6,0.8,1.5,18.5,17.6,9.7,93105,38777,65074,5.7,4.7,7.7,4.1,4.4,0.7,84.2,93.1,90.7 +359,12075,"Levy County, Florida",Levy County, Florida,28245,44276,82.2,8.4,47.1,4.9,2.1,80.4,25,NA,2.44,2.95,4.9,44.2,79.8,37002,87.8,16.2,17976,6.2,0.8,1.1,0.1,2.3,17.2,25,11.6,71892,30739,53805,11.3,3.5,14.9,7.7,8.4,2.7,67.7,82.8,77.3 +360,12077,"Liberty County, Florida",Liberty County, Florida,29002,7650,77.3,13.1,39.1,3.7,1.4,80.8,13.8,NA,2.41,3,0.4,40.8,79.5,34717,79,15.8,2554,2.7,0.6,0.2,0.4,0.3,NA,NA,NA,65763,25693,53824,6.3,7.3,8.6,0,4.5,1.6,71.9,87.4,79.3 +361,12079,"Madison County, Florida",Madison County, Florida,27071,18113,56.1,36.5,44.9,4.8,2.3,82.2,22.6,30.3,2.33,3.11,7.7,31.7,72,36487,80.6,12.5,6980,3,0.9,0,0.3,0.4,NA,NA,NA,60900,23670,48176,9.6,2.1,12.1,5.8,6.7,0.5,57.2,69.4,73 +362,12081,"Manatee County, Florida",Manatee County, Florida,38114,416020,74.6,7.9,49.4,4.4,3.3,82.3,28.2,NA,2.44,2.97,21.1,11.4,74.7,45834,91,34.3,168504,11.9,5,1.6,0.5,2.7,10.4,15.4,8.3,107117,44867,75792,9.2,4.8,11.7,8.9,9,0.8,83.2,89.8,90.8 +363,12083,"Marion County, Florida",Marion County, Florida,31694,387697,71.7,12.6,48.2,4.7,3.3,81.2,28.7,26.3,2.37,2.89,10.7,17.3,76.7,38749,89.6,22.4,159796,11.8,2.4,1.1,0.3,2.6,14.6,22.3,9.8,77453,32513,58535,11.1,5.2,12.2,6.2,8.6,0.5,78.4,86.7,90.3 +364,12085,"Martin County, Florida",Martin County, Florida,39276,160464,80.9,5,53.2,4,4.2,83.7,31.8,NA,2.31,2.88,24.5,8.5,80.1,45483,92.7,36.6,67820,10.4,3.9,0.9,0.4,1.8,11.4,18.8,8.1,120690,52532,80701,9.1,4.4,10.2,7.7,6.8,0.7,83.9,89.7,91 +365,12086,"Miami-Dade County, Florida",Miami-Dade County, Florida,32562,2685296,36.9,15.4,40.8,5.5,2.4,79.9,16.8,31,2.74,3.28,46.1,1.5,52.2,41503,83.1,33.2,964805,69.1,7.7,1.1,0.9,24.2,14.9,18.5,20.9,102498,37858,68694,2.1,4.2,14.3,4.8,7,2.3,78.9,92.7,87 +366,12087,"Monroe County, Florida",Monroe County, Florida,42753,81840,72.6,7.4,48.9,4.3,2.1,84.4,24.3,19,2.32,2.83,25.7,9.5,63.4,46252,93.3,37.8,34630,16.6,5.4,0.6,0.3,5,10.4,9.2,10.7,130952,57683,82430,8.7,3.3,14.9,5.9,8.7,1.6,81.7,92.2,88 +367,12089,"Nassau County, Florida",Nassau County, Florida,42575,94653,85.9,5.5,46.3,4.7,1.7,80.4,23.3,NA,2.46,2.85,9,18.2,83,49802,92.3,34.5,38112,4,1.9,1.2,0.6,0.7,9.2,14.5,5.7,114157,46463,88900,11.6,3.8,7.5,2.6,4,0.1,85.3,93.5,94.4 +368,12091,"Okaloosa County, Florida",Okaloosa County, Florida,39987,214281,72.9,9.4,37.3,6.3,1.6,77.4,16.4,NA,2.49,3.02,18.3,4.7,67.8,47366,93.4,34.2,84123,8.2,3.9,3.2,0.3,2.7,9.3,13.7,7.8,105647,42261,79097,20.6,3,11.4,8.5,7.7,0.5,84.1,91.7,92 +369,12093,"Okeechobee County, Florida",Okeechobee County, Florida,28577,40249,72.6,8.1,40.7,5.8,2,78.6,20.1,26,2.47,3.04,7.3,36.7,74.6,37098,80,16.1,15187,20.3,2.4,0.7,0.2,4.1,19,30,11.3,72468,27836,52288,9,5.2,17.3,10.3,11.3,0.7,69.2,86.3,83 +370,12095,"Orange County, Florida",Orange County, Florida,36450,1440471,46.6,20.3,36.4,5.7,1.4,78.4,12.8,28.4,2.76,3.31,32,3.3,57.4,45223,90,38.4,508907,28.6,8.9,3.4,1.3,8.1,13,16.8,12.1,108171,39640,77011,5.4,5.1,12.3,5.2,6.6,2.6,83.9,94.5,93 +371,12097,"Osceola County, Florida",Osceola County, Florida,32308,406943,43.4,11,37,6,1.4,76,13.4,35.4,3.08,3.59,21.6,7.3,66.2,38768,88.6,28.3,131365,49.5,5.5,1.9,1.1,12.2,12.5,15.6,14,88551,31000,68711,6,5,10.9,3.8,5.5,1.7,83.4,93.4,91.8 +372,12099,"Palm Beach County, Florida",Palm Beach County, Florida,39535,1507453,57.4,18.5,45.4,4.9,3.9,81.1,24.6,26.4,2.48,3.1,36,2.6,69.9,47412,89.1,39.6,597053,19.3,11.1,1.7,1.4,7.1,11.1,15.4,10.2,124934,50998,81115,5.4,5.1,13.2,7.3,9.8,1.1,82.3,91.4,90.1 +373,12101,"Pasco County, Florida",Pasco County, Florida,35547,588758,75.1,6.1,43.7,4.9,2.4,79.7,22,NA,2.53,3.12,12.1,14.5,75.5,47967,91.2,28,229860,13,4.9,1.8,1.1,2.8,11.1,14.7,10.7,92716,37757,67384,10,4.4,10.7,5,6.3,0.9,82.6,89,89.8 +374,12103,"Pinellas County, Florida",Pinellas County, Florida,38779,960565,75.1,9.7,48.9,4,3.5,84.3,25.9,25.3,2.22,2.91,32.8,7.5,69.4,48099,92.6,35.8,423242,7.9,5.9,2.3,0.8,3.1,11.4,13.9,11.7,101629,46580,70293,8.7,4.3,10.7,5.3,6.5,0.7,82.2,89.1,89.4 +375,12105,"Polk County, Florida",Polk County, Florida,32948,760961,59.8,14.8,39.6,5.6,2.2,77.9,19.7,30.2,2.69,3.21,14.4,18.1,70,41140,87.5,22.6,276643,22.2,3.4,1.3,0.5,5.3,14.7,21.8,11.7,84031,31927,63644,7.7,4.1,13,4.5,7,0.7,77.1,89.5,88.2 +376,12107,"Putnam County, Florida",Putnam County, Florida,27186,74235,73,15.3,45,5.5,2.1,78.6,23.5,NA,2.38,2.96,7.7,41.3,72.6,35402,82.2,14.1,30650,6.9,0.9,0.7,0,2,23.9,33.7,13.3,64848,26908,47256,10.3,7.1,15.1,4.9,5.5,0.1,63.9,82.8,84.1 +377,12109,"St. Johns County, Florida",St. Johns County, Florida,48708,292243,81.2,5.2,44,4.6,2,78.3,20.9,NA,2.66,3.06,12.6,5.3,82.1,60468,95.1,48.6,108827,6.2,4.8,1.9,0.4,1.1,6.7,7.4,5.6,143324,54822,106169,9.9,3.7,6.4,4.8,5.3,0.5,87.9,92.2,94.2 +378,12111,"St. Lucie County, Florida",St. Lucie County, Florida,34575,346237,59.8,21,45.3,5,2.4,80.3,24.5,NA,2.6,3.12,15.9,5.3,77.7,42122,88.6,25.4,131640,17.1,7.8,1.3,1,4.3,11.6,17,9.6,88516,35125,69027,9.3,5.3,12.1,4.7,7.7,0.5,82,89.5,91.3 +379,12113,"Santa Rosa County, Florida",Santa Rosa County, Florida,40858,193719,81.3,5.5,40,5.4,1.6,78,16.5,30.2,2.65,3.11,8.1,7.8,80,48597,92.6,31,71250,4.3,2.2,2.1,0.5,0.7,8.4,9.8,7.4,110352,41388,88968,16.4,3.9,10.4,5.8,5.6,0.1,85.3,91.4,92.9 +380,12115,"Sarasota County, Florida",Sarasota County, Florida,41041,449011,84,4.1,57.3,3.3,5.2,86,37.3,24.5,2.15,2.63,21.1,6.8,76.3,46465,94.4,39.7,205503,6.8,6.8,1.3,0.6,2.5,8.2,11.5,6.9,120022,55430,80633,9.5,3.3,10,9.4,11.8,0.6,84.4,88.8,91.7 +381,12117,"Seminole County, Florida",Seminole County, Florida,41689,474912,62.7,11.9,39.8,5,1.9,79.3,16.3,27.2,2.54,3.07,26.6,2.2,65.8,51271,93.9,42.4,185396,18.1,5.4,2.7,1.1,3.3,9.2,10.1,8,111625,44349,83030,6.9,3.8,9.6,4.8,5.3,0.9,84.4,94.1,93.9 +382,12119,"Sumter County, Florida",Sumter County, Florida,37736,137536,86.3,6.8,68.4,1.8,5,92.9,57.8,NA,1.93,2.3,4,11.9,88.1,36132,93.2,35.1,66941,3.2,1.9,1.1,0,0.4,9.1,30.3,4.4,93594,46555,73297,14.2,5.8,5.2,1,7.3,0.3,80.7,87.5,90.6 +383,12121,"Suwannee County, Florida",Suwannee County, Florida,27661,44484,77,10,42.5,4.7,2.6,78.9,21.1,NA,2.74,3.19,4.7,48.8,74.5,37233,84.5,16.4,15567,8.6,1,0.5,0,0.7,14.2,18,11.7,70930,26484,55479,9.2,4.4,11.9,11.1,6.1,0.4,70.4,79.4,85.1 +384,12123,"Taylor County, Florida",Taylor County, Florida,30138,21422,73.3,20.1,43.8,4.3,4,79.9,20.9,NA,2.46,3.02,4.5,36.8,72.6,40538,86.2,15.1,7571,1.5,1.5,0.1,1,0,NA,NA,NA,74020,26808,44985,10.1,4.8,9.5,0,2.2,1.1,65.3,77,81.3 +385,12125,"Union County, Florida",Union County, Florida,30904,15551,73.2,16.2,40.1,5.5,0.8,78.8,17.2,35.6,2.58,3.03,3.9,46.5,73.6,41414,78.3,10,4192,3,0,0.2,0,0,NA,NA,NA,83228,22599,64922,10.6,3.6,9.6,1.2,2.3,0.3,69.7,92,89.7 +386,12127,"Volusia County, Florida",Volusia County, Florida,35427,568229,72.6,10.7,46.6,4.5,2.8,82.5,25.1,NA,2.33,2.86,18.9,8,72.8,43043,91.9,27.2,237396,12.2,3.6,1.5,0.9,1.5,12.2,17.3,9.7,87233,37171,66581,10.1,3.7,11,6.3,7.9,0.4,80.6,89.6,89.8 +387,12129,"Wakulla County, Florida",Wakulla County, Florida,38025,34608,78,13.9,42.5,5,1,79.6,16.6,33,2.6,3.13,3,27.9,83.8,46763,87.5,21.3,12187,1,3.7,1.5,0,0.5,NA,NA,NA,92491,32920,74183,9.8,2.1,6.6,2.2,4.3,0.6,75.6,90.3,89.5 +388,12131,"Walton County, Florida",Walton County, Florida,40290,79846,84.2,3.8,43.8,5.7,1.8,79.2,19.8,NA,2.39,2.84,11.5,17.9,77.2,47425,91.4,34.2,32659,6.9,3.1,1,0.2,2.2,11.4,18.3,8.2,120486,49119,79281,10.5,4.8,14.1,16.6,14.6,0.4,80.3,91.9,90.4 +389,12133,"Washington County, Florida",Washington County, Florida,30795,25259,78,13.6,41.6,5,2.2,79.9,18.3,33.9,2.44,2.9,4.2,33.2,79.8,36575,83.1,12.5,9282,2.5,1.5,1.7,0.1,0.5,NA,NA,NA,67695,26233,52723,8.8,3.8,14.4,13.4,10.7,0.9,68.1,88.3,84 +390,13001,"Appling County, Georgia",Appling County, Georgia,28618,18426,69.8,17.7,39.9,6.3,1.6,75.4,18,NA,2.55,3.07,7.7,35.2,71.8,36563,81,9.9,7037,7.6,1.1,0.6,0.1,0.8,NA,NA,NA,60995,25218,43728,4.4,3.3,16.4,2.8,5,2.4,50.1,86.4,72.2 +391,13003,"Atkinson County, Georgia",Atkinson County, Georgia,29508,8261,64.1,15.2,36.2,6.6,0.9,74.6,13.6,25.9,2.58,2.97,6.4,49.1,64.6,33505,71.6,9.8,3189,23.2,0,0,0,7,NA,NA,NA,58228,23886,38438,4.5,3.1,22.4,3,5.9,2.5,58.1,84.3,78.7 +392,13005,"Bacon County, Georgia",Bacon County, Georgia,31033,11129,73.9,15,39,4.6,1.4,74.6,16.8,24.8,2.65,3.3,2.6,30.4,73.9,40090,84.6,11,4013,9.3,0.9,0.2,0.5,1,NA,NA,NA,67308,25969,50310,6.7,3.3,14.5,3.6,1.8,2.1,64.2,83.1,81.7 +393,13007,"Baker County, Georgia",Baker County, Georgia,27522,2830,49,40.7,48.1,2.4,1,81.6,26.1,NA,2.5,3.17,3.9,25.1,72.7,35483,90.5,16.9,1114,3,0,1,0,0,NA,NA,NA,61584,25017,44405,5.8,10.2,16.9,0,1.2,1.8,36.1,72.5,57.9 +394,13009,"Baldwin County, Georgia",Baldwin County, Georgia,31371,43669,52.5,41.8,36.4,4.6,1.5,81.1,16.7,26.1,2.38,2.99,16.8,20.9,64.2,44079,85.2,24.1,16075,1.9,0.3,1.1,0.3,0.3,22,22,13.5,85755,32573,55413,4.9,4,11.8,5.4,6.2,0,72.7,88.1,86.9 +395,13011,"Banks County, Georgia",Banks County, Georgia,34487,18757,87,1.7,42.4,5.1,1.2,78.6,17.1,NA,2.76,3.26,1.6,24.5,76.7,48287,82.3,17.3,6787,5.7,2.9,1,0,2.3,NA,NA,NA,82882,32088,68830,6.4,2.4,11.8,8.1,5.5,0,65.8,82.2,84.5 +396,13013,"Barrow County, Georgia",Barrow County, Georgia,38494,86982,69.3,13.2,36.4,6.4,1,74.6,12.8,NA,2.91,3.35,6.9,6.1,79.5,46621,87.6,21,29770,11.2,2.5,2.9,0.5,2.3,10.2,12.3,6.5,90487,31914,77477,6.2,3,15.4,8.8,7.9,2.7,82.4,91.8,92.7 +397,13015,"Bartow County, Georgia",Bartow County, Georgia,39756,111153,78.2,11,38,6.1,1.2,76.4,14.5,NA,2.78,3.26,9.1,9.5,73.9,48831,88.6,22.9,39664,7.5,1.6,0.4,0.3,2.6,10.1,12,11.3,94388,33951,79431,7.2,3.9,14.6,8.8,8.7,2.9,79.2,91.3,84.6 +398,13017,"Ben Hill County, Georgia",Ben Hill County, Georgia,28234,17138,57.3,37.7,38.5,5.9,1.2,75.3,17.8,NA,2.35,2.9,15.6,23.1,59.8,36692,84.3,12.1,7162,5.2,0.9,0.2,0,1,NA,NA,NA,56280,23099,39081,6.4,5.4,18.7,4.3,7.8,0,58.6,85.1,72.4 +399,13019,"Berrien County, Georgia",Berrien County, Georgia,29686,18257,81.3,10.6,39.8,6.2,1.5,76.2,17.8,NA,2.63,3.14,5.1,33.9,69,38416,82.8,12.8,6881,5.7,0.1,0.9,0,0.7,NA,NA,NA,67230,26263,50414,7.2,4.7,18.8,4.4,6.7,2.3,67.7,85.8,80.4 +400,13021,"Bibb County, Georgia",Bibb County, Georgia,30779,156543,36,54.5,36.6,6.5,2,75.5,16.2,22.2,2.52,3.29,26.8,2.7,51.5,40441,87.4,26,59681,3.1,1.4,1.4,0.5,1.2,24.8,38.8,14,77463,31306,50747,7.3,7,13.6,3.9,5.6,0.9,71.9,87,85.3 +401,13023,"Bleckley County, Georgia",Bleckley County, Georgia,29178,12414,68.9,26,37.4,4.2,1.8,80,17.7,NA,2.61,3.04,9.7,21.4,73.3,42226,87.9,18.3,4283,2.6,0.2,0.6,0,0.3,NA,NA,NA,76532,29677,53005,8.1,7.5,10.4,0,1.4,0.9,72.5,84.8,71.8 +402,13025,"Brantley County, Georgia",Brantley County, Georgia,26846,18171,92.4,2.9,40.9,5.1,1.8,77.6,17,NA,2.65,3.43,1.2,53.6,77.3,41492,81.2,10.9,6828,1.4,0,1.7,0.1,0.3,NA,NA,NA,62571,25293,47801,7,2.5,16.7,1.7,2.9,0,59.5,86.8,75.6 +403,13027,"Brooks County, Georgia",Brooks County, Georgia,26306,16285,57.4,34.7,43,5.9,2.2,78.8,20.8,25.5,2.66,3.57,6.5,33.4,70.4,36554,83,13.6,5994,2,0.1,0.3,0,0,NA,NA,NA,67055,27303,47656,7.8,5.6,15.7,10.5,5.1,3.1,58,80.1,70.6 +404,13029,"Bryan County, Georgia",Bryan County, Georgia,48904,46681,72.3,14,34.7,7.2,0.8,70.7,10.7,NA,2.94,3.31,9,10.5,75.6,57216,92.8,34.6,15821,6,3.3,0.8,1.5,1.2,NA,NA,NA,124970,42576,94234,12.8,5.6,8.6,4.5,5.7,0,84.1,94,91.8 +405,13031,"Bulloch County, Georgia",Bulloch County, Georgia,29201,81372,62.8,28.3,30.2,5.6,1.1,79.8,12.1,24.4,2.48,3.05,27.1,14.9,53.3,42499,89.6,30.8,30276,4.8,1.4,1.7,0.2,1,22.5,23.9,10.1,79142,30450,56832,5.8,7.6,11.9,3.3,3.7,1.6,80.8,92.2,86.1 +406,13033,"Burke County, Georgia",Burke County, Georgia,28502,24427,50.1,45.3,38.4,5.9,0.9,75.2,17,NA,2.66,3.42,10.1,32.3,72.7,41493,84.1,14.3,9097,4.3,1.4,0.3,0,1,NA,NA,NA,81112,31580,50739,8.5,5.6,11.4,0.7,2.3,0,64.2,86.1,82.8 +407,13035,"Butts County, Georgia",Butts County, Georgia,31408,26074,65.5,27.6,38.5,4.5,1.5,79.5,15.5,NA,2.69,3.11,12.8,4.8,71.1,41648,83.8,13.9,8751,3.4,0.6,0,0,0.1,NA,NA,NA,77092,27924,59221,6.5,5.2,11.9,10.9,9.6,0.2,72.4,90.8,85.8 +408,13037,"Calhoun County, Georgia",Calhoun County, Georgia,23984,5528,34,59.6,39.7,4.1,2,84.3,16.8,NA,2.53,3.11,14,24.9,62.9,33482,77.1,12.1,1508,1.5,0.8,0.2,0.6,0,NA,NA,NA,69405,19913,55714,6.2,7.7,11.6,1.1,1.1,0.4,56.9,79.6,76.9 +409,13039,"Camden County, Georgia",Camden County, Georgia,38474,56036,70.7,18.2,34.6,6.7,1.3,75.9,14.7,26.6,2.58,2.98,17.8,9.2,63.8,48164,92.5,22.4,21024,4.4,1.1,2,0.4,0,15,22.4,10.4,85169,34401,72399,16.6,4,8.8,4.1,3.6,0.2,82.2,93.5,89.6 +410,13043,"Candler County, Georgia",Candler County, Georgia,26405,10972,60.7,22.6,41,6.1,2.3,74.9,18.3,NA,2.55,3.29,5.4,36.2,62.5,36146,79.1,13.6,4183,9.4,0.6,0.8,0,5.5,NA,NA,NA,67496,25898,50431,7.8,4.5,17.3,0,4.4,0.9,60.6,82.5,80.8 +411,13045,"Carroll County, Georgia",Carroll County, Georgia,32954,122187,69.8,20.5,35.3,6.3,1.4,76.2,14,29.7,2.73,3.17,13.9,10.6,69.3,45112,84.7,22.4,43598,6.6,1.4,0.5,0.4,2.2,15.6,20.8,10.2,87579,32201,72327,6.3,5.4,12.6,1.4,3.8,0.7,76.6,89,88.4 +412,13047,"Catoosa County, Georgia",Catoosa County, Georgia,34936,68356,89.1,2.3,40.8,5.1,2,77.6,18.2,NA,2.59,3.09,13.7,8.9,75.1,45029,89.8,24.5,26139,2.6,1.3,1.1,0.5,0.9,8.7,12.7,8.1,90614,35382,72425,7.8,3.8,10.4,4.1,6.5,0.2,74.7,89.3,88.3 +413,13049,"Charlton County, Georgia",Charlton County, Georgia,24879,12711,56.9,25,38,3.7,0.9,80.3,14.7,NA,2.94,3.71,4.5,37.4,78.1,34151,85.3,11.4,4086,5.9,0,0,0,3.5,NA,NA,NA,67272,24015,48534,8.4,7.7,17.5,4.4,2.1,0,60,84.3,81.9 +414,13051,"Chatham County, Georgia",Chatham County, Georgia,35961,298143,47.7,39.4,37.1,5.9,1.7,79.1,16.4,NA,2.41,3.05,28.6,3.1,56.3,43047,91.2,36.8,119241,6.6,3.2,2.4,0.6,1.8,14.3,21,9.8,95384,38920,69575,9.2,5.3,13.1,4.8,7.2,1.4,80.2,92.5,91.5 +415,13053,"Chattahoochee County, Georgia",Chattahoochee County, Georgia,30163,9181,59.1,18.5,23.9,7.4,0,80.8,3.3,9.8,2.52,2.95,19.5,19.2,36,36945,97.1,27.6,1897,11,0.5,2.7,3.8,3,NA,NA,NA,69011,26920,59221,19.2,8.4,5,0.1,0.1,0,72.3,91.2,84.2 +416,13055,"Chattooga County, Georgia",Chattooga County, Georgia,25422,24975,82.1,9.5,41.1,5.6,2.3,78.5,18.3,27.4,2.56,3.19,10.1,17.4,67.4,36194,74.2,10.7,9142,4.3,0.2,0,0.2,0.7,NA,NA,NA,59859,23391,47785,8,4.8,12.1,0.2,2.7,0,60.8,82.8,82.8 +417,13057,"Cherokee County, Georgia",Cherokee County, Georgia,46369,274539,78.2,7.2,40,5.5,1.3,76.7,15.4,NA,2.75,3.16,11.1,3,77.4,58318,92.1,39.5,99132,8.1,3.4,1.3,1.2,2.7,6.5,7.8,5.8,128400,47337,105442,7.5,3.1,10.8,5,6.9,1.1,89.5,94.2,94.9 +418,13059,"Clarke County, Georgia",Clarke County, Georgia,28719,129267,57.7,26.3,29.4,4.8,1.1,83,12.1,20.8,2.19,2.87,40,4.1,41.2,41423,90,48.7,54161,8.7,3.1,2.8,0.9,2.9,25.9,23.6,11.4,76893,31915,52267,4.1,4.5,11.1,7.7,7.9,1,84.3,91.9,91.5 +419,13061,"Clay County, Georgia",Clay County, Georgia,26845,2853,39.8,59.5,46.1,4.2,3.1,80.3,31.3,NA,2.37,3.14,7.6,35.5,76.9,36960,85.4,22.6,1179,5.7,0,0,0,0,NA,NA,NA,63155,29009,48715,6.8,0.8,6.9,0,1.9,0.8,50,83.6,75.6 +420,13063,"Clayton County, Georgia",Clayton County, Georgia,32774,298771,11.5,69.8,33.3,7,0.7,72.7,10.3,32.6,2.79,3.47,26.7,2.4,53.2,38782,84.8,21.3,105626,11,2.1,4,2.5,4.3,16.8,25.1,13,74004,26826,58507,7.4,6.5,17.7,8.5,10.5,1.8,78.6,90.1,90 +421,13065,"Clinch County, Georgia",Clinch County, Georgia,26838,6722,65.3,25.6,38.8,6.5,1.3,75,16.7,NA,2.51,3.07,11.3,21.5,70.1,35302,81.2,13,2470,1.7,0,0.1,1.7,1,NA,NA,NA,67216,24906,55549,4.1,3.7,22.5,29.9,19.7,2.3,58.2,82.3,72 +422,13067,"Cobb County, Georgia",Cobb County, Georgia,47495,769152,50.5,27,37.4,5.7,1.3,77.1,13.2,29.5,2.59,3.16,23.5,1,67,59275,92.8,50.4,293410,10.8,6,3.1,2.2,3.3,8.5,11.1,7.7,131991,50975,98712,6.5,4.3,12.2,5.1,7.7,0.9,89.5,95.5,95.9 +423,13069,"Coffee County, Georgia",Coffee County, Georgia,28402,43161,60.7,28.1,36.6,6.8,0.9,75.4,14.6,NA,2.59,3.16,8,32.3,63.1,36027,79.6,13.5,15318,10,1.3,0.3,0,3.8,19.8,25.8,18,63068,23567,50175,5.8,4.3,18.5,3.4,10,0.2,62.9,89.2,82.7 +424,13071,"Colquitt County, Georgia",Colquitt County, Georgia,29648,45907,57.3,22.8,37.2,6.6,1.5,74.2,15.4,21.8,2.67,3.2,13,25.5,63.4,38243,79.7,15.7,16807,12.7,0.7,0.5,0.5,3.3,23.9,38.5,17,71702,27073,49691,6.2,3.6,20.8,16.7,13.4,2,62.5,85.5,81.1 +425,13073,"Columbia County, Georgia",Columbia County, Georgia,44716,159638,67.6,18,37.5,6,1.4,74.9,14.7,25.8,3.05,3.56,7.8,4.6,78.5,58056,93.1,37.8,52083,7.3,4.2,2.9,0.6,1.3,6.8,9,7.3,118347,42457,96122,14.6,4,8.9,4.8,4.3,0.3,86.1,93.2,90.7 +426,13075,"Cook County, Georgia",Cook County, Georgia,25452,17363,65.3,27.9,37.5,6.7,1.6,74.7,16.1,NA,2.7,3.25,6.7,28.9,64.1,41760,83.3,16.7,6323,3.5,0.5,1.7,0,0.4,NA,NA,NA,68892,25003,50133,6.5,4.2,17.7,13.8,7.7,0,64.4,84.3,76.2 +427,13077,"Coweta County, Georgia",Coweta County, Georgia,43905,150071,71.4,18.5,39,5.6,1.2,76.6,14.7,NA,2.7,3.14,11,2.9,77.6,55728,91.9,34.7,55290,7.4,2,1.4,0.2,1.8,8.2,9.8,6.5,116087,43281,94142,8.9,2.5,8.3,2,4,0.4,85.2,92.2,91.9 +428,13079,"Crawford County, Georgia",Crawford County, Georgia,34208,12183,73.4,21.5,46,4.9,1.6,79.2,19.9,33.3,2.74,3.32,5.5,39.4,84.5,41893,83.6,14,4390,3.3,0.5,0,0,0.5,NA,NA,NA,85248,32796,60905,9,3.9,11.8,10,3.9,1.1,67.8,82.3,76.7 +429,13081,"Crisp County, Georgia",Crisp County, Georgia,25697,19995,50.9,45,40.4,6.5,2.9,76.6,19.4,NA,2.46,3.06,19.9,18.9,53.7,36012,84.2,15.5,7966,4,0.7,0.7,0,1.3,NA,NA,NA,65205,28062,42745,7.7,6.5,16.1,0.9,6.9,0.6,54.4,81.3,73.2 +430,13083,"Dade County, Georgia",Dade County, Georgia,30524,16196,92.1,1.6,42.2,5.4,2.2,80.4,20.4,27.6,2.43,2.93,6.9,15.5,77.9,41225,88.4,19,6178,3.9,1,0.5,0.2,0.2,NA,NA,NA,83822,32865,58936,6.5,3.6,10.3,1,9.4,0.9,70,83.2,84.6 +431,13085,"Dawson County, Georgia",Dawson County, Georgia,42610,28704,88.9,1.6,43.9,5.4,1.3,80,19.5,NA,2.64,3.03,11.7,7.2,78.4,54773,89.3,35.8,10844,5.2,1.2,0.7,0,0.4,NA,NA,NA,111715,43291,88986,6.8,3.6,13.1,2.8,5.6,1.4,84.4,92.2,91.8 +432,13087,"Decatur County, Georgia",Decatur County, Georgia,29043,29118,50,42,38.7,6.7,2.5,75.7,16.8,NA,2.67,3.41,10.7,19.9,61.8,40404,83.1,14.6,10474,4.1,1,0.5,0,1,24.8,43.1,11.5,67257,26544,50485,5.8,6.5,15,4.5,2.5,0,57.1,80.7,72.1 +433,13089,"DeKalb County, Georgia",DeKalb County, Georgia,41398,762105,30.1,51.5,36.3,6.6,1.3,77,13.3,30.8,2.64,3.53,32.3,0.6,58.5,51082,90.8,46.7,284681,7.7,5,3.5,3.8,4.4,13.5,19.9,10.1,115757,45544,77683,5.7,6.1,13,4,6.4,1.7,84.2,92,92.3 +434,13091,"Dodge County, Georgia",Dodge County, Georgia,28203,19909,65.7,30.8,42.4,4.5,1.7,81,19.2,NA,2.74,3.23,11.8,27,68.4,36969,86.1,15.2,6657,1.9,0.4,0,0,0,NA,NA,NA,67688,24702,50152,5.7,2,16.1,0.9,3.7,0.1,65.1,83.9,72.1 +435,13093,"Dooly County, Georgia",Dooly County, Georgia,27296,11026,41.8,47.9,45.9,4,1.6,84.1,22,NA,2.31,2.72,9.3,25.4,66.6,35651,83,13.4,3919,5.3,1.1,1.1,0.2,0.1,NA,NA,NA,77693,27078,56545,5.1,4.6,16.2,20.8,15.7,0.2,53.7,83.3,66.2 +436,13095,"Dougherty County, Georgia",Dougherty County, Georgia,27739,83915,23.9,70.6,36.6,6.5,1.7,75.8,17,20.4,2.32,3.04,30.2,4.4,46.5,38951,85.4,23.2,34280,2.7,0.9,0.9,0.4,0.8,26.4,38.5,16,63592,27125,46784,9.1,9.8,14,3.1,6,0.7,66.2,85.9,80.3 +437,13097,"Douglas County, Georgia",Douglas County, Georgia,40285,146141,36.4,49.2,36.8,5.9,1.2,74.4,12,NA,2.82,3.34,15.7,4.2,66.4,49243,91.4,30.8,51339,9.4,3.6,1.3,2.5,2.1,11.3,15,8.8,98426,35070,80764,9.1,5.5,12,4.9,6.3,0.4,83.6,92.6,93 +438,13099,"Early County, Georgia",Early County, Georgia,26077,10683,43.3,51.9,40.7,6,2.5,75.5,19.3,NA,2.61,3.25,4.9,26.2,70.3,36777,81,16.1,4043,1,0,0,0,0,NA,NA,NA,69338,26879,53750,6.8,6.6,17.4,0,1.4,0,51.9,72.6,60.8 +439,13101,"Echols County, Georgia",Echols County, Georgia,31257,3705,67.6,4.2,31.2,7.6,1.9,72.1,12.6,NA,3.06,3.55,1.7,41.8,76.8,36553,81.5,14.4,1209,15.7,0,4.3,0,6.8,NA,NA,NA,76146,25653,61723,6.9,3.9,21.2,0,14.4,0,56.7,74.5,68.1 +440,13103,"Effingham County, Georgia",Effingham County, Georgia,41888,67265,76.4,14.3,36.6,6.5,1.1,73.4,12.2,31.1,2.84,3.27,6.3,16.1,78.5,51746,90.8,26.8,23555,4.1,1.8,0.8,0.2,0.6,7.4,7.9,12.8,104190,37841,85465,12.1,5.6,9.6,4.7,5,0.6,81.1,92.8,81.9 +441,13105,"Elbert County, Georgia",Elbert County, Georgia,30425,19725,64.8,25.7,42.4,6.8,2.4,78,21.2,NA,2.36,2.98,9,22.2,68.6,39456,84.9,14.9,8245,4.7,0.3,1.2,0,3.6,NA,NA,NA,66048,28743,49727,6.9,7,11.3,0,2.2,0.1,65.1,77.4,77.1 +442,13107,"Emanuel County, Georgia",Emanuel County, Georgia,26182,22961,59.7,32.4,38.6,6.5,1.3,75,16.1,28.6,2.65,3.25,9.7,30.4,59.8,35647,79.4,12.8,8267,3.4,0.8,0.1,0.2,0.8,NA,NA,NA,62724,24356,50053,6.8,9.6,16.7,8.9,6.2,0.6,59.9,85.9,82.7 +443,13109,"Evans County, Georgia",Evans County, Georgia,28614,10740,55.3,27.3,36.9,5.5,1.6,74.3,17.2,25.1,2.63,3.22,13.8,26.2,64,40707,82.4,15.1,3876,8.6,0,0.8,0,3.5,NA,NA,NA,69872,26995,53908,6.4,5.2,17.1,0,8.3,0.1,54.6,88.2,78.8 +444,13111,"Fannin County, Georgia",Fannin County, Georgia,29927,25605,93.3,0.7,54,4.1,2.7,84.1,30.4,NA,2.24,2.68,10.1,10.4,78.2,36579,88.3,22.6,11361,2.4,2,0.1,0.2,0.1,NA,NA,NA,85986,38719,58073,10.4,3.7,15.2,20.1,13.5,0.1,76.1,84.9,88.3 +445,13113,"Fayette County, Georgia",Fayette County, Georgia,49566,120689,59,25.5,43.3,4.3,2.3,77.2,19.5,32.2,2.75,3.13,10.2,2.7,81,64232,95,48.1,43669,7.4,4.1,3.4,1.2,1.8,5.5,5.9,4.4,140838,52188,108986,11.3,3.3,7.9,5.4,6.2,0.4,90.7,93.1,94.8 +446,13115,"Floyd County, Georgia",Floyd County, Georgia,31308,98985,72.7,13.7,37.8,5.7,1.9,77.2,16.7,NA,2.58,3.14,18,6.9,62.1,40597,84.9,24.9,36688,8.7,0.9,0.8,0.5,2.2,16.8,25.8,9.8,85081,32628,62540,6.5,3.8,13.8,5.4,5.5,0.7,69.5,87.8,87 +447,13117,"Forsyth County, Georgia",Forsyth County, Georgia,57507,260062,66.3,4.1,39.4,5.5,1.1,73.8,12.5,NA,2.99,3.32,5.9,2.7,85,76179,94.1,56.6,86688,8.2,8.8,11,1.3,3.2,4.5,5.4,5.7,164032,55936,138000,5,3.3,7.9,5.4,5.8,1.9,93,96,97.2 +448,13119,"Franklin County, Georgia",Franklin County, Georgia,30097,23840,82.5,8.4,40.2,5.4,2.2,77.8,18.6,26.9,2.64,3.19,5.8,30.3,76.1,39837,82,16.9,8774,3.1,0.9,1.9,0.8,1.9,NA,NA,NA,73834,29576,52264,6.2,4.4,18.5,8.1,11.5,1.6,63.9,85.6,80 +449,13121,"Fulton County, Georgia",Fulton County, Georgia,50463,1068507,39.4,43.1,36.2,5.4,1.3,78.9,12.4,28,2.26,3.12,44,0.6,54.1,64507,93.6,58,457791,6.4,5.4,4.8,2,2.6,12.9,18.2,13.1,141480,61438,91490,4.7,5,9.7,4,4.9,1.1,87.1,93.3,92.4 +450,13123,"Gilmer County, Georgia",Gilmer County, Georgia,33495,31976,87.8,0.8,50,4.9,2.3,81.4,26.4,29.3,2.52,2.94,5.3,17.8,80.7,40908,85.9,22.7,12612,7.5,1.8,0.5,0.5,0.8,NA,NA,NA,84887,34175,72542,11,2,15.2,6.7,10.2,0.7,76.3,86.6,88.4 +451,13125,"Glascock County, Georgia",Glascock County, Georgia,33344,2913,86.9,11.8,43.2,3.9,1.8,78.5,18.2,NA,2.72,3.45,5.3,27.4,74.2,41078,83.9,14.9,1042,0,0.4,0,0,0,NA,NA,NA,69633,26537,55250,6.4,0.7,11.6,0,0.6,0,57.6,77.8,62.7 +452,13127,"Glynn County, Georgia",Glynn County, Georgia,34553,84987,64.6,24.6,43.3,5.2,2.5,78.9,22.3,NA,2.41,2.96,18.9,9,67,44597,89.6,30.4,34625,6,2,1,0.4,2,16.3,27.6,8.2,100024,41042,68546,8,4.6,14.1,4.1,8,0.4,74.5,89.5,85.3 +453,13129,"Gordon County, Georgia",Gordon County, Georgia,33396,58336,80.9,3.7,38.8,5.7,1.4,76.6,15.4,25,2.77,3.27,11.2,10,72.6,43511,79.5,17.7,20841,12,0.9,0.8,0,3.9,12.9,14.7,12.5,84572,31642,61997,6.2,3.6,15.1,2.8,6.8,0.2,73.2,87.6,82 +454,13131,"Grady County, Georgia",Grady County, Georgia,30668,26056,60.7,30.1,39.4,6.2,2.5,75.2,18.7,25.7,2.57,3.1,8.1,30.2,64.1,40945,80.4,15.3,10073,8.7,0.9,0,0,1.8,NA,NA,NA,72324,28055,54312,8.8,3.2,19.2,1.8,6.4,1.5,64.2,83.6,83.1 +455,13133,"Greene County, Georgia",Greene County, Georgia,35592,19586,60,30.7,52.3,4,2.6,82.3,30.4,28,2.48,3.02,7.5,14.7,79.1,48971,90.2,36.4,7846,3.5,1.9,0.8,0.3,0.3,NA,NA,NA,138416,56767,84530,8.5,5.9,15.4,5.6,10.5,0.8,77.1,86.1,84.7 +456,13135,"Gwinnett County, Georgia",Gwinnett County, Georgia,40432,966972,36.1,28.4,35.9,6.2,0.8,73.6,10.9,32.8,2.98,3.48,20.1,1.6,66.7,49530,87.9,38.7,322852,19.3,7,9,3.7,9.5,10.5,14,9.1,110170,37588,84823,5.3,3.9,15.4,7.6,9.8,2.5,88.1,95.2,93.2 +457,13137,"Habersham County, Georgia",Habersham County, Georgia,31117,46948,79.3,3.4,39.6,5.7,2.2,78.1,19,NA,2.78,3.35,8.4,20,74.7,39825,82.3,24.2,16048,9.6,1.2,1.8,0.3,2.1,13.6,16.1,11.6,84261,30661,65622,6.8,2.1,14,6.4,8,0.1,73.1,86,87.8 +458,13139,"Hall County, Georgia",Hall County, Georgia,36885,208395,67.4,6.8,38.2,6.1,1.6,75.8,16,NA,2.89,3.37,14.8,7.9,68.9,44984,81.3,26.7,71263,20.7,2,1.8,0.4,4.9,12.7,20.2,8.8,104904,37271,77430,6.2,3.7,16.7,7.9,10.6,1.3,80.2,92,93.1 +459,13141,"Hancock County, Georgia",Hancock County, Georgia,20458,8630,26.4,71.4,47.3,1.9,4.6,84.9,24.6,NA,2.48,3.17,6.2,42.6,77.5,33654,73.9,8.4,2852,0,0.5,0,0,0,NA,NA,NA,56721,19305,33182,5.8,6.7,8,0,0,0,53,69.9,59.5 +460,13143,"Haralson County, Georgia",Haralson County, Georgia,34918,30720,90.6,4.7,38.8,6.1,1.2,76.2,15.8,NA,2.65,3.2,8.3,14.4,71.1,46161,84.6,17.4,11510,1.9,1.2,0.1,0,0,NA,NA,NA,86278,32715,65016,7.3,4.5,12,0.1,2.9,1,66.9,89.1,83.9 +461,13145,"Harris County, Georgia",Harris County, Georgia,41873,35509,76.3,15.8,43.3,4.9,1.4,78.5,18.8,NA,2.77,3.18,2.6,5.9,88.3,57640,92.9,34.7,12637,2.9,1.7,0.7,0.1,0.2,NA,NA,NA,115910,42883,89184,12.6,5.9,7,1.1,1.7,1,79.9,93.1,86.5 +462,13147,"Hart County, Georgia",Hart County, Georgia,32145,26484,74.9,17.2,44.7,5,1.3,79.4,22.5,NA,2.44,3.01,5.6,24.4,75.1,39275,85,18.1,10543,3.7,0.6,1.2,0,1.7,NA,NA,NA,76891,31280,57241,8.3,4,13.3,11.4,12.1,0.8,66.2,87.6,84.4 +463,13149,"Heard County, Georgia",Heard County, Georgia,29255,11616,85.1,7.9,41.2,5.2,1.3,76.7,17.4,NA,2.65,3.19,7,29.5,72,42477,85.9,11.4,4342,1,1.6,1,1.9,0,NA,NA,NA,84725,32800,62907,11.6,5.2,14.5,5.3,9.1,0.1,59.1,81.8,74.4 +464,13151,"Henry County, Georgia",Henry County, Georgia,41243,245417,36.7,50.8,37,5.7,1.3,74.8,12.2,NA,2.89,3.42,12.9,2.9,72.5,50721,92.4,28,84498,5.9,3.3,2.2,1.5,1.6,9.4,14.3,7.8,100936,36051,81612,9.8,5.2,9.2,5.7,5.8,0.8,87.1,93.9,92.4 +465,13153,"Houston County, Georgia",Houston County, Georgia,42267,166902,55,31.6,36.2,6.3,1.1,74.4,13.4,NA,2.66,3.18,16,6.5,67.1,49879,93.2,32.3,62158,4.4,1.3,2.2,0.3,1.2,10.1,12.7,8.9,95174,36079,80743,16,4.5,10.8,3.4,7,0.3,81.4,91.8,91.9 +466,13155,"Irwin County, Georgia",Irwin County, Georgia,32974,9385,68,25.3,40.4,4.9,1.7,77.5,17.4,26,2.45,2.96,4.3,24.9,71.2,36225,83.6,16.6,3725,4,0.6,0.5,0,0,NA,NA,NA,65968,27128,53915,5.5,3.5,21.4,0,17,0,70.3,85.2,78.5 +467,13157,"Jackson County, Georgia",Jackson County, Georgia,38111,80640,79.8,7.7,38.1,6.2,1.2,74.7,14.5,NA,2.96,3.32,5.4,11.7,79.8,48369,87.6,27.3,26976,8.8,2.7,1.6,0.2,1.2,8.3,8.1,9.7,103982,35704,85012,6.7,3.1,11.9,6.7,7.6,0.2,82.2,91.3,91.5 +468,13159,"Jasper County, Georgia",Jasper County, Georgia,32266,15345,74.8,17.1,43.1,4.9,1.4,76.6,17.5,NA,2.62,3.05,2.6,17.7,84.2,44839,89,19.9,5812,3.9,0.3,0.3,0,0.6,NA,NA,NA,84289,31661,59574,5.7,6.7,11.2,4,3.8,0,70,85.2,80.1 +469,13161,"Jeff Davis County, Georgia",Jeff Davis County, Georgia,26505,14838,70.6,13.9,40.5,6,1.8,73.8,15.6,NA,2.74,3.5,7.2,35.4,68.4,41412,78,11.5,5368,11,0.2,1,0,2,NA,NA,NA,60733,23844,40879,8,4.6,21.8,2.2,11.4,0,58.6,87,75.2 +470,13163,"Jefferson County, Georgia",Jefferson County, Georgia,27266,15468,43.1,52.3,40.7,5.7,2.4,77.3,18.6,NA,2.56,3.09,7.4,29.7,67.9,34172,81.4,11.2,5838,4.7,0.9,0.4,0,1,NA,NA,NA,64222,25591,46561,7.4,5.4,17.5,4.2,8.9,0.1,56.6,86.1,79.3 +471,13165,"Jenkins County, Georgia",Jenkins County, Georgia,22294,8674,57.4,38,42.3,2.9,2.1,81.4,20.8,NA,2.5,3.15,5.1,31.8,87.4,28532,81.1,7.8,3067,1.5,0,0.1,0,0,NA,NA,NA,56984,21473,36906,6.1,5.7,17,0,7.6,0,63,80.3,71 +472,13167,"Johnson County, Georgia",Johnson County, Georgia,27051,9192,62.4,33.4,44.1,5.1,2.7,82,20,28.4,2.39,3.07,6.2,34.1,75.2,38363,75.3,9.1,3235,0.2,0.3,0,0,0,NA,NA,NA,65552,24652,54183,6.6,7.2,11.4,8.7,6,0.7,54.6,79.5,80.3 +473,13169,"Jones County, Georgia",Jones County, Georgia,36488,28526,70.7,25.1,41.4,5.3,1.7,77.2,18.1,NA,2.62,3.18,2.8,22.6,85.4,45442,91.7,18.4,10771,2.7,0.6,0.8,0,0.2,NA,NA,NA,88177,33522,68259,8.5,3.6,7.8,0,1,0,74.8,87.9,87.9 +474,13171,"Lamar County, Georgia",Lamar County, Georgia,35143,19098,66.5,28.5,38.7,5.5,1.1,78.4,17,NA,2.57,3.22,9.6,14,76.2,50692,89.7,19.5,7000,0.1,2.7,0,0,0,NA,NA,NA,87323,33389,68457,8.2,3.8,10.2,0.3,5.3,0.6,73.6,87.9,83.8 +475,13173,"Lanier County, Georgia",Lanier County, Georgia,28131,10094,66.6,24.5,36.7,6.3,1.8,77.2,14.5,23.9,2.83,3.26,2.6,29.5,71.8,36902,89.5,19.1,3442,3.9,1,2.4,0,0.9,NA,NA,NA,67210,25150,44361,12.7,1.6,15.5,4.4,5.4,1.8,72.8,90,86.2 +476,13175,"Laurens County, Georgia",Laurens County, Georgia,27757,49619,57.1,37.5,39.9,6.2,2.3,75.1,18.1,NA,2.69,3.31,12.2,23.6,65.3,39828,86.1,17.8,18133,2.2,0.9,0.4,0,0.4,22.4,30.8,18.6,76337,29642,49705,7.2,4.4,12.9,4.2,5.9,1.8,63.9,78.5,82.1 +477,13177,"Lee County, Georgia",Lee County, Georgia,42392,33337,68.1,23.4,37.2,6,1.3,74.1,13.7,23.2,2.7,3.06,12.8,6.1,73.5,55928,91.6,33.5,11960,2.5,2.6,1.6,0,0,NA,NA,NA,102982,37641,88024,9.1,3.5,8.3,3.2,4.8,0.7,83.1,91.8,89.5 +478,13179,"Liberty County, Georgia",Liberty County, Georgia,35084,66826,39.7,42.9,28.7,9.6,0.8,72.3,9.8,23.8,2.75,3.39,22.8,14.5,49.9,41159,92,19.9,23406,8.6,4.8,2.7,0.8,2,14.5,19.4,16,73038,27648,59013,19.7,7.9,10.6,6,6,0.2,78.5,92.2,93.1 +479,13181,"Lincoln County, Georgia",Lincoln County, Georgia,27876,7773,68.6,27.3,48.3,4,2.6,81,25.2,NA,2.59,3.01,3.8,28,79.1,38142,86.9,16.1,2976,1.1,0.9,0,0,0,NA,NA,NA,72199,28988,50688,7.8,4.3,12.9,5.1,2.8,4.1,61.1,72.2,61.2 +480,13183,"Long County, Georgia",Long County, Georgia,36010,17512,55.7,26,33.6,7.3,0.7,72.3,9.2,NA,2.96,3.3,6.7,31,63.3,37120,85.8,12.8,5836,10.8,2.3,1,0,3.3,NA,NA,NA,74088,26766,64747,16.5,5.4,10.4,2.2,4.3,0.5,76.4,91.5,89.8 +481,13185,"Lowndes County, Georgia",Lowndes County, Georgia,32118,119055,52.7,37.1,31.3,6.7,1.3,75.4,13,NA,2.55,3.22,20.9,7.6,56.1,43307,89.8,27.1,44928,5.3,2.1,1.5,0.3,1.1,20.3,27.2,12.6,75646,29757,55887,9.2,5.5,14.9,3.6,7.6,0.1,72.2,90.8,81.2 +482,13187,"Lumpkin County, Georgia",Lumpkin County, Georgia,30304,33931,90.6,1.8,36.9,4.7,1.4,82.9,18.2,28.2,2.75,3.2,6.1,16.9,78.4,42273,89.1,31.5,11374,6.9,1.7,1,0.5,1.2,NA,NA,NA,101512,36037,72388,6.7,5.7,12.4,9.7,8.3,0,79.6,84.8,90.8 +483,13189,"McDuffie County, Georgia",McDuffie County, Georgia,29784,21687,55,41.1,39.1,5.4,2.1,75,18.5,NA,2.58,3.12,9.5,28.1,65.2,38285,85.6,17.8,8298,2.4,0.7,0,0,0,NA,NA,NA,70384,28071,54058,8.1,4.1,11.2,4.2,4.8,0.2,66.5,83.7,75 +484,13191,"McIntosh County, Georgia",McIntosh County, Georgia,24852,11187,63.3,29.8,52.1,2.7,2.4,84.8,29.3,NA,2.33,2.81,4.5,36.1,80.2,34574,81.6,18.6,4784,0.9,1.3,0.3,0.2,0,NA,NA,NA,67198,29599,50348,8.1,1.6,11.5,2.5,6.9,0.2,70.5,85.7,82.9 +485,13193,"Macon County, Georgia",Macon County, Georgia,21891,11953,33.5,59.1,39.9,5.1,1.8,81.2,18.3,24.3,2.5,3.46,7.9,28.4,61.1,33001,76.2,11,3970,3.2,2.3,0.6,0,1.5,NA,NA,NA,72277,26030,37177,5.4,7.9,23.2,13.4,16.9,1.1,56.1,80.8,72.4 +486,13195,"Madison County, Georgia",Madison County, Georgia,32149,30914,79.4,9.2,39.8,6.3,1.8,76.6,18.1,NA,2.81,3.28,3.2,29.3,75.6,42098,81.9,20.2,10895,4.2,0.5,1.2,0,1.8,NA,NA,NA,75794,28436,58784,5.6,3.9,16.8,5.2,10.7,1.3,75.3,86.1,87 +487,13197,"Marion County, Georgia",Marion County, Georgia,31831,7474,59.1,28.8,43.9,4.7,1.5,79.7,21.3,NA,2.5,2.88,8.3,36.9,77.1,40704,76.2,13.6,2950,5.7,0.2,0.7,0.2,0.8,NA,NA,NA,65397,27096,50484,10.2,3.7,17.6,1.4,2.4,0,60.8,77.1,71.8 +488,13199,"Meriwether County, Georgia",Meriwether County, Georgia,28627,20757,57.7,38.2,43.6,5.5,2.2,78.4,20.9,NA,2.51,3.05,6.6,21.9,70.5,39573,82.2,13,8170,1.1,0.2,0.2,0,0.1,NA,NA,NA,68412,27400,56458,7.2,6.3,14.2,10.2,11.1,0.1,64.1,80.9,80.8 +489,13201,"Miller County, Georgia",Miller County, Georgia,29967,5873,65.6,27.3,42.8,5.6,4.1,77.1,21.8,NA,2.3,2.85,4.7,21.4,68.2,46581,83.6,21.9,2482,1.9,1.2,1,0.7,1,NA,NA,NA,74105,32027,58407,5.4,5.7,15.2,6.5,4.5,0,53.2,72.2,63.5 +490,13205,"Mitchell County, Georgia",Mitchell County, Georgia,30025,21441,47.2,46,39.9,5.7,1.4,77.1,18.1,NA,2.47,3.15,18,19.1,65.4,39034,84.5,12.9,7995,3.5,1.2,0,0.2,0.6,NA,NA,NA,64690,25820,51908,8.8,6.9,18.4,7.7,7.6,0,58,84.3,77.7 +491,13207,"Monroe County, Georgia",Monroe County, Georgia,37349,28919,73.4,21.6,42.5,4.9,1.2,79,18.8,NA,2.66,3.21,4.4,17.1,83,48002,90.8,28.7,10423,3.2,0.4,0.2,0.2,0,NA,NA,NA,117125,43106,82863,6.8,4.4,10.5,10.3,6.1,0.7,79,88.7,88 +492,13209,"Montgomery County, Georgia",Montgomery County, Georgia,26872,8675,67.6,23,38.2,5.3,1.6,79.5,17.4,26.7,2.59,3.18,5.5,38.8,76,42725,85.3,20.2,3021,5.9,0.6,0.1,0,2.3,NA,NA,NA,76175,27633,51188,5.6,3.6,14.5,6.7,9.9,0,63,84.8,80.6 +493,13211,"Morgan County, Georgia",Morgan County, Georgia,37340,20614,73.4,21.7,42.3,5.3,2.4,77.6,20.3,27,2.62,3.03,8.8,12.5,74.8,50610,91.3,30.1,7793,2.9,1,0.9,0.2,0.4,NA,NA,NA,105629,40661,85692,5.9,3.1,9.1,1.8,6.2,0.3,74.4,90,86.2 +494,13213,"Murray County, Georgia",Murray County, Georgia,32964,40282,87.3,0.6,39.3,5.9,1.1,76.1,14.9,NA,2.62,3,5.7,28.6,73.3,45328,78.7,13.7,15258,10.3,0.4,0.2,0.2,1.4,NA,NA,NA,82563,30205,67880,5,4.9,13.6,5.4,5.7,0.8,69.4,85.6,84.4 +495,13215,"Muscogee County, Georgia",Muscogee County, Georgia,33187,204383,39.3,46.7,35.1,6.9,1.8,75,14.4,NA,2.46,3.2,28.8,1.1,50.2,42096,89,29.7,80600,6.1,2,1.8,0.5,1.1,18.8,25.7,17.1,80102,32811,56622,14.3,5.9,11.3,4.6,4.2,0.8,73.6,89.1,87.4 +496,13217,"Newton County, Georgia",Newton County, Georgia,35092,115530,42,47.4,36.4,6.1,1.1,74.4,13.3,NA,2.82,3.25,7.3,3.6,73.9,43003,89.5,23.6,40531,5.2,1.1,1.1,0.8,0.9,12.3,16.3,8.5,88991,31537,73732,8.6,6.2,12.2,9.9,8.6,0.4,84.3,92.6,93.7 +497,13219,"Oconee County, Georgia",Oconee County, Georgia,48580,42788,83.7,3.3,40.7,4.8,1.6,73.8,16.1,25.3,2.89,3.19,4.4,3.8,81.6,63483,96.2,54.9,14721,4.7,2.3,4.1,0.3,1,NA,NA,NA,161413,55741,115925,6.5,2.7,6.3,1.6,4,0,89.3,94.8,94.7 +498,13221,"Oglethorpe County, Georgia",Oglethorpe County, Georgia,33554,15221,75.2,15.9,42.6,4.8,1.7,78.4,19,32.9,2.88,3.52,4.1,21.6,81.5,44215,87.6,24.5,5242,4,0.9,0.2,0,1.2,NA,NA,NA,84257,32062,69784,8.8,2.9,12.1,1.1,5.5,0.9,69.8,78.9,79 +499,13223,"Paulding County, Georgia",Paulding County, Georgia,43295,174292,66.1,22,36.7,6.2,0.8,74.3,11.4,NA,2.96,3.32,4.9,3.4,80.3,54358,91.4,27.4,58608,6.9,2.6,1.4,1.7,0.8,6.1,6.9,7.6,107510,36776,94557,8.5,4.3,10.3,5.2,5.7,1.6,87.6,94.1,94.9 +500,13225,"Peach County, Georgia",Peach County, Georgia,31464,28269,46.8,43.3,37.8,5.7,2.3,78.7,16.4,NA,2.6,3.19,14.9,11,70.5,43701,87.7,24.3,10284,6,0.5,0.6,1.1,1.6,NA,NA,NA,89113,33624,68365,11.6,4.7,11.2,1.2,5.1,0,74.3,88.7,84.6 +501,13227,"Pickens County, Georgia",Pickens County, Georgia,36228,34197,93.1,0.5,46.1,5,1.3,81,22.4,31.4,2.59,3,7.8,13.5,77.9,47777,89.9,24.9,13054,2.5,0.7,0.7,0,0.4,NA,NA,NA,94217,38359,75293,8,3.7,12.4,3.4,3.8,0,78.3,91.3,91.7 +502,13229,"Pierce County, Georgia",Pierce County, Georgia,32279,19996,84.7,9.8,40.3,5.5,1.5,75.3,17,NA,2.64,3.18,4.6,27.5,78.1,43404,86.7,18.3,7496,1.4,0.4,0,0,0.1,NA,NA,NA,78059,29266,56691,7.8,3.8,14.6,1.7,3.4,0,60.9,91.6,79.7 +503,13231,"Pike County, Georgia",Pike County, Georgia,40931,19540,87.7,8.5,39.9,5.5,1.9,76.5,16,NA,2.96,3.43,4.9,7,84.8,56742,90,21.4,6505,2.4,0.8,0.2,0,0,NA,NA,NA,102353,36105,84184,9.3,4.4,14.4,4.3,8.9,0.9,77.7,88.5,81.4 +504,13233,"Polk County, Georgia",Polk County, Georgia,31658,43365,75.5,11.9,38.5,6.5,1.3,74.6,15.5,29.5,2.76,3.28,11.5,10.5,64.5,39938,82.1,14.5,15588,9.9,1.4,0.2,0.1,2.2,19.4,29.1,11.2,74563,27807,55308,5.3,5.6,14,9.2,8.3,0.8,68.5,86.9,85.1 +505,13235,"Pulaski County, Georgia",Pulaski County, Georgia,25254,9893,58,33.2,43.7,5.3,2.1,81.7,23.2,NA,2.62,3.34,14.2,20.5,67.6,33878,80.1,12,3284,5.5,0.4,1.6,0,1.6,NA,NA,NA,65781,24849,47688,9.4,4.3,10.4,0,5.2,0,62.4,85,67.7 +506,13237,"Putnam County, Georgia",Putnam County, Georgia,34883,22524,66.8,25.6,47.4,4.6,1.1,80.4,24.5,NA,2.2,2.74,6.6,31.3,82.5,47479,87.9,28.3,10134,5.4,1.1,0.3,0.2,0.8,NA,NA,NA,96575,42671,64163,9.2,4.3,11.7,0.8,6.9,1.2,79.2,84.6,85.2 +507,13239,"Quitman County, Georgia",Quitman County, Georgia,21210,2092,48.4,49.9,59.4,1.3,1.6,90.3,33.4,NA,2.24,3.12,0,40.3,78.7,28300,82.2,9,935,0.6,0.4,0,0,0.6,NA,NA,NA,53721,24325,36838,17,33.8,21,0,6.4,0,40.2,61.4,63.4 +508,13241,"Rabun County, Georgia",Rabun County, Georgia,32173,17107,88.5,0.9,49.9,4.3,3,83.7,28.5,NA,2.36,2.81,6.4,12.8,77.4,39312,90.1,29.9,7113,5.2,3.5,0.1,0.1,0.8,NA,NA,NA,89324,38315,61466,8.4,1.5,13.6,2.4,6.9,0.7,77.5,87.2,88.9 +509,13243,"Randolph County, Georgia",Randolph County, Georgia,22648,6270,27.4,67.7,37.6,9.6,1.1,73.3,21,NA,2.29,3.13,34.6,12.1,49.5,26734,83.4,15,2644,0,0.2,0.3,0,0,NA,NA,NA,43795,21280,25425,4.4,10.9,7.7,0,2.2,0.8,50.5,83.3,81.1 +510,13245,"Richmond County, Georgia",Richmond County, Georgia,30147,206040,33.4,56.1,35,6.5,1.5,77,14.9,NA,2.62,3.43,25.3,6.3,51.4,37480,87.8,24.1,75023,4.8,2.3,1.9,0.8,1.1,21.1,33.1,13.2,73646,30209,53197,11.5,8,11.6,4,4.9,0.4,71.2,88.6,85.8 +511,13247,"Rockdale County, Georgia",Rockdale County, Georgia,37359,94293,28.3,57.7,39.2,5.5,1.6,76.1,15.4,NA,2.75,3.35,16.2,4.8,65.8,46372,90,29.1,33959,7.5,2.3,1.5,1.1,2.8,10.7,14.9,7.9,93791,34548,72349,8.8,5.3,14.1,7,9.4,0.4,82.9,92.2,91.1 +512,13249,"Schley County, Georgia",Schley County, Georgia,30325,4539,78.3,17.2,41.6,4.3,1.4,76.1,15.5,NA,2.79,3.39,5.9,35.4,79.2,41581,84.8,19,1627,2.9,0,0,0,0,NA,NA,NA,79111,30176,59647,7.5,3.9,9.9,0,3.7,0,67.7,82.8,80.3 +513,13251,"Screven County, Georgia",Screven County, Georgia,27544,14057,56,39.6,42.7,5.7,2.1,79.1,20.2,NA,2.88,3.56,5,29.8,71.4,34112,84.6,14.7,4763,1.6,1.1,0,0.1,0.4,NA,NA,NA,74726,29121,53017,8.6,4.7,11.5,0,1.1,0.3,66.5,82.8,81.6 +514,13253,"Seminole County, Georgia",Seminole County, Georgia,28109,9117,63.1,33.5,45.7,4.8,1.6,80,24.9,25,2.45,2.94,5.4,24.9,74.5,37299,89.3,15.8,3672,1.1,0.4,0.4,0,0.6,NA,NA,NA,69449,29184,49559,6.1,4.9,16.7,4.4,8.7,0,55.3,74.3,65 +515,13255,"Spalding County, Georgia",Spalding County, Georgia,32382,68215,56.9,35.4,39.2,6.3,1.7,76.6,18.8,28,2.53,3.14,15,5.6,63.7,39195,85.4,17.9,26535,4.3,0.9,1,0,1.7,18.7,31.1,12,93487,36803,60217,8.6,5.2,13.3,6.6,8.1,0.1,70.2,87,85.1 +516,13257,"Stephens County, Georgia",Stephens County, Georgia,27149,26842,81.3,10.6,41.2,6.3,2.1,77.9,20.5,25.1,2.53,3.05,11.9,18.1,72.1,36229,83.8,14.9,10276,2.2,2.3,0.1,0,0.6,NA,NA,NA,68056,27521,52264,8.7,5.5,13.5,2.4,4,0,69.1,85.6,81.6 +517,13259,"Stewart County, Georgia",Stewart County, Georgia,24073,4978,27.4,60.5,36.7,1.5,2.8,88.1,15.8,NA,2.09,2.57,10.7,33.5,58.4,28125,72.9,12.3,1756,1.5,4.2,0,0,0,NA,NA,NA,52615,21024,35000,8.5,3.1,18,0,0.7,0,50.7,76.3,66.6 +518,13261,"Sumter County, Georgia",Sumter County, Georgia,26555,29174,41.4,49.8,37,5.9,1.8,77.5,17.3,21,2.52,3.33,22.6,13.3,55,37802,84.3,21.3,10848,4.5,0.7,1,0.6,0.9,22.7,32.4,15.1,61974,24439,41877,5.7,4.9,13.3,5.6,8.8,0.7,59.9,84.6,84.8 +519,13263,"Talbot County, Georgia",Talbot County, Georgia,25927,5753,40.7,55.2,50.5,3.3,4,83.7,26.9,40.8,2.26,2.84,1.9,29.7,83.9,37235,82.9,15,2532,2.7,1,0.2,0,0,NA,NA,NA,66411,28737,45098,11.2,1.7,12.6,1,5.9,2.2,54.3,77.3,71.6 +520,13265,"Taliaferro County, Georgia",Taliaferro County, Georgia,24720,1740,41.7,44.7,44.8,5.1,7.1,82,27.1,NA,2.69,3.17,4.3,27.2,79,32628,83.5,9.9,644,3.4,0,0,0,0,NA,NA,NA,59531,24228,48036,10.2,5.2,13.6,0,4.3,0,55.7,68.5,66.9 +521,13267,"Tattnall County, Georgia",Tattnall County, Georgia,22077,24215,58.2,27.5,38.1,4.4,1.5,79.8,15.2,NA,2.59,3.28,7,33.1,72.4,35793,80.8,14.6,7551,10.1,0.8,0.1,0.1,1.7,NA,NA,NA,65203,21462,52351,7.8,7.2,13.7,0,1.7,1.8,66.8,83.4,79 +522,13269,"Taylor County, Georgia",Taylor County, Georgia,22587,7786,58.6,38.7,42.9,5,3.4,80,21.5,NA,2.47,3.09,8.8,31.9,61.6,41129,77.7,18.1,3061,1.9,2.2,0,0,1.5,NA,NA,NA,61978,25791,41743,6.4,6.3,10.1,0,0,0,61.3,84.9,74.3 +523,13271,"Telfair County, Georgia",Telfair County, Georgia,19314,12174,51.8,36.8,39.4,4.1,2.4,77.2,17.9,NA,3.14,3.87,10.1,20,71.1,37493,78.5,10.1,3123,1.3,0,0,0,0,NA,NA,NA,60824,17226,44948,6.5,3.2,12.7,4,5,6.2,58.6,72.5,75.2 +524,13273,"Terrell County, Georgia",Terrell County, Georgia,27256,8941,36.4,59.9,41.4,5.4,2.4,77.2,20.3,24.7,2.57,3.11,13,13.4,56.5,34267,77.8,11.5,3355,3.2,1.6,0,0.1,1,NA,NA,NA,65679,24665,43812,6.9,9.2,15.6,3.6,2.3,2,62.4,77.3,77.1 +525,13275,"Thomas County, Georgia",Thomas County, Georgia,32778,45696,58.3,35.8,39.9,6.1,1.6,76.2,18.6,20.1,2.45,3.09,15.6,17.5,61.9,44285,88,23.6,18369,3.3,0.7,0.7,0.4,0.7,17.9,24.5,13.7,80709,33284,60140,7,5.1,10.8,3.5,5.7,0.9,67.4,86.7,84.2 +526,13277,"Tift County, Georgia",Tift County, Georgia,31579,41322,57.2,29,37.3,6.6,1.5,74.9,15.5,22.1,2.54,3.11,15.1,20.9,61,40459,85.7,20.2,15541,10.6,0.6,1.2,0.1,2.7,20.9,30.1,12.8,74905,29381,53165,5.7,2.8,16,2.8,6.5,0.8,63.7,79.1,73.9 +527,13279,"Toombs County, Georgia",Toombs County, Georgia,28169,26943,63.3,23.8,37.2,7,1.9,73.6,17,22.6,2.61,3.4,12.8,25,65.7,41185,83.9,19.5,10127,9.8,0.9,1.4,0,3.3,NA,NA,NA,71820,27940,54130,6,3.5,16.6,0.4,8.9,0.2,64.1,87.5,81.9 +528,13281,"Towns County, Georgia",Towns County, Georgia,28687,12739,93.5,1.7,56.9,3.3,3.7,87.5,36.3,21.7,2.04,2.48,7.6,17.7,80,36192,93,32.8,5819,2.9,1.4,0,0.2,0,NA,NA,NA,87056,39773,58400,9.7,3.9,13.2,13.2,7.1,0.2,75.7,84,87.5 +529,13283,"Treutlen County, Georgia",Treutlen County, Georgia,24459,6387,64.5,31.3,39.6,6.7,2.2,76.7,18.5,NA,2.55,3.31,11.4,29.9,60.2,42982,74.8,12.8,2307,0.2,0,0,2.8,0,NA,NA,NA,64270,25728,43750,4.8,7.1,13.4,0,4.2,0,51.8,77.2,73.2 +530,13285,"Troup County, Georgia",Troup County, Georgia,31457,69821,55.8,36.5,37.2,6.2,2.3,75.4,15.6,NA,2.61,3.22,20.7,4.9,57.9,41497,87.9,22.5,26222,3,1.3,1.8,0.1,1.7,18.5,26.1,14.1,80636,31830,54905,6.7,5.3,11.2,4.5,5.7,0.4,69.2,85.5,86.1 +531,13287,"Turner County, Georgia",Turner County, Georgia,26541,8915,55.9,37.6,37.4,7.3,1.3,74.5,19.3,NA,2.59,3.35,15.4,23.3,63.9,33869,80.6,11.1,3298,6.9,0.6,0,0,3.9,NA,NA,NA,58694,23275,39565,6.9,12,13.1,0,5.3,0,51.9,81.8,69.9 +532,13289,"Twiggs County, Georgia",Twiggs County, Georgia,31231,7869,55.4,40.6,47.2,4.6,2.3,81,24,27.8,2.73,3.44,2.1,36.7,89.7,39661,77.8,10.9,2849,0.8,2.8,0.3,0,0.1,NA,NA,NA,82871,32037,55439,10,4.5,12.6,9.4,10,1.2,56,75.9,72.8 +533,13291,"Union County, Georgia",Union County, Georgia,31417,25598,93.5,0.9,55.9,3.8,4,84.7,33.9,22.2,2.27,2.7,6.1,14.4,82.7,37382,88.8,25.7,11012,2.9,1.3,1,0.4,0.5,NA,NA,NA,93705,40312,65697,11.4,3.2,12.7,16,14,0.3,75.6,84.5,88.3 +534,13293,"Upson County, Georgia",Upson County, Georgia,28438,27856,67.7,26.5,41.4,6.2,2,76.9,18.4,NA,2.64,3.29,13.5,12.2,62.7,41016,85.5,14.8,10377,1.9,0.5,0,0,0.3,NA,NA,NA,74428,29772,50904,8.1,2.7,11.5,1.4,8.5,1,68.8,83.7,83.2 +535,13295,"Walker County, Georgia",Walker County, Georgia,30259,68449,90.5,4.4,41.8,5.4,2.1,78.6,19.1,NA,2.55,3.13,8.6,12.2,75.7,40567,85.3,20.1,26181,1.7,0.5,0.4,0.3,0.5,13.8,18.7,11,76404,30482,55887,6.8,4.5,13.2,5.5,8.1,0.6,72.5,87.3,86 +536,13297,"Walton County, Georgia",Walton County, Georgia,38029,100361,72.1,19.7,39.7,5.8,1.7,75.8,16,NA,2.84,3.26,6.2,6.2,79.2,48268,87.3,24.9,34951,4.5,1.8,0.9,1.3,0.8,12.2,20,10.1,103621,36752,82381,7.7,4.9,11.5,5.8,8.4,0.5,81.1,88.8,90.4 +537,13299,"Ware County, Georgia",Ware County, Georgia,27413,35958,62.1,29.9,38,6.3,2.1,75.1,17.1,NA,2.61,3.51,15.4,19.8,61.5,33880,81.5,15,12866,2.7,0.8,0.8,0,1.7,22.8,35.1,18.2,60583,23550,44833,6.1,5,16.3,0.5,3.5,0.7,53.3,88,72.4 +538,13301,"Warren County, Georgia",Warren County, Georgia,26667,5175,39.4,57.6,45.3,6.6,2.5,79.8,23.1,NA,2.55,3.22,6.5,36.4,75,34462,77.8,12.7,1999,2,0,0.3,0,0,NA,NA,NA,58075,24793,46776,6.9,7,7.4,0,0,0,54.8,72.8,61.9 +539,13303,"Washington County, Georgia",Washington County, Georgia,26110,19893,42.3,51.6,40.6,5.3,1.7,78.4,18.2,23.2,2.48,3.06,7.5,31.1,66.9,36804,84.7,17.5,7272,1.3,1.4,0.2,0,0.4,NA,NA,NA,64971,24825,44009,6.5,4.3,13.5,1.5,3.4,0.7,60.1,76.7,80.5 +540,13305,"Wayne County, Georgia",Wayne County, Georgia,28068,30519,72,19.9,38.9,5.7,1.6,75.7,16.3,27.9,2.59,3.15,5.7,33.3,65.9,38455,86.3,14,11045,3,0,0.8,0.1,0.7,20.5,28.4,12.3,65837,25077,49562,6.4,6.3,18.8,4.1,7.3,0,59.6,89.6,83.6 +541,13307,"Webster County, Georgia",Webster County, Georgia,19785,2348,46,49,42.8,4.2,2.2,86,19.5,NA,2.76,3.67,4,48.9,82.6,35743,84.1,11.3,849,9,1.1,0,0,2,NA,NA,NA,58415,25407,40764,5.6,0.9,20.8,0,3.3,0,56.4,76,71.1 +542,13309,"Wheeler County, Georgia",Wheeler County, Georgia,19946,7434,59,38.5,39.5,3.3,2,84.1,14.7,NA,4.24,5.8,11.4,26.1,68.8,30050,76.7,12.2,1545,1,0.1,0,0.1,0.3,NA,NA,NA,55443,19272,45262,5.7,7.8,23.5,3.3,5.7,3.1,60.3,74.9,77.4 +543,13311,"White County, Georgia",White County, Georgia,32043,28454,90.7,2,45.4,4.8,1.3,80.7,22.9,NA,2.68,3.08,6.3,20.2,77.8,42484,84.4,24.3,10422,2.7,2.3,0.5,0.1,1,NA,NA,NA,89020,34519,69747,8.3,2.2,12.4,4.9,7.1,0.2,77.9,87.9,86.7 +544,13313,"Whitfield County, Georgia",Whitfield County, Georgia,32066,103118,69.7,3.4,36.6,6.3,1.6,74.7,14.7,NA,2.82,3.34,15.7,12.7,68,39039,75.4,19.3,36101,26.2,0.8,1.4,0.1,6.5,13.7,22.1,10.6,85577,30593,64262,4.7,5.4,17.5,9,8.8,0.6,68.8,87.1,87.2 +545,13315,"Wilcox County, Georgia",Wilcox County, Georgia,27438,8784,61.3,33.5,41.3,4.6,1.3,81.3,19.5,NA,2.8,3.46,2.7,34.1,73,39318,78.9,14.1,2504,1.2,0,0,0,1,NA,NA,NA,62360,21028,48036,4.4,5.5,14.6,2.2,1.8,0.4,53,76.4,71.7 +546,13317,"Wilkes County, Georgia",Wilkes County, Georgia,28047,9553,52,41,46.3,5,2.2,79.4,23.7,NA,2.29,3.03,11.3,24.1,66.7,33554,82,15.7,4108,4.6,0.4,0.2,0,0.9,NA,NA,NA,72273,30123,52542,7.1,1.8,18.6,10,26.7,0.6,56.8,68.8,61.5 +547,13319,"Wilkinson County, Georgia",Wilkinson County, Georgia,27319,8795,55.4,38.2,43.2,5.3,2.9,78.4,20.1,NA,2.59,3.4,4.9,27,83,35203,89.6,12.7,3347,1.4,0.1,0.2,0,1.1,NA,NA,NA,60298,25742,46673,5.8,5.3,12.4,3.8,6.7,0.1,60.2,80.6,77.6 +548,13321,"Worth County, Georgia",Worth County, Georgia,30339,20575,67.6,24.2,43,5.8,2.7,77.7,20.1,28.6,2.59,3.14,6.4,33.4,72.5,40127,86.5,11.3,7876,1.3,1.5,2.5,0.1,1.4,NA,NA,NA,70790,28059,57201,7.4,6.1,14,0,5.6,0.2,63.5,84.4,74.2 +549,15001,"Hawaii County, Hawaii",Hawaii County, Hawaii,37483,203684,31.1,0.8,44.1,5.3,2.2,79.2,23.2,NA,2.76,3.32,14.6,0.7,73.1,44228,93.1,30.9,72958,3.4,2.5,18.7,5.7,3.8,14.6,18.9,10.6,103758,38406,77215,7.9,5.9,4.2,3.5,3.2,0.8,78.7,88.6,89.6 +550,15003,"Honolulu County, Hawaii",Honolulu County, Hawaii,45843,1003666,18.8,2.4,39.4,5.8,3,79.2,19.1,27.1,2.88,3.45,40.9,0.3,59.5,55165,92.9,37.7,337061,3,1.9,28,1,6.1,9.1,11.4,8.7,133753,46361,104264,8.7,4.5,3.4,2.5,2.6,0.4,82.9,91.4,91.5 +551,15005,"Kalawao County, Hawaii",Kalawao County, Hawaii,25313,43,25.6,0,39.9,0,9.3,100,25.6,NA,1.23,2,4.5,0,0,NA,74.4,32.6,22,0,0,0,0,0,NA,NA,NA,67936,39742,86250,2.3,0,2.4,NA,NA,0,50,90.9,95.5 +552,15007,"Kauai County, Hawaii",Kauai County, Hawaii,40952,73610,30.1,0.6,42.7,5.4,2.3,78.6,21.8,21.7,3.1,3.6,15.4,0.2,67.3,47325,92.7,30.2,23465,2,2.5,17.1,1.7,3.1,8.8,11.2,8.9,124027,42553,93612,6.9,4,4.1,2.5,3.6,0.6,80.4,91.4,93.8 +553,15009,"Maui County, Hawaii",Maui County, Hawaii,43124,164632,31,0.8,42.9,5.4,2,78.8,20,22.8,2.92,3.4,22.2,0.7,65,49052,92.8,30.1,55485,3.5,2.8,18.8,0.8,3.8,9.8,11.8,8.1,127716,44403,95076,5.4,5.5,4.5,5.6,4.3,0.5,80.6,90.5,88.7 +554,16001,"Ada County, Idaho",Ada County, Idaho,42419,508052,84.8,1.3,38.3,5.2,1.5,77.5,15.7,NA,2.51,3.01,16.9,3,71.4,52567,95.1,43.9,196700,5.5,2.6,2,1,1.4,8.5,9.4,7,121034,47768,88907,8,2.9,6.7,3.2,4.4,0.4,90.4,93.7,94.4 +555,16003,"Adams County, Idaho",Adams County, Idaho,31719,4599,91.6,0.2,54.3,3.3,1.3,82.9,30.4,NA,2.58,3.07,3.7,6.4,83.1,40577,92.9,21.3,1752,1.8,0.3,0,0.2,0,NA,NA,NA,88154,36308,59286,10.8,6.6,11.9,14.3,11.5,0,79.2,76.1,77.2 +556,16005,"Bannock County, Idaho",Bannock County, Idaho,32854,88457,84.3,0.9,35,6.3,1.4,74.6,15,18.3,2.56,3.25,19.5,7.6,68.6,42322,93.8,30.2,33340,4.5,1.6,1.3,0.5,0.8,12.2,13.8,9.2,83414,32268,64080,7,3.4,7.2,2,3.1,0.6,81.7,89.7,87.5 +557,16007,"Bear Lake County, Idaho",Bear Lake County, Idaho,33679,6552,94.4,0.3,40.2,6.5,1.8,72.9,20.9,29.9,2.81,3.47,4.6,6.2,85,41791,93,20.3,2308,4.2,1.4,0.6,0.6,1.3,NA,NA,NA,82325,32301,67304,6.2,1.7,7.7,3.9,4.1,0,73.7,88.7,89.6 +558,16009,"Benewah County, Idaho",Benewah County, Idaho,30673,9913,85,0.7,46,5.3,1.6,77.9,23.5,23.2,2.47,2.96,7.4,19.9,75.7,41418,84.4,19.8,3978,2,1.9,0.4,0.9,0.8,NA,NA,NA,75989,31054,56553,11.4,3.9,14,31.1,13.7,0.2,63.6,79.5,82.8 +559,16011,"Bingham County, Idaho",Bingham County, Idaho,32453,48993,79.1,0.3,34.8,7,1.6,70.3,14.8,21.9,3.03,3.51,8.4,11.5,80.6,44731,89.2,20.8,16009,12.9,1.6,0.8,1.2,1.8,11,13.3,7.8,96148,31676,76842,6.5,4.5,8.9,4.3,4.8,1.2,80.8,90.5,89.5 +560,16013,"Blaine County, Idaho",Blaine County, Idaho,41033,24579,80.3,0.5,45.5,3.1,1.8,80.4,21.8,17.7,2.46,3.06,23.2,1.8,75.5,43364,91.2,45.5,9822,15.6,4.1,0.1,0.3,4,NA,NA,NA,121425,51123,84470,7.7,2.9,10.3,1.4,7,0,87.2,94.3,95.5 +561,16015,"Boise County, Idaho",Boise County, Idaho,35692,8045,87.4,0.2,53.5,3.8,2.3,84.6,27.3,NA,2.27,2.69,1.4,15.5,88,43703,95.6,29.9,3524,6.5,1.6,0.4,0.1,0,NA,NA,NA,88157,38398,77349,13.4,3,11.2,6.3,12.5,0,87.1,84.4,90.2 +562,16017,"Bonner County, Idaho",Bonner County, Idaho,31929,49456,91,0.3,48.2,4.5,2.4,80.4,26.1,NA,2.5,3.01,9.8,13.1,77.6,39090,91.6,28.9,19599,2.7,2,0.6,0,0.3,10.7,17,8,91015,37755,65168,10.4,3.4,10.5,3.9,6.9,0.1,78.7,86.9,87.4 +563,16019,"Bonneville County, Idaho",Bonneville County, Idaho,34180,127056,85.4,0.5,33.3,7.6,1.3,69.8,13.7,21,2.89,3.54,17.8,4.1,71.6,45309,92.1,32.2,43378,11,1.7,0.6,0.2,1.3,9.5,12.3,6.9,99403,34508,76646,8.1,3.4,8,4,4,0.2,82.8,91.9,92.5 +564,16021,"Boundary County, Idaho",Boundary County, Idaho,32808,12695,88.8,0.7,42.8,6.5,1.6,76.7,23.6,20.6,2.59,3.05,5.4,12.8,78,41921,87.2,19.6,4835,3.3,4.6,1.2,1,0,NA,NA,NA,75791,29672,62438,11.8,3.1,13.6,19.1,16.1,0,78.1,86.1,89.3 +565,16023,"Butte County, Idaho",Butte County, Idaho,28098,2654,92.3,0,39.2,4.8,2,73.4,19.9,NA,2.58,3.64,9.7,14.8,77.4,34013,87.6,13.8,1017,11.2,1.1,0,0,3,NA,NA,NA,64273,25940,43281,10.4,2.6,7.6,0,0,4.1,68.9,82.3,87.6 +566,16025,"Camas County, Idaho",Camas County, Idaho,31406,1155,78.1,0,34.9,8.8,0.9,66.8,14.9,NA,3.41,4.79,2.9,9.1,75.8,39444,86,27.4,339,6.2,2.1,0,0,0.6,NA,NA,NA,79094,29735,55536,8.9,0,14.4,9.6,8.6,0,82.3,87.3,86.1 +567,16027,"Canyon County, Idaho",Canyon County, Idaho,34803,242405,74.3,0.7,34.8,6.8,1.3,72.8,14.4,NA,2.87,3.33,10.7,7.1,75.1,42299,87.7,22.8,82864,17.6,2.6,0.8,0.3,3.3,10.1,12.3,9,88851,30761,72355,9,2.7,11.7,8.2,8.3,1.3,82.6,92,92.8 +568,16029,"Caribou County, Idaho",Caribou County, Idaho,28990,7118,91.9,0,38,6.4,1.7,72.5,17.9,NA,2.89,3.69,4.8,13,82,39773,90.5,15.5,2430,2.6,0.7,0.2,0,0.2,NA,NA,NA,78848,30255,66653,6.8,3.3,7.3,1.5,1.4,0.3,80.5,88.9,92.8 +569,16031,"Cassia County, Idaho",Cassia County, Idaho,34317,25165,72.3,0.1,33.1,7.9,1.2,68.8,13.7,17.8,3,3.49,9.6,8.7,70,41121,85.4,20.9,8238,23.2,0.7,0.7,0.8,6.2,NA,NA,NA,88788,30688,67042,4.4,1.7,11.5,5,7.3,0.3,75.5,89.1,88.4 +570,16033,"Clark County, Idaho",Clark County, Idaho,32434,776,67.1,0,33.4,8.9,0.9,71.1,13.1,NA,2.95,4.58,0,22.2,63.9,35242,75.7,17.3,252,37.3,0,0,0,23.4,NA,NA,NA,58492,22917,52083,1.8,2.2,17.4,0,0.9,0,63.1,81.7,84.5 +571,16035,"Clearwater County, Idaho",Clearwater County, Idaho,30574,8921,89.9,0.2,52,3.7,2.2,84.7,28.5,23.9,2.28,2.87,3.5,24.6,81.6,42095,91.1,19.4,3561,2.4,1,0.5,0.3,0.8,NA,NA,NA,72440,31608,57961,11.9,3.4,12.3,8.6,15.1,0.6,75.3,75.7,82.3 +572,16037,"Custer County, Idaho",Custer County, Idaho,28196,4411,89.9,0.3,59.5,2.5,1.3,88.9,36.1,16.8,2.17,2.67,6.5,22.1,77.7,23782,93.6,25.2,1933,1.5,0.6,0,1,0,NA,NA,NA,65974,29993,56957,13.5,2.6,14.1,0,3.2,0,76.1,83.3,86.1 +573,16039,"Elmore County, Idaho",Elmore County, Idaho,34764,29046,74.5,3.2,32.5,7.7,1.6,75.5,14.2,22,2.56,3.16,13.8,12,65.3,43606,88.1,21.2,10848,10.2,1.9,3.5,0.7,2.2,NA,NA,NA,76919,30146,58976,20.9,5,12.2,6.2,8.2,0.8,81.2,88.6,91.1 +574,16041,"Franklin County, Idaho",Franklin County, Idaho,30550,14715,91.9,0,32.5,7.6,1.9,69.1,14.1,NA,3.01,3.44,9.7,4.7,75.2,45729,94,21.5,4870,8.2,2.9,0.7,0.3,1.1,NA,NA,NA,91877,30698,65991,4.4,1,11.3,14.3,12.1,0.1,83.9,91.3,94.5 +575,16043,"Fremont County, Idaho",Fremont County, Idaho,31873,13701,88.8,0.3,39.9,6.1,1.4,75.9,17.8,NA,2.93,3.37,3.9,16.4,84.2,37244,90.7,21.8,4506,12.1,1.3,0,0,2.5,NA,NA,NA,90888,32085,72767,6.5,4.4,12.2,3.7,5.1,1,83.4,93.7,92.1 +576,16045,"Gem County, Idaho",Gem County, Idaho,31885,19854,87.2,0.2,42.8,5.3,1.6,77.6,22.7,NA,2.65,3.02,6.2,11.5,76.6,42045,89,22.3,7406,7.6,2.4,1.2,0.1,0.4,NA,NA,NA,87429,34695,66245,9.5,2.7,11.9,10.4,10.2,2.5,79.4,83.8,89.4 +577,16047,"Gooding County, Idaho",Gooding County, Idaho,28552,15740,72.1,0.1,38.4,6.2,1.2,72.9,18.2,22.8,2.84,3.51,10.8,15.5,71.4,36508,79.8,17.1,5512,19.3,0.5,0.5,0.1,6.2,NA,NA,NA,81334,29647,62395,7.7,2.6,19.6,18.3,13.7,1.1,68.9,86.7,85.2 +578,16049,"Idaho County, Idaho",Idaho County, Idaho,32187,17120,91.6,0.1,49.6,5.4,2.3,80.2,28.6,19.7,2.51,3.04,5.1,13.2,80.1,40559,91.8,22,6567,4.3,1.2,0.9,0.5,0.6,NA,NA,NA,77479,32073,60975,10.7,4.2,15.3,23.5,22.3,0.5,77.2,79.3,83.9 +579,16051,"Jefferson County, Idaho",Jefferson County, Idaho,36158,32234,88.3,0.1,32.3,7.4,1,67.1,11.5,NA,3.24,3.66,5.9,6.7,82.4,46155,93.3,27.2,9899,14.8,2.2,0.1,0.1,0.8,NA,NA,NA,95822,30733,82952,5.6,1.6,8.6,4.1,4.1,0.7,88.2,93.9,94.3 +580,16053,"Jerome County, Idaho",Jerome County, Idaho,32816,24788,69.9,0.1,33.6,7.5,1.7,70,13.3,NA,3,3.4,5.9,9.4,75.5,40136,73.4,13.4,8198,29.7,1.2,1,0.1,9.1,NA,NA,NA,87894,29033,69338,6,2.7,15.8,3.9,9.9,1.4,75.8,89.4,87.1 +581,16055,"Kootenai County, Idaho",Kootenai County, Idaho,37079,177736,88.2,0.3,40.8,5.5,2,77.4,19.7,22.4,2.54,3.02,16.6,7.3,72.2,46279,94.4,28.8,69104,3.1,1.3,0.8,0.2,0.3,9.3,12.4,6.6,98298,38797,77034,10,3.1,9.6,5.5,5.4,0.3,82.8,90.8,91.1 +582,16057,"Latah County, Idaho",Latah County, Idaho,30743,40315,88.6,1,30.7,4.9,1.5,81.1,14.5,18.1,2.22,2.79,29.5,10.5,60.6,46305,96.9,44.9,16058,2.8,1.9,2.9,0.9,0.3,NA,NA,NA,86327,35157,65179,5.7,4.6,7.4,8.9,5.7,0.2,88.5,90.1,89.7 +583,16059,"Lemhi County, Idaho",Lemhi County, Idaho,24544,8166,92.1,0,53.1,4.7,3.4,81.7,30.4,14.8,2.38,3.43,11,14.9,81.3,33426,92.7,22.9,3350,1.3,0.7,0.3,0.9,0.5,NA,NA,NA,72897,33896,52057,10.3,4,6.8,0,2.7,0,68.5,80.3,85.1 +584,16061,"Lewis County, Idaho",Lewis County, Idaho,27722,3649,83.4,1.7,48.9,4.8,2.4,78,27.8,20.8,2.31,2.94,6.6,11.8,74.2,38641,90.8,20,1546,3.2,0.5,0.5,1.4,0.8,NA,NA,NA,69631,29737,49643,10.5,3.1,12.5,21,13.9,0.1,72.9,76.2,80 +585,16063,"Lincoln County, Idaho",Lincoln County, Idaho,33226,5276,69.4,0.6,37.2,6.2,1.7,74,15.5,34.9,2.84,3.38,1.9,21.7,76.9,39620,82.5,11.6,1836,22.1,0.5,0,0.3,3.2,NA,NA,NA,76232,28597,66038,7.9,5.8,15.5,11.6,7.4,1.9,70.3,87.7,83.7 +586,16065,"Madison County, Idaho",Madison County, Idaho,12642,53578,88.1,0.9,21.4,6.9,0.6,79.5,5.3,NA,3.45,3.56,50.2,4.8,40.2,37964,97,40.3,12778,11.9,2.6,3.2,0.2,0.6,26.8,15.4,9.6,89770,23024,58259,1.7,5.8,5.3,2.8,1.9,0.9,92.7,96.1,79.2 +587,16067,"Minidoka County, Idaho",Minidoka County, Idaho,34080,21922,72.1,0.3,34.5,7.1,1.4,70.8,15.7,NA,2.79,3.31,8.8,9.3,72.8,42369,82.1,16.8,7814,23.7,1.2,0.6,0,4.9,NA,NA,NA,85696,31693,70060,5.9,2,13,14.6,7.5,0.5,67.5,86,86.7 +588,16069,"Nez Perce County, Idaho",Nez Perce County, Idaho,36774,42477,88.4,0.1,40.9,5.4,2.7,78.6,20.6,17.1,2.39,2.89,15.5,9.1,72.2,48216,92.9,26.8,17250,1.7,1,1,0.8,0.8,13.1,17.6,8,91289,37859,71466,8.5,2.6,8.8,4.7,8.8,0.1,78.3,87.7,86.5 +589,16071,"Oneida County, Idaho",Oneida County, Idaho,34051,4681,94.1,0.4,40.2,6.4,2.8,73.3,19.5,26.1,2.4,2.9,1.4,3.7,87.2,39107,94.2,26.2,1932,7.8,2.5,0.2,0,0.2,NA,NA,NA,81664,30895,72563,7.5,1.8,7,0,3.6,1.7,72.4,83.7,85.6 +590,16073,"Owyhee County, Idaho",Owyhee County, Idaho,28708,12284,73.1,0.5,38.3,6,1.8,75,19.1,NA,2.85,3.47,6.1,21.6,70.9,38503,77.7,13.7,4248,17,0.6,0,0.9,7.6,NA,NA,NA,72147,26059,59773,7.4,2.2,21.1,49.7,21.9,7.3,69.8,86.5,84.7 +591,16075,"Payette County, Idaho",Payette County, Idaho,35954,26190,82.5,0.1,38.8,6.4,2,74.3,19.3,22.5,2.74,3.25,7.6,13.9,74.5,45154,86.7,19.6,9481,9.2,1,0.1,0.5,1.7,NA,NA,NA,81314,30362,65723,10.4,2.6,8,0,2.7,0.2,78.7,88,86.5 +592,16077,"Power County, Idaho",Power County, Idaho,31850,8018,65.4,0.9,33.9,5.3,1.5,69.6,15.7,16,2.93,3.38,7.2,22.5,74.6,36503,88,16.7,2708,23.8,0.5,0,0.6,7.8,NA,NA,NA,72022,25083,59760,3.7,3.5,16.9,7.4,14,0,79.8,90.5,89.8 +593,16079,"Shoshone County, Idaho",Shoshone County, Idaho,27971,13580,90.9,0.9,45.1,6.2,2.1,79.2,22.8,20.3,2.34,3.18,10.7,11.7,73.8,36885,88.8,11.5,5679,1.1,1.9,0.3,0.2,0.8,NA,NA,NA,63447,27965,49975,9.9,5.1,10.8,2,3,0,70.9,81.5,84.9 +594,16081,"Teton County, Idaho",Teton County, Idaho,47188,12101,82.4,0,39.8,5.8,1.4,76.8,13.5,29.9,2.64,3.28,17,5.4,79.8,50024,92.6,48.3,4573,10.3,2.9,0.1,0.1,2.2,NA,NA,NA,117932,46968,90740,3.7,1.1,14.7,15.9,14.3,1.3,86.9,94.1,94.1 +595,16083,"Twin Falls County, Idaho",Twin Falls County, Idaho,33095,92121,81.6,0.9,35.8,6.4,1.6,73.3,16.4,18,2.67,3.2,14.2,7.1,69.6,41859,88.7,23,33912,11.7,2.7,1.1,0.3,2.8,10.7,15.2,8.1,86618,33505,65338,7.6,2.2,10.1,3.1,5.2,0.1,78.9,89.6,90 +596,16085,"Valley County, Idaho",Valley County, Idaho,29516,12136,95.1,0.1,49,4.7,2,81.6,26.5,15.2,3.15,3.35,8.4,8,85.8,29784,91,35.4,3778,1,1.2,0.1,0.8,0,NA,NA,NA,110257,38932,76125,10.4,3.3,10,0.5,5.2,0,87.6,91,90.4 +597,16087,"Washington County, Idaho",Washington County, Idaho,27237,10866,83.3,0.1,44.6,5.1,2.1,77.5,25.7,NA,2.61,3.08,8.1,13.6,73.3,36784,88.7,19,4089,11.8,1.7,1.5,0.1,5.6,NA,NA,NA,69532,27769,53608,8.7,4.4,9.8,2.6,8.7,0,75.3,81.1,86.6 +598,17001,"Adams County, Illinois",Adams County, Illinois,37588,65166,91,3.6,41.1,6,2.9,77.3,20.1,17,2.29,2.97,14.9,4.5,72.5,45731,93.5,27,27770,1.7,0.9,1.1,0.2,0.3,12.3,15.4,12,83547,36317,64962,8.1,3.4,4.8,5.3,3.8,0.2,71.5,83.3,84.3 +599,17003,"Alexander County, Illinois",Alexander County, Illinois,28937,5042,63.2,32.6,45.8,4.7,1.9,78.3,24.2,31.5,2.69,3.75,10.2,17.7,77.7,36973,86.7,12.6,1826,0.5,0,0.1,0,0,NA,NA,NA,59752,25261,43523,10.3,10.6,11.1,9.3,4.7,1.8,33.9,67.5,58.5 +600,17005,"Bond County, Illinois",Bond County, Illinois,33880,16627,88.8,6.9,40.4,3.9,2.2,81.8,18.3,NA,2.33,3.05,9.7,13.6,73.9,38409,89.3,21.2,6256,2.3,0.8,0.1,0,0,NA,NA,NA,84409,32665,61603,6.6,2.9,3.6,3,1.5,0.1,72,86.4,85.1 +601,17007,"Boone County, Illinois",Boone County, Illinois,38755,53316,74.2,2.5,39.5,5.4,1.9,75.8,16.4,NA,2.77,3.24,8.1,5.9,83,51793,85.6,23.2,19155,15.6,2,0.9,0.7,3.1,NA,NA,NA,103936,38437,81638,5.6,7.2,4.8,1.7,1.3,0.8,80.2,89.5,89 +602,17009,"Brown County, Illinois",Brown County, Illinois,37629,6320,75.6,17.3,40.9,4.6,2,82.6,16.2,NA,2.23,2.84,13.1,6.5,73.6,45781,79.6,15.1,2021,0.5,0.9,0,0,0.1,NA,NA,NA,83413,26527,72288,4.6,2.4,2.7,6.5,2.8,0,64,81.7,82.1 +603,17011,"Bureau County, Illinois",Bureau County, Illinois,34736,33027,89,0.6,44.1,5.2,2.8,79,22.7,NA,2.32,2.88,10.1,2.4,76.2,43461,91,21.4,14011,5,1.4,0.7,0.1,0.8,NA,NA,NA,85291,36625,65894,6.6,4.5,5.9,8.5,6.4,0,71.8,84.5,83.5 +604,17013,"Calhoun County, Illinois",Calhoun County, Illinois,31112,4406,94.9,1,48.5,4.2,3.2,79.6,24.6,NA,3.52,4.13,3.7,11.3,89.1,45833,93.4,18.4,1222,0.6,1.5,0.1,0,0,NA,NA,NA,105411,33749,92095,10.1,3.9,1.3,0,0,0.1,67.4,75.7,86.1 +605,17015,"Carroll County, Illinois",Carroll County, Illinois,34464,15621,90.8,3.9,44.9,4.3,2.4,81.9,24,22.2,2.22,2.86,10.3,3.6,77.8,44026,87.7,18.2,6478,1.9,2.2,0.2,0.1,0.2,NA,NA,NA,79017,32921,60871,9.4,4.4,6.8,8.2,11.9,0.2,74,81.5,85.3 +606,17017,"Cass County, Illinois",Cass County, Illinois,36902,12826,77.7,3.8,38.1,6.7,2.8,75.5,18.6,22.1,2.47,3.08,8.7,10.2,74.9,44965,86.7,20,5135,13.7,1.9,1.3,0.4,7.8,NA,NA,NA,78834,32047,64907,6.1,4.4,7.3,14.6,5.7,0.1,68,83.5,84.9 +607,17019,"Champaign County, Illinois",Champaign County, Illinois,36857,206098,66.3,13.4,30.9,5.3,1.5,80.7,13.6,17.3,2.29,3.05,36.6,3.2,53.4,50420,95.1,46.6,83777,6,6,8.5,1.3,5.3,18,13.1,7.8,89697,37366,63091,4.3,4.1,5,1.4,2.1,1.2,85.4,92.7,88.8 +608,17021,"Christian County, Illinois",Christian County, Illinois,33542,33684,93,2.6,42.7,5,2.1,80,19.7,21.4,2.37,3.2,10.6,4,74.3,43991,90.9,16.5,13534,0.6,0.9,0.4,0,0.1,NA,NA,NA,74729,31989,59253,8,4.2,4.4,1.6,0.8,0.4,71.9,85.6,83.7 +609,17023,"Clark County, Illinois",Clark County, Illinois,40682,15328,95.9,0.7,42,5.5,2.5,77.7,19.7,NA,2.28,2.71,8.7,6.7,81.7,46712,92,24.3,6597,2,1.4,0.2,0,0.2,NA,NA,NA,83186,35425,70625,7.9,4,4.9,0.4,1.8,0,69.8,85.3,86.8 +610,17025,"Clay County, Illinois",Clay County, Illinois,35083,13173,95.4,0.7,41.5,5.6,3.2,77,20.8,NA,2.36,2.94,6.8,19.1,80.7,42406,87.7,15.6,5431,0.5,0,0.2,0,0.2,NA,NA,NA,79425,33212,57266,8.1,6.3,5.6,6.3,3.7,0.1,67.7,79.7,85.6 +611,17027,"Clinton County, Illinois",Clinton County, Illinois,42713,36899,91.4,3.2,41.4,5.7,2.2,78.4,18.1,25.7,2.41,2.96,9,7.1,79.3,53501,92,24.4,14463,2,1.2,0.6,0.5,0.9,NA,NA,NA,104928,41334,82314,8.9,3.2,4.9,2.9,5.2,0.1,75.9,86,89.7 +612,17029,"Coles County, Illinois",Coles County, Illinois,32031,46689,90.3,3.8,38.2,5.1,2.9,81.7,18.1,NA,2.12,2.66,25.2,3.3,60.4,42290,91.5,27.1,20335,1.7,2.1,0.5,0.3,0.6,18.4,21.9,9.5,77632,33965,56040,6.6,6.9,6.3,4.1,4.2,0,75.6,88.2,86.4 +613,17031,"Cook County, Illinois",Cook County, Illinois,43383,5185812,46.4,22.5,37.8,5.6,2,78.6,15.5,31.9,2.45,3.24,52.5,0.8,57.5,55619,88.3,41.9,2084578,18.4,9.7,4.8,2.1,7.2,13.3,18,12.7,117699,47801,81797,3.3,6.6,9,3.1,3.8,1.4,80.1,90,89.2 +614,17033,"Crawford County, Illinois",Crawford County, Illinois,35613,18588,91.1,3.5,42.4,5.4,2.2,79.8,19.5,16.3,2.31,2.85,5.9,9.5,80.4,44332,88.2,20.6,7411,2.1,0.8,0.1,0,0.1,NA,NA,NA,85713,34276,67614,7.8,4,5.2,4.4,2.8,0,70.8,85.6,88.6 +615,17035,"Cumberland County, Illinois",Cumberland County, Illinois,37076,10378,96,0.1,42.3,6.8,3.3,76.2,20.3,NA,2.45,3.04,4.8,9.5,83.5,42273,93.9,18.6,4180,0.3,0.6,0.2,0,0.4,NA,NA,NA,88805,36270,69826,6.1,2.4,5.6,4.8,4.9,1.3,71.1,86.3,85.7 +616,17037,"DeKalb County, Illinois",DeKalb County, Illinois,34560,100512,76.3,7.8,32.6,5.5,1.7,78.2,13.6,26.7,2.44,3.07,29.9,2.2,60.9,49284,92.4,32.7,39314,7.6,3.2,1.5,1.4,2.5,15.9,19.5,8.1,87946,35054,69022,5.1,6.2,4.8,1.3,1.7,0.3,82.8,91.6,92.7 +617,17039,"De Witt County, Illinois",De Witt County, Illinois,38106,15461,94.5,1,44,5.9,2.3,78.5,20,NA,2.29,2.97,8.3,4.4,76.8,47052,92.8,21.4,6642,2.4,0.5,0.1,0,0.1,NA,NA,NA,83717,36977,64802,9.6,4.7,3.8,0,2.7,0.2,72.7,85.9,85.2 +618,17041,"Douglas County, Illinois",Douglas County, Illinois,37272,19686,90.5,1.4,38.9,6.7,2.7,75.4,18.5,20.7,2.49,2.98,7.1,3.1,79.1,45422,86.1,20.2,7821,6.2,10.5,0.7,0,2.8,NA,NA,NA,87643,34630,74186,6.6,3,16.7,24.8,24.6,4.4,70.1,81.5,80 +619,17043,"DuPage County, Illinois",DuPage County, Illinois,52099,927263,67.2,5,40,5.6,1.9,77.6,16.8,28,2.62,3.17,28,0.3,73.1,65889,93.2,51.4,349497,10.9,12.4,5.6,1.3,4.9,6.4,7.3,6.4,149370,57051,110502,3.6,4.5,5.3,1.8,2.8,0.6,88.8,92.7,94.4 +620,17045,"Edgar County, Illinois",Edgar County, Illinois,33328,16637,96.3,0.6,46.4,4.8,3,80.3,24,17.8,2.13,2.65,12,8.2,72.7,39624,90.1,20.1,7612,1.2,1.2,0.6,0,0,NA,NA,NA,74074,33566,56909,5.9,3.8,4.6,2.2,1.9,0,70.9,87.5,86.3 +621,17047,"Edwards County, Illinois",Edwards County, Illinois,30902,6118,95.6,0.2,44.6,5.8,2.9,77.5,22.1,23.6,2.3,2.84,3.8,18.2,79.2,40147,91.9,13.9,2653,1.8,1.1,0.3,0,1.3,NA,NA,NA,72815,31314,59386,7.3,5,7.5,2.4,2.5,2.2,63.6,82,83 +622,17049,"Effingham County, Illinois",Effingham County, Illinois,39809,34505,95.9,0.7,39.5,6.5,2.6,75.8,18.3,18.3,2.43,2.98,12.4,7.5,78.1,49134,93.2,26,14030,2.9,1,0.2,0,0.8,NA,NA,NA,95615,38582,75380,7.7,2.3,5,3,2,0,76.5,87.5,89.8 +623,17051,"Fayette County, Illinois",Fayette County, Illinois,31285,21380,89.4,3.8,41.7,5.7,2.3,79.5,19.2,NA,2.59,3.16,4.6,12.8,80.2,39810,87.3,16.6,7832,2,1.7,0.5,0.4,0.5,NA,NA,NA,77408,30865,57113,6.6,3.6,9,12.8,12.6,0.5,62.6,81.5,81.9 +624,17053,"Ford County, Illinois",Ford County, Illinois,33957,13396,91.5,0.8,42.5,5.7,2.5,76.7,19.3,24.3,2.27,2.84,14.7,3.1,74.1,46346,91.9,19.4,5728,2.7,1,0.3,0,0.5,NA,NA,NA,76631,32674,60782,8.5,5.8,5.6,3.7,3.7,0.4,75.3,83.6,85.4 +625,17055,"Franklin County, Illinois",Franklin County, Illinois,30217,37541,94.8,0.4,43.4,5.7,2.2,77.8,20.8,26.7,2.3,2.92,8.8,10.4,74.8,40634,89.2,17.1,16130,1.5,1.6,0.2,0.1,0.4,16.9,22.5,14.2,69811,29659,53471,8.5,6.3,7.5,7,5.3,0.7,65.7,83.7,82.5 +626,17057,"Fulton County, Illinois",Fulton County, Illinois,33788,33259,92.9,2.6,43.7,4.9,2.2,80.3,21.1,NA,2.25,2.8,7.7,2.4,77.9,40201,90.9,17.6,13902,1,0.6,0.4,0,0,NA,NA,NA,79511,33706,58617,7.9,5.6,4,1.3,1.8,0.4,71.8,84.9,86.1 +627,17059,"Gallatin County, Illinois",Gallatin County, Illinois,33222,4857,96.1,0.7,47.3,4.2,3.6,80.2,25.7,NA,2.31,2.99,9.3,19.9,80.4,40896,86.4,15.3,2096,0.5,0.3,0.1,0.5,0,NA,NA,NA,88438,39976,54626,7.7,7.7,3.9,0,1.7,2,57.7,74.5,76.3 +628,17061,"Greene County, Illinois",Greene County, Illinois,31902,11837,96.1,0.7,43.1,5.1,1.9,78.6,20.4,29.6,2.57,3.17,4.7,8.4,76.8,37694,90.4,16.3,4514,1.2,0.4,0,0,0.1,NA,NA,NA,81696,33174,60976,8.5,4.5,4.7,0,0.6,0.3,54.9,82.5,85.6 +629,17063,"Grundy County, Illinois",Grundy County, Illinois,44979,52920,88.4,2.1,38.6,5.8,1.9,75.3,14.6,NA,2.56,3.12,15.3,3.8,75.8,59106,94.2,24.2,20518,7,2,1.2,0.2,0.2,NA,NA,NA,111929,43744,93060,7.9,4.4,3.7,0.1,2.3,0.8,81.1,90.1,90.4 +630,17065,"Hamilton County, Illinois",Hamilton County, Illinois,34696,7972,96,0.1,43.5,5.6,3.5,77.3,22.2,NA,2.35,2.92,6.8,14.6,78.3,46267,89,18.5,3350,0.3,1.6,0.1,0,0.1,NA,NA,NA,85365,35585,61520,7.5,5.9,9.1,14.7,12.4,0,60.9,83.1,81.1 +631,17067,"Hancock County, Illinois",Hancock County, Illinois,35392,17434,95,0.8,46.3,4.9,3,78.9,23.9,23.6,2.29,2.87,8.4,5.1,81.3,44230,94,24.2,7515,1.8,0.9,0.7,0.1,0.1,NA,NA,NA,83931,36671,65044,7.1,3.2,6.5,1.9,5.6,0.5,72.8,81.8,81.7 +632,17069,"Hardin County, Illinois",Hardin County, Illinois,29485,3623,96.3,1.2,55,2.1,3.9,86.4,31.8,NA,2.37,3.04,12.9,18.7,80.7,36611,88.5,12.2,1484,0.1,0,0,0,0,NA,NA,NA,64711,30158,57155,8.7,3.7,3.8,0,0,0,55.3,70.5,76 +633,17071,"Henderson County, Illinois",Henderson County, Illinois,31784,6284,95.2,0.3,49.8,4.7,5.2,81.1,26.7,NA,2.34,2.78,2.9,10.6,85.5,41885,92.1,19.2,2662,0.5,0.4,0.1,0.6,0,NA,NA,NA,75442,32763,65651,9.2,7.9,2.8,0,0.2,0,63.7,78.2,82.6 +634,17073,"Henry County, Illinois",Henry County, Illinois,38709,48948,88.5,2.2,43.4,5.1,2.8,78,21.2,NA,2.38,2.92,9.2,1.4,80.4,49201,92.1,24.3,20261,3.7,0.7,0.2,0.2,0.7,NA,NA,NA,91842,38767,69912,7.8,3.5,4.1,0.9,1.7,0.3,73.1,85,84.7 +635,17075,"Iroquois County, Illinois",Iroquois County, Illinois,35037,26746,89.6,0.7,44.4,5.7,2.6,78.3,22.2,NA,2.32,2.86,8.9,3.9,78.5,43709,89.1,16.7,11333,4.9,0.7,0.8,0,0.9,NA,NA,NA,81382,34719,62439,7,4.8,6.3,5,4.3,0.3,71.3,85.9,84.3 +636,17077,"Jackson County, Illinois",Jackson County, Illinois,27663,52706,73.6,14.4,32.9,5.3,2.1,81,16.3,NA,2.13,2.94,31.7,10.2,49.3,38965,92.1,35.1,23088,4.3,3.2,2,1.2,1.5,21.8,23.2,10.8,69513,30227,45572,5.7,6.7,6.8,7.3,4.4,0.5,72.3,88.8,85.4 +637,17079,"Jasper County, Illinois",Jasper County, Illinois,38256,9233,97.1,0.1,44.2,5.9,3.4,77.6,20.5,NA,2.43,2.97,4.4,7.6,82.8,45986,93.1,20.6,3766,1.7,0.3,0.1,0,0,NA,NA,NA,90366,36847,71094,6.6,3.6,4.8,0,0.1,0,78.3,88.6,88.4 +638,17081,"Jefferson County, Illinois",Jefferson County, Illinois,34581,36808,84.9,6.5,41.1,5.8,2,77.6,19.7,NA,2.38,2.92,12.4,17.4,71.9,42376,91.4,18.4,14805,1.3,1.5,0.9,0.2,0.7,NA,NA,NA,77553,31541,61102,8.2,6.4,7.5,6.3,7,0.4,69.3,85.9,85.3 +639,17083,"Jersey County, Illinois",Jersey County, Illinois,38240,21336,95.3,0.6,43.2,4.6,2.2,80.1,20.1,NA,2.55,3.14,6.7,4.4,77.9,53002,93.7,20.5,7984,1.4,0.4,0,0,0.1,NA,NA,NA,97570,38238,79104,9,4.2,5.3,0.2,0.7,0.1,56.6,79.5,83.6 +640,17085,"Jo Daviess County, Illinois",Jo Daviess County, Illinois,41412,21918,94,0.8,50.9,4.1,3.1,81.5,29.1,21.3,2.09,2.57,10.4,2.1,81.8,46406,93.4,28.8,10385,2,1.1,0.5,0.1,0.2,NA,NA,NA,92828,42797,74954,8.4,2.8,5.2,2.7,5.4,0,77.1,84.1,87 +641,17087,"Johnson County, Illinois",Johnson County, Illinois,32202,13350,82.2,7.6,42.7,4.2,2.9,82.2,20.4,NA,2.78,3.46,7.2,22.1,84.7,43021,85.9,18.8,4133,2.4,0.7,0.2,0,0.1,NA,NA,NA,77971,28028,65203,7.7,2.4,7.9,7.1,4.7,0.1,56.1,80.2,79.1 +642,17089,"Kane County, Illinois",Kane County, Illinois,44348,516097,61.7,5.1,38.6,5.9,1.5,75.6,15,28.3,2.79,3.28,17.4,0.8,75.7,55541,87,37.5,183196,23.1,4.4,2.1,0.6,3.9,8.3,12.1,7.9,128682,46013,100678,4.6,4.6,7.9,2.1,3,1.2,85,92.3,92.5 +643,17091,"Kankakee County, Illinois",Kankakee County, Illinois,36520,106833,74.5,14.6,39,5.8,1.8,77,17.5,NA,2.5,3.1,16.3,6.5,68.8,47939,91,20.4,40895,9.9,1.5,0.5,0.3,1.5,12.5,17.8,8.8,90248,35005,68325,7,4.5,5.6,3.2,3.1,0.4,74.3,87.6,87 +644,17093,"Kendall County, Illinois",Kendall County, Illinois,50749,135053,69.1,8.3,36,6.2,1,72.5,11,NA,3.03,3.44,8.1,0,84.2,60694,93.6,36.4,44526,15.1,4.3,2.3,1,1.2,4.9,6.9,3.9,127433,43127,110474,4.1,3.3,4.4,3.2,3,0.8,87.8,94.3,95.2 +645,17095,"Knox County, Illinois",Knox County, Illinois,30911,49294,83.3,7.8,42.4,5.5,2.5,79.8,22.1,NA,2.18,2.9,17.8,2.9,69.8,40727,89.3,20.3,20765,3.3,1.8,0.5,0.3,1.3,15.9,18.1,12.4,69635,29614,53291,7.1,4.1,5.5,2.5,1.8,0.4,68.7,79.5,80.3 +646,17097,"Lake County, Illinois",Lake County, Illinois,47363,711885,64,6.6,38.9,5.4,1.8,76.4,15.3,28.8,2.7,3.22,20.9,1.6,74.4,61564,90.6,47,256660,17.5,8.1,5.6,0.7,5.1,8.1,11.2,6.8,152447,55756,108917,5.1,4.9,6.9,2.9,3.6,0.9,85.8,92.6,93.5 +647,17099,"LaSalle County, Illinois",LaSalle County, Illinois,38297,109049,86.8,2.7,42.1,5.3,2.6,78.7,19.4,NA,2.35,2.9,13.4,3.1,73.9,46646,91.4,18.7,45092,5.6,2.2,0.7,0.1,1.4,13.5,21.5,7.9,90125,38079,72281,7.7,5.1,4,1.3,2.4,0.1,73.3,86.3,86.5 +648,17101,"Lawrence County, Illinois",Lawrence County, Illinois,33781,15137,85.3,6.7,40.6,4.6,2.6,81.2,18.2,NA,2.49,3.29,8.6,17.1,75,41987,85.1,14.6,5414,2.4,0.4,0.4,0,0.6,NA,NA,NA,78332,30702,53438,8.2,7.7,7.5,0.7,1,0.8,69.5,86.4,88.5 +649,17103,"Lee County, Illinois",Lee County, Illinois,36665,34058,86.8,5.4,43,4.9,3,80.1,20.7,24.3,2.33,2.94,13.7,3.8,73.3,47733,90.5,19.4,13382,4,1,0.7,0.1,0.9,NA,NA,NA,88472,35065,68459,6.9,3.3,3.6,0.6,1.3,0.1,71.7,86,85.5 +650,17105,"Livingston County, Illinois",Livingston County, Illinois,37068,35659,90.3,3.5,41.9,5.7,3,77.9,20,NA,2.3,2.81,13.5,5.8,73.9,45203,90.3,18.5,14614,2.7,1.4,0.2,0,0.5,NA,NA,NA,88369,36002,70796,7.5,3.3,4.9,3.4,3.2,0,73.4,85.3,85.3 +651,17107,"Logan County, Illinois",Logan County, Illinois,36855,27870,88.1,6,40.5,4.8,2.9,80.5,19.1,NA,2.21,2.7,14.6,2.4,69.3,44442,91.5,19.9,11122,1.7,0.6,0.2,0.1,0.1,NA,NA,NA,83185,34109,64188,6,3.8,2.4,0.3,0.7,0.1,73.4,88.1,85.4 +652,17109,"McDonough County, Illinois",McDonough County, Illinois,27783,27102,87.1,5.8,35.1,4.6,3.3,82.1,19.3,19.2,2.08,2.88,23,5.3,62.1,41665,94.3,31.8,11760,2.6,2.1,0.9,0.6,1.3,NA,NA,NA,69045,30785,50434,5.8,8,6.5,6,5.6,0.5,75.8,84.1,81.9 +653,17111,"McHenry County, Illinois",McHenry County, Illinois,47304,311366,82.4,1.6,40.4,5.3,1.6,77,15.9,30.6,2.66,3.14,11.2,0.7,82.6,58562,93.7,35.2,116329,9.9,4.7,1.7,0.4,1.6,6.1,8.3,5.5,128231,48275,102836,5.5,4.5,4.7,3,3.1,0.3,87.5,92.5,95.1 +654,17113,"McLean County, Illinois",McLean County, Illinois,41943,170882,79.3,8.4,34.2,5.5,1.5,78.5,14.2,NA,2.35,3.02,28.5,3.4,65.2,57485,95.8,46.9,69072,3.3,2.7,2.8,0.6,1,13,9.7,8.4,103921,42362,78329,5.8,2.6,4.4,2,2.4,0.8,84.4,92,87.8 +655,17115,"Macon County, Illinois",Macon County, Illinois,37340,102591,75.2,17.1,40.9,6.2,2.9,77.4,20.6,18.9,2.29,3.03,15.9,2,69.8,47317,93,24.1,43334,1.8,1.1,0.8,0.3,0.5,14.6,17.7,9.1,83784,35850,62449,7.1,7.4,4.1,1.8,2.5,0.5,70.4,86.5,85.1 +656,17117,"Macoupin County, Illinois",Macoupin County, Illinois,36526,44566,94.6,1.2,44.3,4.9,2.9,79.3,21.1,NA,2.51,3.05,8.1,8.4,77.7,47261,90.8,18.8,17431,0.9,0.6,0.3,0,0.3,14.4,18.3,11.8,85962,35389,68518,7.8,4.2,4.3,0.9,1.1,0.1,63.9,83.5,86.6 +657,17119,"Madison County, Illinois",Madison County, Illinois,41189,264631,84,8.6,40.2,5.3,2.1,78.5,18,NA,2.37,2.95,14.9,2.1,73.6,52040,93.7,30.8,109385,2.7,1,0.7,0.4,0.6,11.3,14,8.7,97667,40869,74800,8.3,4.3,4.8,1.2,2.2,0.4,78.8,88.7,89.9 +658,17121,"Marion County, Illinois",Marion County, Illinois,33585,37294,90.4,4.2,41.3,6.4,2.7,76.4,19.8,20.4,2.36,2.98,10.7,16.9,74.5,43162,90.3,17.3,15465,2,0.7,0.4,0.3,0.6,16.2,21.7,7.7,76720,32199,60839,8.4,6.7,6.6,1.5,2.6,0,65.8,83.3,84.9 +659,17123,"Marshall County, Illinois",Marshall County, Illinois,36290,11715,93.7,0.4,45.9,5.5,3.4,78.8,23.6,27.9,2.3,2.82,7.8,1.1,79.7,45852,91,18.7,4964,2.7,0.9,0.1,0.1,0.8,NA,NA,NA,83438,36065,69818,9.3,4.9,3.6,3,2.3,0.4,70.2,84.7,83.7 +660,17125,"Mason County, Illinois",Mason County, Illinois,34776,12878,96,0.9,45.5,4.6,2.4,79.4,23,NA,2.21,2.79,4.5,3.8,80.6,41190,92.1,17.1,5714,1.7,0.5,0.1,0,0,NA,NA,NA,78688,34783,62127,7.7,5.3,4.6,0,2.3,0,70.2,84.7,86.2 +661,17127,"Massac County, Illinois",Massac County, Illinois,30023,13958,87.9,6.3,45,4.6,2.9,78.8,21.4,NA,2.5,3,8.2,13.6,79,41851,89.3,16.3,5482,2.2,0.4,0.4,0.1,0.5,NA,NA,NA,74853,31578,62584,9.3,3.3,9,1.7,6.1,0,50.4,79.2,77.8 +662,17129,"Menard County, Illinois",Menard County, Illinois,44787,12169,95.7,0.5,42.8,5.4,2.3,77.9,20.2,25.9,2.32,2.76,8.6,2.8,79.4,52786,94.2,26.5,5195,0.7,1.1,0.6,0,0,NA,NA,NA,97365,41888,81334,10.1,3.8,2.9,0,0.7,0,77,89.2,89.3 +663,17131,"Mercer County, Illinois",Mercer County, Illinois,40273,15619,94.8,0.6,44.5,4.8,2.4,78.9,21.5,NA,2.41,2.89,7.6,2.7,82.7,46580,93.3,18.9,6413,2.2,0.4,0.5,0.5,0.4,NA,NA,NA,87773,36295,71710,8.7,3.2,5.2,4.5,3.6,0.1,78.7,85,89.1 +664,17133,"Monroe County, Illinois",Monroe County, Illinois,50598,34969,96.1,0.6,42.5,5.3,2.4,77.9,18.8,NA,2.51,3,11.3,1.6,83.8,63551,95.8,38.2,13830,1.7,0.8,0.6,0,0,NA,NA,NA,122572,49438,101635,8.5,1.9,2.2,0.7,1.1,0.1,83.8,87.6,91.5 +665,17135,"Montgomery County, Illinois",Montgomery County, Illinois,33247,28078,93.4,2.7,42.6,5,3.1,79.9,21,NA,2.29,2.95,9.1,6.1,76.3,43855,90,18.2,11265,1.7,1.2,0.2,0.5,0.2,NA,NA,NA,80654,32463,61863,8.7,5.7,4.5,2,2.7,0.1,65.6,82.6,82.3 +666,17137,"Morgan County, Illinois",Morgan County, Illinois,35905,32621,88.4,5.3,41.5,5,3.3,80.7,20.9,NA,2.31,2.99,14,6.3,71.6,45543,89.6,23.3,13125,1.4,0.8,0.3,0.1,0.1,NA,NA,NA,85288,35840,65175,8.1,5.8,4,0,0.4,0.7,65.3,83.7,81.8 +667,17139,"Moultrie County, Illinois",Moultrie County, Illinois,37071,14469,96,1.1,40.4,5.9,2.6,74.5,19,NA,2.43,2.93,6.9,4.6,77.4,49311,85.7,18.8,5822,0.9,8.5,0.2,0,0.4,NA,NA,NA,88053,35896,71676,6.5,2.8,12.8,15.4,13.9,4.1,67.7,82.7,81.1 +668,17141,"Ogle County, Illinois",Ogle County, Illinois,40219,51536,87.7,1.2,42,5.3,2.9,77.6,19.3,NA,2.46,3.06,13.3,2.2,74.5,48864,91,24,20695,6.6,1.5,0.6,0.2,1.5,NA,NA,NA,93293,38251,79244,9.2,4.7,4.3,3,3.3,0.1,78.4,84.9,86.4 +669,17143,"Peoria County, Illinois",Peoria County, Illinois,37979,179831,68.6,17.5,38.1,6.6,2.3,76.1,17.9,18.9,2.27,3.02,22.1,0.8,67,48471,93.4,34.5,77074,3.3,2.3,2.8,0.9,1.2,15.4,21.3,9.6,92111,39756,64938,6,6.3,6,2.3,3,0.5,74,88.2,88 +670,17145,"Perry County, Illinois",Perry County, Illinois,31192,20810,86.5,8,42.2,4.9,2.2,80.5,19.8,24.3,2.3,2.86,9.7,11.4,78.9,41049,85.3,12.3,7994,1.8,1.4,0.2,0,0.8,NA,NA,NA,75024,29720,59286,8.2,4.1,3.7,3.6,2.7,0.1,65.4,87.1,85.3 +671,17147,"Piatt County, Illinois",Piatt County, Illinois,45960,16702,95.6,1.6,42.5,5.2,2.9,78.1,20.5,23.7,2.42,2.9,6,1.8,85.4,52831,96,31.9,6851,1.8,1.3,0.5,0,0.1,NA,NA,NA,106362,43547,87516,6.1,3.5,3,1.2,2.4,0.1,76,88.1,87.2 +672,17149,"Pike County, Illinois",Pike County, Illinois,34242,14625,96.1,0.5,42.9,6.1,4.2,77,21.7,24,2.45,3.2,8.3,8,78.5,41926,91.8,18.8,5815,0.9,1.2,0.2,0,0.2,NA,NA,NA,72468,30438,58029,8.4,4.4,5.9,1.2,2.6,0.3,59.1,79.4,80.5 +673,17151,"Pope County, Illinois",Pope County, Illinois,32500,3757,89.6,5,50.8,5.3,3.5,84.3,26,NA,2.63,3.35,6.6,21.9,86.1,41809,91.7,16.8,1364,0.9,0.4,0.1,0,0.4,NA,NA,NA,78018,31016,62500,11.3,3.1,2.9,0,4.5,0,51.1,77.6,73 +674,17153,"Pulaski County, Illinois",Pulaski County, Illinois,26213,5074,62.8,32.3,42.7,4.9,2.1,79.5,22.7,NA,2.65,3.55,11.3,23.6,67.5,36289,87.4,11.9,1862,0.1,0.1,0.2,0.5,0.7,NA,NA,NA,56889,24463,43227,11.9,2.5,7.4,7.8,5.5,1.2,33.1,62.8,56.8 +675,17155,"Putnam County, Illinois",Putnam County, Illinois,39246,5600,92.9,0.2,47.2,4.7,2.5,80.3,23.9,NA,2.26,2.71,7.3,2.5,80.7,49178,93.6,24.6,2473,3.8,1.7,0.4,0,0.5,NA,NA,NA,90990,40036,77526,7.8,3.8,3.1,0,1.2,0.4,72.9,87.9,84.7 +676,17157,"Randolph County, Illinois",Randolph County, Illinois,37184,30142,86.9,8,43,5.1,2.9,79.6,20.8,NA,2.32,2.89,10,13.2,76.8,46871,87.9,14.2,11671,1.2,1.4,0.3,0.5,0.7,NA,NA,NA,81359,31900,68870,8.6,4.3,5.3,0.5,1.7,0.2,64.3,84.3,84.1 +677,17159,"Richland County, Illinois",Richland County, Illinois,34151,15675,94.1,0.5,42.5,5.8,2.3,77,20.5,20.4,2.4,2.99,8.1,14.2,73.6,43560,91.9,18.9,6401,1.8,1.9,0.2,0,0.2,NA,NA,NA,75635,32156,60404,9.5,3.5,5.8,1,2.5,0.6,68.7,83.8,84.9 +678,17161,"Rock Island County, Illinois",Rock Island County, Illinois,37766,142995,73,11,40.3,5.9,2.4,77.5,20.1,20.2,2.26,2.89,22.3,2.4,68.6,46260,90.2,24.1,61192,6.9,2.6,1.5,1.3,2.6,15.4,24,8.3,83668,35753,66768,7.2,5.4,6,6.6,4.7,0.1,74.6,88.4,89.2 +679,17163,"St. Clair County, Illinois",St. Clair County, Illinois,38033,254777,61.2,28,39.5,5.8,2,76.7,16.8,24.7,2.47,3.13,18,4.6,67.8,47658,92.7,30.7,101273,3.7,1.5,1,0.6,0.4,13.6,18.8,9.5,92847,37824,70178,11.8,5.3,5.4,3.8,3,0.2,75.2,87.9,88.1 +680,17165,"Saline County, Illinois",Saline County, Illinois,32610,23387,92.4,2.8,43.2,6,3.6,79.1,20.9,22.8,2.28,2.83,12.2,10.7,74.9,42783,88.8,20.2,10032,1.1,0.4,0.4,0,0.4,NA,NA,NA,82789,35665,54945,8,5.4,5.9,4,2.8,0,59.6,77.3,75.9 +681,17167,"Sangamon County, Illinois",Sangamon County, Illinois,43303,195217,79.1,12.7,40.8,5.6,2.1,78,18.9,NA,2.27,2.97,16.6,3.7,70.6,52983,93.7,35.1,84290,1.9,1.7,1.1,0.5,0.5,12.9,18.5,7.9,97695,42851,74114,7,5.2,3.8,0.7,1.4,0.2,76.6,88.6,87.8 +682,17169,"Schuyler County, Illinois",Schuyler County, Illinois,32024,6826,92.3,4.7,48.8,4.1,2.3,82.7,25.2,23.6,2.2,2.79,5.7,12.3,79.5,43333,92,18.9,2732,0.9,1.5,0.6,0,0.7,NA,NA,NA,82651,33077,66059,11.3,6.7,8.1,0,6.7,0.8,73.5,83.9,87.5 +683,17171,"Scott County, Illinois",Scott County, Illinois,40318,4847,95.7,1.2,44.3,4.4,3.2,78.6,20.6,NA,2.36,2.86,6.8,8.8,79.1,47431,93.2,22.2,2032,1,0.5,0.5,0,0,NA,NA,NA,86063,36508,73013,7.5,2.3,5.1,0,1.4,0,63.9,82.4,82.9 +684,17173,"Shelby County, Illinois",Shelby County, Illinois,38036,20867,96.8,0.1,45.5,5.4,2.7,78.6,23.5,21.1,2.35,2.87,6.5,7.2,78.5,46342,94.5,17.6,8795,1.4,1.5,0.2,0,0,NA,NA,NA,79115,33372,68457,9.7,2.9,5,5.9,5,0.1,67.5,84.5,86.2 +685,17175,"Stark County, Illinois",Stark County, Illinois,34513,5324,93.1,1,44.6,5.3,2.1,78.3,22.8,NA,2.28,2.81,8.5,1.7,77.6,45563,91.7,19.3,2289,3.1,1.2,0.5,0.3,0,NA,NA,NA,80641,34270,62284,7.2,2.9,5.3,3.6,3.3,0.4,68.5,85.8,83.9 +686,17177,"Stephenson County, Illinois",Stephenson County, Illinois,34675,44042,82.1,8.4,45.2,5.3,3.3,78.7,23.9,NA,2.22,2.79,17.3,2.7,71,43138,91.5,21.7,19469,2.7,1.6,0.4,0,0.4,13.1,16.9,8.5,78072,34672,61943,7,4.9,5.2,0.1,2.3,0.3,72.1,82.3,84.4 +687,17179,"Tazewell County, Illinois",Tazewell County, Illinois,41648,130555,93.9,1.4,41.7,5.2,2.4,77.7,19.5,20.9,2.37,2.98,13.9,1.5,77.5,50232,94,28.4,53812,1.3,0.9,0.6,0.2,0.2,8.7,11,6.2,95638,40072,76704,7.4,3.5,5.1,3.3,3.5,0.5,78.3,89.3,88.2 +688,17181,"Union County, Illinois",Union County, Illinois,31821,16972,90.5,0.8,44.3,5.4,2.8,78.5,22.1,25.9,2.34,2.97,10.2,12.5,76.8,45821,87,20.9,6914,3.2,0.4,0.7,0,0,NA,NA,NA,75913,31962,56420,7.1,5.2,6.6,5.2,8.4,0.6,46.9,77.3,71 +689,17183,"Vermilion County, Illinois",Vermilion County, Illinois,34846,73179,78.9,14.8,41.2,6,2.1,76.5,20.1,19.8,2.33,3.07,13.7,5.5,69.2,43185,90.7,16.2,30185,2.9,0.9,0.6,0.1,0.9,17.2,24.9,11.1,72146,30447,54537,7.2,6.4,4.6,1.2,1.8,0.1,65.9,83.3,85.3 +690,17185,"Wabash County, Illinois",Wabash County, Illinois,33522,11199,93.9,1,43,5.4,3.4,78.2,22,NA,2.31,2.86,12.2,9.8,75.4,47143,92.8,18.7,4784,3,0.2,0.2,0,0.2,NA,NA,NA,82337,36323,53650,8.7,4.4,5,0.3,0.6,0.1,62,85.5,82.9 +691,17187,"Warren County, Illinois",Warren County, Illinois,35860,16576,84.9,2.8,38.7,5.4,2.5,77.8,19.6,19.4,2.32,2.85,9.6,1.4,78.1,43597,86.6,22,6722,5.8,2.6,1.2,0,3,NA,NA,NA,82733,33620,64650,6.4,5,6,2.4,2.7,0.3,73.6,86.8,84.3 +692,17189,"Washington County, Illinois",Washington County, Illinois,40810,13682,95.6,0.8,44.2,5,2.1,79,21.3,NA,2.35,2.89,4.1,8.8,81.2,46783,93.2,24.4,5722,1.4,1.6,0.2,0.1,0.4,NA,NA,NA,89742,38507,75652,9.1,3.6,3.3,3,3.3,0,72.1,84.4,85.4 +693,17191,"Wayne County, Illinois",Wayne County, Illinois,32164,15994,96,0.3,43.1,5.8,4.1,77.4,21.9,23.6,2.32,2.93,6.3,21.6,78.9,40835,90.2,16.2,6853,1.4,2,0.4,0,0.5,NA,NA,NA,72646,31073,53107,6.5,3.2,11.4,15.4,16.2,0,65.6,78.2,80.2 +694,17193,"White County, Illinois",White County, Illinois,31286,13708,96.3,0.7,44.4,4.9,3.8,78.2,23.2,24.1,2.36,2.99,8,7.8,76.3,42170,86.5,14.9,5669,0.8,0.3,0.2,0.1,0.1,NA,NA,NA,70653,30769,53097,8,3.7,4.9,0.5,2.7,0.1,63,81.2,76.8 +695,17195,"Whiteside County, Illinois",Whiteside County, Illinois,36196,55192,87.9,1.1,43.4,5.3,2.8,78,21.4,NA,2.33,2.95,13.2,1.9,75.5,45917,91,20.1,23215,6.9,1.6,0.3,0.2,0.8,12.1,17.2,8.4,84990,36788,64536,8.2,4.4,5.5,3,4.5,0.5,72,84.1,84 +696,17197,"Will County, Illinois",Will County, Illinois,47258,698450,65,11.8,38.9,5.5,1.5,76,14.1,31.7,2.86,3.34,11.7,1.1,82.5,60034,91.5,36.5,241310,12.4,5.9,3.1,1.3,3,7,9.7,6.3,131203,46216,107799,4.9,4.5,5.3,1.7,2.5,0.9,85.6,92,93.2 +697,17199,"Williamson County, Illinois",Williamson County, Illinois,38256,66902,89.2,3.5,41.4,5.4,1.9,78.5,19.6,NA,2.25,2.77,16.4,7.4,71.1,45965,92.4,27.5,28774,2,0.9,1.6,0.3,0.3,14.3,19.9,11,85557,37096,65521,8.7,3.9,5.2,0.3,2.9,0.3,70,87.5,86.8 +698,17201,"Winnebago County, Illinois",Winnebago County, Illinois,35565,283289,69.1,13.3,39.7,6.1,2.4,76.4,18.2,NA,2.42,3.03,23.2,1.3,65.2,44846,88.6,24.6,115449,9.4,2.8,1.7,1.1,2.3,16,24.2,8.9,84470,34775,64363,6.4,7,6.1,3.1,3,0.5,74.4,87.2,87.7 +699,17203,"Woodford County, Illinois",Woodford County, Illinois,44871,38348,95,0.6,40.5,5.7,2.6,76,18.8,NA,2.54,3.05,7,2.7,83.5,59747,94.8,36.1,14704,1.2,0.7,0.4,0,0.3,NA,NA,NA,108426,43032,85629,6.2,3.1,5.1,8.7,7.1,0.2,79.6,88.9,88.1 +700,18001,"Adams County, Indiana",Adams County, Indiana,35617,35995,94.1,0.4,33.2,8.7,2.9,68.8,16,22.9,2.87,3.52,10.8,0.7,82.2,43577,87,15.2,12345,2.7,9.6,0.5,0,3.2,12.4,16.1,8.2,80264,27765,63128,4.5,2,23.3,50,38.9,4.1,65.2,76.7,77.5 +701,18003,"Allen County, Indiana",Allen County, Indiana,37429,388791,72.7,10.9,36.2,6.8,1.8,74.4,15.3,21.7,2.48,3.14,19.7,2.4,69.1,47343,90.3,31.1,154183,6.1,2.5,3.7,0.8,2.5,12.2,16.7,7.3,90889,36432,68839,6.6,4.2,8.2,5.3,6.3,0.5,78,89.6,90.8 +702,18005,"Bartholomew County, Indiana",Bartholomew County, Indiana,40383,82881,80.1,1.8,37.7,6.4,1.8,75.8,16.5,20.5,2.48,3.05,18.1,4.8,69.9,52140,92.1,35.4,32984,6.6,5.6,4.1,0.6,2.1,12,15.1,8.4,101323,41174,80365,5.7,3.8,5.2,0.5,2,0.4,78.3,90.7,92.1 +703,18007,"Benton County, Indiana",Benton County, Indiana,33912,8708,92,1.5,40.3,5.9,2.3,75.3,17.2,26.2,2.48,3.08,6.9,3.9,80.5,42437,89.6,18.8,3469,4.8,0.4,0.2,0.1,1.3,NA,NA,NA,83038,33363,61811,7.3,3.4,6.4,3.4,2.6,0.9,72.7,87.2,87.7 +704,18009,"Blackford County, Indiana",Blackford County, Indiana,30715,12007,95.2,0.5,44,5.1,2.7,76.9,22.1,NA,2.35,3.08,14,6.3,73.6,36409,89.5,13.5,5060,1.2,0.5,0.4,0.5,0,NA,NA,NA,66576,28774,47560,8.7,3.6,7.5,8.9,6.4,0,61.2,80.7,83.5 +705,18011,"Boone County, Indiana",Boone County, Indiana,52414,72827,88.6,2.4,38.3,6.2,1.8,74.2,14.6,NA,2.58,3.07,12.7,2.2,79.3,67473,95,50.5,27948,3.7,1.8,2.3,0.4,0.7,NA,NA,NA,151849,58340,104865,6.1,3.2,4.1,2.5,2.4,0,87.1,93.5,92.7 +706,18013,"Brown County, Indiana",Brown County, Indiana,36260,15543,94.6,0.6,50.9,4,2.3,83.4,26.3,34.4,2.3,2.64,5.8,5.4,85.9,46513,93.6,26,6695,2.4,0.6,0.7,0,0.5,NA,NA,NA,96976,42450,72644,10.1,3.1,6.1,7.9,7.9,0.3,77.1,88,87.9 +707,18015,"Carroll County, Indiana",Carroll County, Indiana,36715,20443,95,0.7,42.9,5.3,2.2,78.1,20.4,25.1,2.53,3.1,6.8,5.1,80.7,46529,89.7,15.5,8024,2.4,0.6,0.1,0.2,0.2,NA,NA,NA,83615,34366,64003,7.7,2.5,11.8,15.7,13.8,3.8,67,84.5,79.7 +708,18017,"Cass County, Indiana",Cass County, Indiana,33653,37703,80.9,1.3,41.1,5.6,2.6,76.8,18.1,21.4,2.46,3.03,11,4.6,75.3,39768,85.8,15.6,14924,13.6,1.7,1.3,0,3.5,12.7,14.7,7.9,70904,29370,56525,7.5,3.3,6.9,4.1,2.9,0.3,65.9,84.6,82.8 +709,18019,"Clark County, Indiana",Clark County, Indiana,38348,122800,83.3,7,39.8,5.9,1.7,77.8,16.5,22.4,2.46,3.02,15.7,4.8,75,48556,90.7,25.5,49184,4.4,1.2,0.6,0.1,1,9.3,10.7,8.8,88653,36386,72298,7.6,3.7,6.3,2.2,2.9,0.6,77.2,89.5,87.9 +710,18021,"Clay County, Indiana",Clay County, Indiana,36293,26431,95,0.3,41.2,6.2,2.1,76.8,18.5,29.1,2.46,2.92,7.3,8.7,77.5,45503,90.8,17,10541,1.1,0.2,0.3,0,0,NA,NA,NA,91795,36588,67676,7.6,3.7,5.7,3.5,3.3,0.1,72.4,85.1,86.7 +711,18023,"Clinton County, Indiana",Clinton County, Indiana,37832,32967,83.4,0.7,36.5,6.9,2.1,73,16.3,NA,2.61,3.28,11.4,3.3,73.8,43787,86.4,16.7,12396,9.2,0.4,0.4,0,3.1,NA,NA,NA,78375,30108,63690,5.6,3,7.4,4.9,4,0,65.3,89.6,83.4 +712,18025,"Crawford County, Indiana",Crawford County, Indiana,30252,10494,95.3,0.3,45.6,5.2,1,78.7,20.7,NA,2.27,2.81,3.2,26.1,81.2,37181,85.6,11.1,4573,2.1,0.6,0,0,0.2,NA,NA,NA,66412,28760,48993,8,2.3,6.5,0.6,1.4,0.2,58.5,80.4,69.7 +713,18027,"Daviess County, Indiana",Daviess County, Indiana,35885,33442,90.3,1.6,34.7,8,2.4,70.3,15.8,NA,2.84,3.4,9.1,7.5,71.5,45132,77.2,15.1,11568,3.5,12.3,1.1,0,2.3,NA,NA,NA,85989,29952,68561,6.2,1,23.6,35,32.9,3.6,63.6,80.7,79.6 +714,18029,"Dearborn County, Indiana",Dearborn County, Indiana,42044,50828,95.2,0.2,41.8,5.3,1.8,77.8,18.7,30.1,2.5,2.96,10.9,2.8,84.7,51634,91.2,26,20148,1.1,1.3,0.2,0.1,0.2,NA,NA,NA,96630,38711,82693,7.8,2.4,4.8,3.6,3.8,0.2,79.5,86.4,88.4 +715,18031,"Decatur County, Indiana",Decatur County, Indiana,40100,26411,93.7,0.3,40.4,6.5,2.1,76.3,17.7,22,2.47,2.96,12,3.4,75.2,49759,90.5,20.1,10518,2.4,0.8,0,0.4,0,NA,NA,NA,92391,36726,74228,6.7,1.8,4,2,2.2,0.2,74.2,89.7,86.9 +716,18033,"DeKalb County, Indiana",DeKalb County, Indiana,36862,43584,95,0.2,38.4,6.5,1.6,75.7,17,20.8,2.53,3.03,10.8,7.5,82.3,45819,92.3,20.1,17008,1,1,0.7,0.2,0.3,NA,NA,NA,85064,34026,70080,6.5,3.9,6.8,7.8,6.5,0,74.3,84,85.2 +717,18035,"Delaware County, Indiana",Delaware County, Indiana,28240,112109,86.3,5.3,35.7,4.8,2.2,81.7,17.4,NA,2.26,2.77,18.6,4,66.5,42894,90.9,25.7,46146,1.7,1.1,0.9,0.4,0.5,19.9,20.2,8.5,71257,30037,56932,5.8,5.6,7.2,2.2,3.8,0.4,74.5,88.2,87.5 +718,18037,"Dubois County, Indiana",Dubois County, Indiana,39879,43563,89.6,1.6,40.1,6.2,2.2,75.5,18.1,19.4,2.43,2.98,14.5,3.5,76,47876,89.2,24.3,17588,6.2,1.6,0.2,0.2,2.7,NA,NA,NA,89436,37126,71918,6.7,2.1,4.4,1.7,2.5,0,69.3,86.7,85.6 +719,18039,"Elkhart County, Indiana",Elkhart County, Indiana,35913,206868,75.3,4.9,35.5,7.3,2.1,72.4,15.2,NA,2.84,3.53,16.4,8.3,71.2,43630,82.2,19.7,71760,14.1,6.2,0.8,0.5,4.7,12.5,18.8,9.6,86727,31850,65617,5,3.3,14.7,14.8,14.3,1.7,69.5,86.1,88.2 +720,18041,"Fayette County, Indiana",Fayette County, Indiana,31258,23390,94.5,1.1,43.9,5.6,1.9,77.6,20.5,NA,2.42,3.03,13.9,3.8,70.6,43318,85.9,16.4,9479,1,0.8,0.1,0.1,0.5,NA,NA,NA,70573,29274,56659,7.4,4.4,6,4.2,7.4,0,66,86.7,84.2 +721,18043,"Floyd County, Indiana",Floyd County, Indiana,40193,80512,86.9,5.1,40.1,5.5,2.1,77.5,17.1,23.3,2.54,3.17,17.1,2.4,73.1,50994,92.5,31.3,31173,2.5,1,1,0.2,0.5,10,15.2,5.6,100571,40196,78179,6.6,3.9,5.1,3.3,3.9,0,78.7,89.2,87.3 +722,18045,"Fountain County, Indiana",Fountain County, Indiana,35701,16546,94.6,0.8,42.8,6.4,1.7,77.9,19.7,NA,2.4,2.87,9,8.2,74.7,43216,89.7,13.7,6854,2.6,1,0.2,0.1,0.6,NA,NA,NA,75131,31232,62526,7.7,4,6.9,4.4,3.2,0,65.8,84.9,86.8 +723,18047,"Franklin County, Indiana",Franklin County, Indiana,39583,22929,96.4,0.1,42.3,5.8,1.9,77.4,19.7,NA,2.49,3.03,6.1,11.4,81.5,49577,88.7,19.5,9131,0.4,1.6,3.2,0.3,0.5,NA,NA,NA,93222,38014,79702,9,2.4,7,3.5,8.1,0.5,70.5,85.8,83 +724,18049,"Fulton County, Indiana",Fulton County, Indiana,33153,20411,91.2,0.4,42.2,5.8,2.3,76.4,20.1,24.2,2.55,3.03,8.4,13,78.1,43969,87.3,16.2,7927,2.7,1.7,0.1,0.3,0.5,NA,NA,NA,81697,32867,62878,7.7,7.6,9.9,6.3,8.9,1.2,69.6,84.7,86 +725,18051,"Gibson County, Indiana",Gibson County, Indiana,36719,32986,91.2,2.2,40.8,6.4,2,76,17.7,20.3,2.45,3,10.2,7.8,75.8,48148,90.7,19,13156,1.9,0.7,0.7,0,0.7,NA,NA,NA,83521,33358,67763,7.1,2.6,4.2,1.6,2.2,0.1,70.6,88.7,88.1 +726,18053,"Grant County, Indiana",Grant County, Indiana,29174,66377,85,4.9,39.3,5.8,2.4,78.6,18.9,NA,2.28,2.83,12,5.4,71.8,41012,88.8,20.4,26757,3.3,0.7,0.2,0,0.4,18.8,26.4,10.6,70918,29023,54007,8.9,6.4,7.2,1.3,4.1,0,68.2,85.3,86.9 +727,18055,"Greene County, Indiana",Greene County, Indiana,32287,30954,95.9,0.4,43.1,5.4,1.4,78.4,19.9,28.4,2.39,2.97,7.1,16.1,75.3,42268,88.1,14.6,12781,1.2,1,0.3,0,0.2,NA,NA,NA,76976,32807,59753,9.3,6.6,8.1,4.8,6.3,0.1,66.4,82.8,80.6 +728,18057,"Hamilton County, Indiana",Hamilton County, Indiana,56686,357176,81.6,4.2,38,6,1.5,74.1,13.4,NA,2.67,3.12,17.5,1.5,76.3,71486,97.3,61.8,133171,3.7,4.2,3.9,1.2,2.3,4.3,4.4,4.2,156318,58929,117957,4.9,2.5,4.2,1.5,2.9,0.4,91.5,95.7,96.1 +729,18059,"Hancock County, Indiana",Hancock County, Indiana,47731,82013,89.9,3.1,40.2,5.6,1.4,76.7,17.2,27.4,2.52,2.97,10.9,1.3,79.6,57273,93.5,34.2,32246,2.7,1.3,0.4,0.6,0.8,NA,NA,NA,115388,45781,91326,7.2,2.3,5.2,2.4,2.4,0.2,84.5,91.4,92.7 +730,18061,"Harrison County, Indiana",Harrison County, Indiana,39221,39785,95.6,0.9,43,5.4,1.8,77.6,18.8,NA,2.59,3.22,5.6,10.8,84.4,51151,91.8,22,15154,1.9,0.9,0.2,0.2,0.5,NA,NA,NA,90148,35333,72468,8.5,3.5,5.5,4.9,4.7,0,71.3,85.1,81.5 +731,18063,"Hendricks County, Indiana",Hendricks County, Indiana,47597,179379,80.4,9.1,38.6,5.5,1.5,75.4,14.7,NA,2.67,3.09,12.9,1.2,77.8,57270,93.5,39.6,65839,3.6,3.1,1.2,1.6,0.7,5,5.3,5.1,120729,44903,99988,5.8,2.3,5.6,4.3,6,0.3,86.8,93,93.2 +732,18065,"Henry County, Indiana",Henry County, Indiana,33233,48896,93,2.3,42.1,5,1.9,79.7,19.2,25.9,2.47,3.13,10.2,4.1,75.9,44404,90.6,16.7,18460,1.6,0.6,0.5,0,0.3,13,17,8.2,78234,31084,60144,8.3,3.4,6.7,1.2,2,0.2,71.1,85.9,86.2 +733,18067,"Howard County, Indiana",Howard County, Indiana,35961,83610,85.3,7.9,41,6,2.6,77,19.6,20.3,2.35,2.98,15.6,2.5,71.9,42816,92.1,20,35129,1.6,1.2,1.5,0.3,0.7,12.5,18.1,7.4,81280,34785,62496,8.3,5.9,6.7,3.9,5.2,0,72.9,86.8,88.7 +734,18069,"Huntington County, Indiana",Huntington County, Indiana,35094,36757,94.7,0.8,40.8,5.6,2.3,78.2,18.2,NA,2.32,2.84,10.5,2.6,76.2,44647,93,23.1,15227,2,1.7,0.7,0.2,0.6,NA,NA,NA,82491,34479,62734,7.8,3.1,6.3,2.5,4.6,0.1,72.1,86.2,84.9 +735,18071,"Jackson County, Indiana",Jackson County, Indiana,39472,46319,81.6,1.1,38.8,6.9,2.1,74.8,16,NA,2.57,3.08,16.1,11.7,73.5,46803,89.2,20.3,17745,8.1,1.8,1.7,0.2,5.3,NA,NA,NA,85011,33127,70208,6.1,3.2,9.2,11.6,9,1,71,84.3,82.7 +736,18073,"Jasper County, Indiana",Jasper County, Indiana,39791,33198,88.9,0.7,41.4,5.5,1.9,76.8,18.2,28.1,2.59,3.15,8.8,3.1,83.2,51037,93.1,18.1,12586,3.7,0.5,0.3,0.2,0.6,NA,NA,NA,93064,36426,79634,7.6,3.8,4.4,1.3,3.6,0,75.1,88.4,89.6 +737,18075,"Jay County, Indiana",Jay County, Indiana,32101,20281,93.8,0.3,39.6,6.9,2.5,74.3,18.1,22,2.52,3.18,7.9,5.5,78,40348,86.9,12.7,7959,2.9,2.8,0.3,0,0.5,NA,NA,NA,67984,27105,54114,7.1,2.9,9.7,13.9,11.9,0,58.4,79.5,80.3 +738,18077,"Jefferson County, Indiana",Jefferson County, Indiana,31429,33074,93.1,1.1,41.6,5.4,1.6,80,18.8,21.9,2.45,3.05,13.3,11.2,69.4,41977,88.6,18.1,12699,2.7,1,1.4,0,0.5,NA,NA,NA,79892,32420,59987,6,3.5,8.8,7.8,7.9,0.9,64.7,85.4,82.4 +739,18079,"Jennings County, Indiana",Jennings County, Indiana,35924,27584,94.6,0.5,40.1,5.7,1.5,76.8,16.9,25.1,2.53,2.86,8.3,17.6,79,44922,87.6,13.6,10760,3.3,0.6,0.4,0,0,NA,NA,NA,79540,31077,68476,8.7,4.3,9,11.2,8,0,69.6,85.1,85.5 +740,18081,"Johnson County, Indiana",Johnson County, Indiana,43042,163983,86.2,3.1,38.1,6.1,1.9,75.6,15.4,NA,2.62,3.11,14.2,2.1,73.9,54166,92.7,33.3,61513,3.7,3,1.8,0.4,1.1,7.2,8,7,111087,42884,87227,6.2,2.9,4.8,5.1,3.8,0.1,84,91.4,91.3 +741,18083,"Knox County, Indiana",Knox County, Indiana,34867,36108,90.5,1.6,39.1,5.5,2.3,78.3,18.4,20.1,2.27,2.91,18.6,3.9,65.9,42280,90.1,17.8,15110,2.5,1.5,0.6,0,2.1,NA,NA,NA,80327,33762,58863,6.2,2.7,6.9,7.3,5,0,66.1,86.8,85.9 +742,18085,"Kosciusko County, Indiana",Kosciusko County, Indiana,38587,80357,87.9,0.7,39,6,1.8,76.3,17.5,20.4,2.48,3.01,12.9,8.5,77,48797,88,24.6,31747,7,4,1.2,0.5,1.7,9.7,12,8.4,90354,36316,73922,6.5,2.8,11.1,13.3,12.4,0.5,73.8,86.1,86.2 +743,18087,"LaGrange County, Indiana",LaGrange County, Indiana,38770,40596,94.5,0.3,32.5,8.8,1,68,14.2,22,3.15,3.63,7.5,7.8,81.8,48641,60.6,11.1,12804,2.9,33.7,0.1,0.4,6,NA,NA,NA,101036,32928,83741,3.7,3.4,44.3,60.6,59.6,8.8,51.4,66.3,66.2 +744,18089,"Lake County, Indiana",Lake County, Indiana,36938,498990,57.2,23.2,39.6,5.8,1.9,76.6,17.4,28.8,2.55,3.19,18.3,1.3,70.9,48057,90.2,24.9,193474,11.8,3.5,1.1,0.6,2.1,14.6,21.8,10.1,90364,35973,68985,6,6.3,6.8,3.4,4.1,0.3,74.4,87.1,88.1 +745,18091,"LaPorte County, Indiana",LaPorte County, Indiana,36599,112141,79.2,10.5,40.8,5.5,2,78.6,18.9,25,2.41,2.95,14.9,3.8,74.6,46129,90.5,21.7,43681,4.2,2.2,0.8,0.2,0.8,14,23.7,7.7,88255,34650,70452,7.4,4.5,6.4,6,5.7,0.5,74.6,87.3,88.4 +746,18093,"Lawrence County, Indiana",Lawrence County, Indiana,33994,45077,94.8,0.4,43.5,5.5,2.3,78.6,20,26.4,2.32,2.95,10.5,9.4,80,43706,90.4,20.5,19156,0.9,0.8,0.2,0.1,0.4,NA,NA,NA,78119,33401,65551,9,3.4,6.4,5.1,3.7,0.1,66.7,84.7,83.8 +747,18095,"Madison County, Indiana",Madison County, Indiana,34766,130949,84.8,6.3,40.8,5.4,2.1,78.4,18.6,NA,2.38,2.95,12.2,5.2,70,43164,90.5,20.1,52843,3.2,0.8,0.6,0.2,0.4,12.9,18.1,8.3,79953,33425,62632,7.9,5.2,8,3.6,4.5,0.1,72.3,87.7,87.7 +748,18097,"Marion County, Indiana",Marion County, Indiana,37751,971822,54.2,27.6,34.3,7,1.5,74.9,12.9,NA,2.41,3.26,29.7,1.6,55.9,45859,87.7,34.1,396662,8.7,2.9,2.1,2,4,15.1,20.3,11.2,87280,36355,63450,5.6,4.7,9,4.7,5.5,0.9,76.6,89.3,89.3 +749,18099,"Marshall County, Indiana",Marshall County, Indiana,37310,46225,90.1,0.5,39.6,6.1,2.7,75.3,18.3,NA,2.62,3.23,10.2,6,76.5,46069,86.1,20.4,17377,8.7,3.7,0.7,0,1.4,10.9,14.3,10.8,85610,33134,68041,6.4,2.7,13,19.1,14.1,0.7,70.4,82.6,81.8 +750,18101,"Martin County, Indiana",Martin County, Indiana,35323,9854,95.7,0.2,41.8,6,2.2,77.8,20.5,29.6,2.47,3.24,10.6,14.9,78.2,46618,88.7,13.2,3928,1,1.3,0.3,0,0,NA,NA,NA,80001,32250,65345,10.6,1.9,7.1,10.2,8.8,0.5,64.2,84.7,83.2 +751,18103,"Miami County, Indiana",Miami County, Indiana,32380,35772,88.9,3.7,41,5.1,1.6,79,18,25.1,2.53,3.09,7.8,8.9,75,40687,87.5,16.1,13270,2.5,1.3,0.5,0.1,0.1,NA,NA,NA,74702,29185,61130,8.7,6.1,7.5,3.1,3.3,0.1,70.6,85.9,86.1 +752,18105,"Monroe County, Indiana",Monroe County, Indiana,31697,139822,83.4,3.6,31.4,4.2,1.7,84,14.2,19.8,2.15,2.78,32.9,4.8,54.8,47002,94.8,49.1,58264,3.8,4.6,4.4,0.8,2.3,20.2,14.9,5.8,87694,36836,63372,5.1,5,5.3,1.1,2.7,0.3,85.1,91.7,89.9 +753,18107,"Montgomery County, Indiana",Montgomery County, Indiana,36114,38155,90.5,0.7,40,5.9,1.9,76.8,18.5,NA,2.38,2.92,14.5,5.8,77.8,46133,88.9,19.5,15524,3.6,1.4,0.5,0,0.8,NA,NA,NA,83964,34462,66571,7.7,3.6,8.2,3.6,4.7,0.3,73.3,87.2,87.8 +754,18109,"Morgan County, Indiana",Morgan County, Indiana,40259,72202,94.8,0.5,41.6,5.2,1.8,77.7,17.7,NA,2.57,2.98,7.4,5.4,82.9,50600,90.4,20.6,27713,2,0.8,0.7,0,0.3,8.5,12.2,6.9,101705,39777,79088,8.5,3.3,5.1,3.9,4.3,0.5,79,89.7,89.4 +755,18111,"Newton County, Indiana",Newton County, Indiana,35160,13859,89.2,1,43,5.6,2.1,79,20,NA,2.45,2.87,5.8,7.6,80.2,44281,88.4,13.7,5591,4,2.2,0,0,0.4,NA,NA,NA,76850,32318,68596,8.9,9.2,5.8,3.5,3.8,0,68.1,83.8,87.4 +756,18113,"Noble County, Indiana",Noble County, Indiana,38283,47417,88.7,0.3,39.5,6.5,1.8,75.6,16.5,25,2.6,3.13,13.2,5.9,76.2,48547,82.6,17.8,17971,8.1,5,0.2,1.2,1.9,NA,NA,NA,85659,33516,70908,6.9,2.8,11.7,15.4,14.4,0.6,67.5,84,84.6 +757,18115,"Ohio County, Indiana",Ohio County, Indiana,37308,5993,95,0.4,46,6,2.9,79.5,22.9,NA,2.31,2.84,8.4,9.6,77.1,43675,93.5,19,2567,0.8,0.4,1,0,0,NA,NA,NA,81948,36210,67942,7.8,1.2,6.3,0,6.2,0,71.8,82.5,84.4 +758,18117,"Orange County, Indiana",Orange County, Indiana,35569,19746,93.3,1.5,43,6.2,2.4,77.1,20.3,NA,2.43,2.93,7.1,16.7,78.8,41869,85.8,15.2,7994,0.9,1,0.2,0.1,0.1,NA,NA,NA,82606,33475,64758,6.5,3.2,7.1,10.5,9.1,0,67.2,80.1,84.3 +759,18119,"Owen County, Indiana",Owen County, Indiana,35332,21434,95.5,0.6,45.3,5,2.5,80.1,21,35.4,2.47,3,4.5,16.3,80.8,45760,87,17,8598,1.5,0.8,0.3,0,0.4,NA,NA,NA,79136,33451,59586,9.2,4.2,9.4,4,6.6,0.9,69,80.6,80.3 +760,18121,"Parke County, Indiana",Parke County, Indiana,32144,16346,95,2.2,42.5,5.8,1.7,77.8,20.2,NA,2.55,3.03,5.9,12.3,81.6,46380,84.1,14.2,5985,0.6,4.6,0,0,1.7,NA,NA,NA,81663,31264,66776,8.8,3.9,15.7,29.7,24.1,2.4,63.7,79.6,76.8 +761,18123,"Perry County, Indiana",Perry County, Indiana,35417,19218,93.2,2.1,41.1,5.5,2.4,79.1,19,NA,2.3,2.96,11.2,11.6,74.9,46517,91.2,16.5,7751,1.3,1.1,0.7,0,0.2,NA,NA,NA,73098,30366,61099,7.7,4.2,5.5,7.4,4.9,0.3,68.8,81.8,81.7 +762,18125,"Pike County, Indiana",Pike County, Indiana,34967,12187,95.8,0.3,43.5,5.6,2.2,77.8,20.9,NA,2.4,2.96,4.7,11.5,85.5,46472,90.2,15.7,4994,1.2,0.2,0,0,0,NA,NA,NA,80952,33085,66250,7.3,2.4,4.3,4.1,2.7,0,68.3,85,79.2 +763,18127,"Porter County, Indiana",Porter County, Indiana,42246,174150,85.1,4.2,40.6,5.1,1.8,78.4,17.7,28.3,2.51,3.04,16,4.2,77.2,52962,93.8,30.1,68049,5.3,2.2,1.2,0.3,0.9,9.2,11.2,6.8,107336,42814,85828,6.5,4.5,4.8,3.2,3,0.2,82.1,91.6,91.4 +764,18129,"Posey County, Indiana",Posey County, Indiana,39918,25163,94.1,0.7,43.1,5.1,1.8,77.9,20.3,NA,2.42,2.82,8.4,5,82.1,52631,93.3,25.3,10270,0.9,0.5,0.3,0.1,0,NA,NA,NA,95179,38398,79124,8,1.9,3.9,2.8,2.9,0,77.6,90.4,89.9 +765,18131,"Pulaski County, Indiana",Pulaski County, Indiana,31820,12441,92.3,0.3,42.4,5.5,1.6,78.2,20.9,25.2,2.51,3.14,6.4,10.6,75.1,40868,89.5,13.7,4894,2.5,0.8,1.3,0,0.6,NA,NA,NA,76170,31336,59956,6.3,3,7.5,4.1,2.6,0,74.6,81.1,87.8 +766,18133,"Putnam County, Indiana",Putnam County, Indiana,34626,37091,91.7,3.4,38.4,4.6,2.2,80.9,17.3,26.2,2.33,2.77,11.6,6.7,73.6,48373,90.8,19.9,13980,1.6,1.6,0.5,0.1,0.5,NA,NA,NA,89501,34050,76182,8.9,2,3.9,0.6,1.3,0.6,75,88.6,86.1 +767,18135,"Randolph County, Indiana",Randolph County, Indiana,34553,24425,91.4,0.8,42.1,5.9,2.5,77.2,20.3,NA,2.36,2.9,8.3,6.5,77.5,41238,90.6,14.4,10182,3,0.9,0.4,0,1.1,NA,NA,NA,74024,31036,61121,8.3,5.6,7.5,4.2,4.2,0.3,69.6,85.1,83.8 +768,18137,"Ripley County, Indiana",Ripley County, Indiana,35822,29039,95.3,0.2,40.9,6.1,1.9,76.3,18.5,27.8,2.51,3.03,10.9,6.8,77.8,47712,90.6,19.4,11356,1.4,1.1,0.6,0,0.3,NA,NA,NA,87796,34364,71084,8,2.8,6.7,4,4.7,0.4,72.9,83.9,85.8 +769,18139,"Rush County, Indiana",Rush County, Indiana,36793,16734,96,0.7,42.7,5.6,2.4,77.5,18.9,NA,2.49,2.95,10.2,5.2,73.4,42400,90.8,16.8,6650,2.2,2.5,0.1,0,0,NA,NA,NA,74837,30233,64393,7.5,5.6,7.9,11.2,9.3,0,66.7,85.7,83.7 +770,18141,"St. Joseph County, Indiana",St. Joseph County, Indiana,35058,272574,72.1,12.6,36.7,6.2,2,76.7,16.5,21.3,2.44,3.15,18.9,1.3,68.8,45599,91.2,32.6,107005,6.5,2.7,1.9,1.3,2.1,14.6,20.6,10,89361,35714,64885,5.9,4.6,7.3,2.8,4.9,0.4,76.7,88.1,88.1 +771,18143,"Scott County, Indiana",Scott County, Indiana,31058,24468,94.9,0.3,41.2,5.7,1.6,77.5,17,NA,2.5,3.07,13.7,17.3,72.1,43345,84,12.4,9637,1.1,1,0.1,0.2,0.3,NA,NA,NA,70950,29123,54583,6.5,3.1,3.7,0.6,1.7,0,70.1,82.4,86.4 +772,18145,"Shelby County, Indiana",Shelby County, Indiana,36958,45104,92.3,1.2,41.2,6,2.5,77.4,17.9,24.9,2.44,3.02,12.8,5.1,73.8,48783,90.4,19.4,18145,3.9,1.3,0.7,0.4,1.7,NA,NA,NA,88245,35637,71301,6.9,3.9,6.2,4.8,4.2,0.1,75.6,88.8,87 +773,18147,"Spencer County, Indiana",Spencer County, Indiana,38053,19871,94.8,0.6,44.2,5,1.9,78.2,20.2,NA,2.45,2.98,8.5,9.5,81.2,48201,93.1,21.2,7979,2.5,0.7,0.3,0.1,0.6,NA,NA,NA,87894,36718,70890,7.9,3.3,3.8,3.6,2.3,0.6,70.1,84.7,80 +774,18149,"Starke County, Indiana",Starke County, Indiana,29678,23300,94.1,0.4,41.9,5.9,2.2,77.2,19.9,NA,2.65,3.24,6.2,6.9,83.7,38535,85.8,12.6,8758,1.8,2.1,0.2,0.1,0.4,NA,NA,NA,73831,28895,62933,6.9,3.2,6.5,4.4,3.5,1.7,65.8,82.4,82.4 +775,18151,"Steuben County, Indiana",Steuben County, Indiana,35068,34648,93.2,0.8,43.6,4.9,2.5,80,21.3,21.4,2.41,2.9,8,10.9,80.2,43843,92.1,24.7,13765,2.3,1,0.4,0.6,0.3,NA,NA,NA,92694,37126,71483,8.1,5.6,6.3,3.8,4.4,0,73.7,88.1,84.5 +776,18153,"Sullivan County, Indiana",Sullivan County, Indiana,30263,20766,91.1,3.4,41.3,5.3,2.1,80.8,18.5,NA,2.43,2.91,9.4,10.1,75.6,36184,88.1,14.3,7697,1.8,0.1,0.1,0.5,0,NA,NA,NA,74197,29424,54985,8.5,4.8,6.8,0,3.7,0,68.5,84.3,81.6 +777,18155,"Switzerland County, Indiana",Switzerland County, Indiana,34834,9914,95.3,0.3,42.1,5.7,2.2,76.1,18.5,33.9,2.52,3.16,9.3,14.9,79.8,42480,82.4,10,3897,0.7,1.8,1.1,0.3,0,NA,NA,NA,78313,31238,65148,8.7,2.9,13.1,9.3,14.3,0.6,59.4,81.2,76.9 +778,18157,"Tippecanoe County, Indiana",Tippecanoe County, Indiana,31280,187399,75.8,6,28.8,5.5,1.5,79.5,12,17.6,2.3,2.96,34,2.7,53.9,46440,92,40.1,74415,5.9,3.3,5.4,1.1,3.2,19,16.6,7.1,80668,32271,58622,4.4,2.7,5.5,2.6,2.7,0.1,76.8,93.2,89.5 +779,18159,"Tipton County, Indiana",Tipton County, Indiana,43343,15329,94.5,0.8,44.5,5.8,1.5,79.4,21.7,25.3,2.41,2.76,6.6,3.6,81.8,52993,91.7,24.9,6265,1.9,1.4,0.4,0.2,0.7,NA,NA,NA,92887,37924,78309,8.1,2.9,8,3.4,2.9,0.2,74.6,91.6,89.8 +780,18161,"Union County, Indiana",Union County, Indiana,38070,7028,95.9,0.6,43.7,5.7,1.8,79.3,20.4,NA,2.44,2.95,6.4,4.7,82.6,45239,89.9,20.6,2852,0.4,0.2,0.5,0,0.5,NA,NA,NA,93659,37356,79500,9.6,3.5,8,3.8,6.3,0,76.8,85.7,86.5 +781,18163,"Vanderburgh County, Indiana",Vanderburgh County, Indiana,34854,179908,82.1,9.7,38.9,5.8,2.2,78.2,17.8,NA,2.25,2.86,23.1,2.6,64.5,44246,91.4,27.1,77198,2.4,1.2,1.1,0.4,1,14.4,19.9,8.8,82253,35369,60938,7,4.5,7.3,4.6,4.6,0.2,74.3,88.7,89.7 +782,18165,"Vermillion County, Indiana",Vermillion County, Indiana,35682,15452,96.1,0,42.5,5.3,2.1,77.9,20,NA,2.32,2.8,8.7,7.9,74.2,44200,92.6,17.2,6560,1.7,0.3,0.5,0.2,0.4,NA,NA,NA,72225,30418,59363,7.4,4.8,4,0,1,0,68.9,87.8,86.8 +783,18167,"Vigo County, Indiana",Vigo County, Indiana,29909,106201,85.3,6.1,36.4,5.4,2.1,79.4,17,19.9,2.32,3.03,22.4,2.2,63.4,41373,90.4,25.9,42595,2.4,1.5,1.3,0.4,0.6,20,25.6,12.3,73599,30829,52525,7.6,6.1,7.7,3.5,4.7,0.1,72.9,87.7,86 +784,18169,"Wabash County, Indiana",Wabash County, Indiana,33779,30901,94.4,1.2,42.6,5.3,2.6,78.9,21.3,21.6,2.32,2.84,8.9,4.7,80.4,46166,91.8,21.6,12554,2,1.5,0.2,0.3,0.1,NA,NA,NA,82223,33907,68414,6.8,3.4,6.8,8.1,6.2,0.5,72.7,86.3,87.5 +785,18171,"Warren County, Indiana",Warren County, Indiana,37372,8469,94.9,0.1,43.4,5.1,1.6,77.8,20.9,NA,2.49,2.93,5.3,4.3,81,48009,92,17.2,3359,0.8,1,0.3,0,0,NA,NA,NA,89482,36746,74635,7.9,3,4.9,1.9,5.1,0.9,65.9,88.4,89.6 +786,18173,"Warrick County, Indiana",Warrick County, Indiana,44521,64650,90.9,2.1,41.3,5.5,1.9,76.7,18.5,23.2,2.58,3.05,10.7,3.3,82.5,55815,95.5,35.5,24697,1.5,1.1,1.3,0.2,0.5,NA,NA,NA,121754,47232,95027,6.5,2.6,3.1,0.5,1.3,0.3,79.4,92.8,91.5 +787,18175,"Washington County, Indiana",Washington County, Indiana,33770,28167,96,0.3,41.4,5.6,1.7,77,18.1,32,2.53,3,3.8,18.9,82.3,40627,88.1,13.8,10994,1.5,0.8,0.5,0,0.6,NA,NA,NA,74773,29451,61358,6.6,3.5,8.3,10.3,8.3,0.1,65.6,82.9,81.7 +788,18177,"Wayne County, Indiana",Wayne County, Indiana,31303,66377,87,4.1,40.9,6,2.5,77.4,19.2,NA,2.39,2.98,13.8,2.9,69.7,40277,88.3,20.2,26818,3.3,1.6,0.6,0,1.2,16.9,23.6,9.2,76475,31990,56652,8.1,4.9,10.7,14.8,11,0.2,70.9,85.2,87.6 +789,18179,"Wells County, Indiana",Wells County, Indiana,37440,28261,93.3,1.1,40.2,6,3.2,75.3,18.4,23.2,2.44,3.01,12.1,5.6,76.2,44239,93.3,18.9,11360,2.7,0.8,0.2,0,0.5,NA,NA,NA,86401,35280,69741,6.4,1.6,6.6,2.1,4.6,1.2,72.1,85.3,82.9 +790,18181,"White County, Indiana",White County, Indiana,34922,24709,88,0.4,42.5,6.1,2.9,76.5,20.6,23.1,2.48,3.07,10.6,5.8,79.3,46175,90.3,18.3,9865,6,1.2,0.2,0.1,1.5,NA,NA,NA,81327,33178,66143,8,5.1,7.2,8.4,6.5,0.3,69.4,86.8,87.7 +791,18183,"Whitley County, Indiana",Whitley County, Indiana,40609,34388,93.7,0.2,41.8,6.1,2,76.9,18.6,22.6,2.44,2.92,9,5.1,80.2,50267,92.1,22.8,13929,0.7,1.5,0.3,0.3,0.1,NA,NA,NA,92181,37540,75790,7.5,4.4,7.8,4,7.1,0,77.5,89.1,88.5 +792,19001,"Adair County, Iowa",Adair County, Iowa,38832,7471,94.9,1.4,42.6,6.3,3.7,77,22.2,NA,2.24,2.97,11.4,1.9,73.6,47764,94.5,20,3260,2.5,0,0,0.7,0,NA,NA,NA,89076,39526,66176,7.4,3.9,4.6,5.8,5.3,0.2,70,83.1,81.7 +793,19003,"Adams County, Iowa",Adams County, Iowa,36625,3641,95.4,0.4,46.6,5.4,2.7,78.1,24,NA,2.31,2.85,5.8,8.2,76.7,45582,92.6,24.5,1530,1,0.9,0,0,0.3,NA,NA,NA,97667,41778,68828,8.9,3.1,4.1,13.4,4.8,0,72.7,82.2,82.8 +794,19005,"Allamakee County, Iowa",Allamakee County, Iowa,36608,14038,90.4,1.8,43.1,6.4,3.2,75.9,22.7,NA,2.29,2.89,9.3,7.5,78.8,44467,92.5,19.9,6024,6.7,4.2,0.2,1.8,4.4,NA,NA,NA,84448,34692,66000,6.7,4.1,6.6,5.5,6.2,0.8,71,78.4,84.2 +795,19007,"Appanoose County, Iowa",Appanoose County, Iowa,29714,12242,95.1,1,45.5,4.9,3.6,78.6,23.4,NA,2.41,2.96,14.2,4.9,69.1,40453,89.7,19.3,5006,1,1.8,0.3,0.8,1,NA,NA,NA,68465,28911,51146,8.6,7.1,10.7,13.9,14.8,0.4,66.8,81.8,83 +796,19009,"Audubon County, Iowa",Audubon County, Iowa,34844,5622,95.2,0.3,47.4,6.7,3.2,77.8,25,18.7,2.18,2.81,5.5,1.1,76.4,38182,92,20.6,2525,1.2,0.2,0,0,0.9,NA,NA,NA,74605,34615,54152,7.6,0.9,3.3,0,0.2,0,69.9,82.9,83.2 +797,19011,"Benton County, Iowa",Benton County, Iowa,44470,25698,95.3,0.4,43.3,5.8,2.9,76.9,19.3,NA,2.51,2.98,6.4,2.4,84.3,55295,94.7,24.9,10111,1.7,1.4,0.2,0.1,0.1,NA,NA,NA,99622,40995,84742,8.8,2.4,3,0.8,1.6,0,77.7,86.5,87.9 +798,19013,"Black Hawk County, Iowa",Black Hawk County, Iowa,35937,130693,80.4,9.6,35.7,6.1,2,78.1,17.5,NA,2.34,2.99,21.3,2.6,65.3,46854,93.3,30.1,53740,3.4,3.3,1.5,0.5,2.1,14.7,16.6,7.3,89098,37409,64581,5.8,4,4.4,3.4,2.9,0,75.3,87.6,88.1 +799,19015,"Boone County, Iowa",Boone County, Iowa,41196,26669,94.4,1.3,42.2,5.1,1.8,79.1,19.6,22.4,2.39,2.93,12.8,1.6,81.1,50673,95.7,28.7,10935,1.5,0.9,0.3,0,0,NA,NA,NA,97592,41075,79741,6.3,1,3.7,2.1,1.5,0.1,78.7,88.7,87.8 +800,19017,"Bremer County, Iowa",Bremer County, Iowa,41349,25118,93.2,1.1,38.6,5.7,2.5,77.4,19.5,20.1,2.44,2.96,13.4,1.5,80.8,53887,95.9,35.2,9693,2.3,1.5,0.5,0.1,0.1,NA,NA,NA,102529,41192,83343,6.4,3.1,2.2,0.7,1.2,0,78.6,87.6,91.1 +801,19019,"Buchanan County, Iowa",Buchanan County, Iowa,40151,20645,96.4,0.7,39.9,6.6,2,74.3,18.3,23.1,2.51,3.04,9.8,4.6,81.1,46287,94.6,22.3,8150,1.8,1.3,0.1,0,0.6,NA,NA,NA,92603,37392,78430,6.9,2.6,5.9,11.6,8.2,0.3,75.6,85.6,86 +802,19021,"Buena Vista County, Iowa",Buena Vista County, Iowa,37576,20684,65.9,3.1,35.7,7,2.8,73.3,16,14.7,2.61,3.46,18.3,2.5,72.5,45233,80.5,22.1,7543,23.6,0.6,8.3,2,14.2,NA,NA,NA,89885,33083,66564,4.2,5.3,6.5,2.4,3,0,72.1,91.6,92.3 +803,19023,"Butler County, Iowa",Butler County, Iowa,37352,14301,95.3,0.2,43.7,5.1,3.5,77.5,22.8,NA,2.39,2.81,7.1,1.3,80,45714,93.6,20.4,5887,1.3,1.3,1.1,0,1,NA,NA,NA,84585,35364,69651,7.4,2.9,3.8,0.9,2.8,0.1,71.3,83.8,84.9 +804,19025,"Calhoun County, Iowa",Calhoun County, Iowa,35373,9858,92.5,1.5,42.7,5.6,3.7,78.2,23.3,NA,2.35,2.97,6.8,2,80.9,42875,93.7,21.5,3886,1.4,0.9,0.3,0,0.3,NA,NA,NA,86678,36086,66875,7.5,2.8,3,0.3,1.7,0.5,73.3,83,87.1 +805,19027,"Carroll County, Iowa",Carroll County, Iowa,37266,20677,93.6,0.8,41.8,5.6,3.8,75.9,21,NA,2.31,2.99,14,1.3,75,48031,95,23.4,8750,1.7,0.3,0.2,0,0.1,NA,NA,NA,86355,37672,68528,6.3,2.1,2.5,0.3,0.8,0.3,74.7,85.3,85.7 +806,19029,"Cass County, Iowa",Cass County, Iowa,36204,13115,96.1,0.9,44,5.1,3.4,76.4,23.2,NA,2.22,2.83,15.7,2.9,72.3,42531,93,21.6,5789,1,0.7,0,0,0,NA,NA,NA,82873,36881,61657,6.6,1.1,4.2,2.6,1.4,0,73,83.2,82.6 +807,19031,"Cedar County, Iowa",Cedar County, Iowa,42198,18427,95.4,0.5,43.8,4.8,3.1,78.5,20.6,NA,2.41,2.91,7.7,4.1,80.8,51968,95.8,21.5,7539,1.9,0.2,0.2,0,0.1,NA,NA,NA,92611,38775,79080,8.5,2.9,3.8,3.8,5.4,0.4,77.9,84.2,87 +808,19033,"Cerro Gordo County, Iowa",Cerro Gordo County, Iowa,36792,42785,91,2.2,43.9,5.3,3,79,23,15.8,2.15,2.79,16.9,3.3,71.6,44958,94.5,24.3,19421,2.9,0.8,1.2,0.3,0.2,NA,NA,NA,89519,40345,65537,7.3,2.3,3.8,6,2.2,0.1,73,84.3,87.2 +809,19035,"Cherokee County, Iowa",Cherokee County, Iowa,36066,11587,90.9,2.2,44.5,4.9,4.2,78.2,24.6,NA,2.2,2.82,12.6,1.4,73.3,42713,93.1,21.6,5082,3.4,0.4,0.7,0,0,NA,NA,NA,83796,37174,64478,9.1,2.8,6.1,4.2,5.9,0.3,72.9,77.9,84.8 +810,19037,"Chickasaw County, Iowa",Chickasaw County, Iowa,41733,11868,95.4,0.7,43.5,6.3,3,76.7,22.1,20.3,2.34,2.91,7,2.4,81.4,47249,93.2,19.1,4985,2.2,1.2,0,0.5,1,NA,NA,NA,87139,37093,73421,6.2,1.7,7.7,8.8,9.2,0,71.1,84,84.6 +811,19039,"Clarke County, Iowa",Clarke County, Iowa,36019,9690,85.9,0,38.4,7,2.8,74.5,19.7,NA,2.38,2.89,18.4,6.3,69.5,41913,86.1,16,4001,6.6,0.9,0.7,0,0.6,NA,NA,NA,85744,35360,66821,7.2,2,5.3,6.7,5.4,0,66.5,82.5,84.1 +812,19041,"Clay County, Iowa",Clay County, Iowa,36849,16446,94.6,0.5,41.8,5.3,2.8,76.9,21.9,19.1,2.22,2.98,19.4,1.4,72.7,46528,94.9,26,7249,1.6,0.3,0.5,0.9,0.2,NA,NA,NA,83566,37963,64082,8.2,4.2,4.6,0,0.6,0,75.6,88.7,87.8 +813,19043,"Clayton County, Iowa",Clayton County, Iowa,36773,17069,95.9,0.7,46.4,5.9,3.7,78.3,24.3,NA,2.27,2.85,13.2,2.8,76.6,45801,90.8,15.7,7406,3.2,2.5,0.6,0.2,0.7,NA,NA,NA,81457,35661,62326,7.5,2.5,7.6,8.3,8.5,0.4,70.1,78,81.9 +814,19045,"Clinton County, Iowa",Clinton County, Iowa,36870,46383,90.3,2.9,42.5,5.7,2.4,77.3,20.1,21.1,2.35,2.92,16.2,1,73.1,46399,92.7,22.1,19434,1.8,0.5,0.5,0.4,0.2,13.1,17.8,10.2,85010,36093,65177,8.8,3.8,5,0.4,1.7,0.3,72.8,82.9,85.8 +815,19047,"Crawford County, Iowa",Crawford County, Iowa,34852,16289,70.1,1.9,37.9,6.1,2.2,74.7,18.1,17.9,2.54,3.05,11.5,6.9,78.7,44680,84,18.3,6229,21,0.8,2.3,1.6,9.7,NA,NA,NA,83966,32731,65039,5.8,2,8.6,8.7,4.9,0.6,68.8,86.5,86.9 +816,19049,"Dallas County, Iowa",Dallas County, Iowa,54002,104136,84.9,2.5,35.8,6.9,1.8,73.2,12.5,NA,2.53,3.14,23.4,2.1,69.5,63930,96.1,51.6,40868,5,4.3,3.1,1.6,2,5.8,5.6,6.1,134691,52722,102349,5.8,2.5,4.1,2.8,3,0.3,85.5,93.5,91.9 +817,19051,"Davis County, Iowa",Davis County, Iowa,38042,9127,95.7,0,36.2,8.9,2.8,70.1,17.8,25.6,2.85,3.34,6.1,5.2,84,47281,80.3,17.6,3169,2.9,14.1,0,0,3.3,NA,NA,NA,94991,33836,79505,5,3.8,28.3,52.6,43.4,4.3,64.8,71,70.3 +818,19053,"Decatur County, Iowa",Decatur County, Iowa,29126,7669,92.9,1.6,36.2,6,2.2,77.4,20.9,22.9,2.32,2.89,12.4,8.1,68,40572,89,24.3,3049,2.8,3.4,0.6,0.3,1,NA,NA,NA,70495,27508,57146,6.3,2.5,7.9,21.2,10.5,0.2,70.4,81.5,80.8 +819,19055,"Delaware County, Iowa",Delaware County, Iowa,40000,17549,95.6,0,44,5.7,2.8,76.6,20.9,NA,2.41,2.99,7.3,2.7,82.4,47695,92.2,19.7,7176,1.8,1.9,0.1,0,0.1,NA,NA,NA,95969,40940,76205,5.9,2.4,4,10.3,3.3,1.5,75.1,83.5,86.1 +820,19057,"Des Moines County, Iowa",Des Moines County, Iowa,33613,38597,86.3,4.2,42.2,5.6,3.1,78.1,21.1,18.6,2.21,2.83,14.6,3.4,72.7,41600,94,23.8,17188,2.1,0.6,0.7,0.2,0.1,NA,NA,NA,81543,36246,60662,8.2,3.2,4,0,1,0.7,73.3,86.1,87.8 +821,19059,"Dickinson County, Iowa",Dickinson County, Iowa,40776,17844,94.5,0.1,48.1,4.6,3.7,80.8,27.6,17.1,2.03,2.65,16.4,4.5,76.7,46160,97.3,32.3,8650,1.4,1.1,0.5,0.2,0.3,NA,NA,NA,98855,47165,74570,7.8,2.3,3.7,1.5,2.8,0,78.9,88.5,88.5 +822,19061,"Dubuque County, Iowa",Dubuque County, Iowa,40449,98948,89.9,2.9,38.8,6,2.4,77.3,18.8,NA,2.34,2.96,20.5,3.5,73.2,49232,94.1,32.9,40585,2.7,1,1,0.3,0.6,9.4,9.5,9.4,98871,40624,75919,6.2,3.6,3.5,1.2,1.9,0.2,79.2,87.8,89.2 +823,19063,"Emmet County, Iowa",Emmet County, Iowa,33571,9316,88.6,2.2,43.3,4.3,3.4,80.5,23.5,21.6,2.22,2.87,10.6,2.6,77.7,40936,87.7,15.7,3922,5.9,1,0.2,0,2.9,NA,NA,NA,77881,36957,65181,5.1,1,5.4,0.2,3.4,0,68.6,85.7,86.2 +824,19065,"Fayette County, Iowa",Fayette County, Iowa,33303,19393,92.7,0.8,43.7,5.8,3.3,78.6,22.1,22.1,2.28,2.92,7.5,3.4,77,42192,93.4,18.2,8203,2.2,0.9,0.2,0.1,0.4,NA,NA,NA,75669,32982,58764,8.5,3.7,4.7,2,2.9,0,71.7,81.9,83.7 +825,19067,"Floyd County, Iowa",Floyd County, Iowa,36561,15502,90.4,1.2,44.2,6.3,4.2,77.4,22.7,NA,2.3,2.97,13.8,1.2,74.4,42886,94.7,18.5,6620,2.5,0.7,1.2,1.1,0.8,NA,NA,NA,83597,36221,64500,9.5,4,4.1,9.2,3.5,0,64.5,80,81.9 +826,19069,"Franklin County, Iowa",Franklin County, Iowa,38201,9977,87,0.6,41.9,6.9,3,75.6,21.4,NA,2.4,3.06,9.9,1,72.5,46484,91.6,18.2,4084,10.4,2.8,0.1,0,2,NA,NA,NA,76293,32451,63648,7.6,4.3,10.7,13.7,8.4,0.6,64.4,78.3,81.6 +827,19071,"Fremont County, Iowa",Fremont County, Iowa,38996,6570,93.5,0.6,46.4,4.6,3.7,78.1,23.6,21.5,2.34,2.93,5.4,1.7,80.8,49309,95,21.1,2760,2.7,0.4,0.5,0,0.9,NA,NA,NA,93275,39761,73750,8,1.1,3.9,1.9,1.1,0.1,74.6,85.9,85.1 +828,19073,"Greene County, Iowa",Greene County, Iowa,36116,8722,93.8,0.1,44.8,4.9,3.5,78.9,24.4,NA,2.19,2.8,10.9,2.3,74.3,43894,93,19.8,3928,3.3,0.7,0.6,0,0.2,NA,NA,NA,78888,36237,59159,9.2,3.3,3.4,0,3.1,0,75.9,86.8,88.1 +829,19075,"Grundy County, Iowa",Grundy County, Iowa,42534,12352,96.1,0.7,41.5,5.7,2.7,76.4,20.8,NA,2.4,2.93,8.8,2.9,84,49600,97.2,24.7,5085,1.2,1,0.3,0.1,0.2,NA,NA,NA,95092,39565,83617,6.5,2.2,2.6,1.4,1.1,0.2,76.7,86.3,87.9 +830,19077,"Guthrie County, Iowa",Guthrie County, Iowa,42135,10646,93.9,0.5,46.5,4.9,2.1,78.6,23.5,26.9,2.29,2.7,6.1,1.7,83.5,49388,94.9,24.3,4587,1.7,0.8,0.2,0,0.5,NA,NA,NA,100399,42898,79981,7.7,2.7,3.4,6.8,2.9,0.4,77.8,88.4,87.1 +831,19079,"Hamilton County, Iowa",Hamilton County, Iowa,41488,14893,87.4,1.2,42.2,5,4.5,76.6,21.3,NA,2.33,3,13.6,2.1,73.8,50769,92.6,22,6317,4.7,1.4,1.3,0.2,1.7,NA,NA,NA,88499,38075,71750,7.9,2.9,4.3,2.9,4.7,0.1,69.6,81.4,83.2 +832,19081,"Hancock County, Iowa",Hancock County, Iowa,40573,10718,93.7,0.9,44.6,5.3,4.2,78.7,23.9,20,2.27,2.72,7.9,3.2,82,46419,91.6,21.4,4614,4.1,1.3,0.5,0.3,0.4,NA,NA,NA,86063,36756,70212,7.7,2.3,4.7,4.1,4,0,69.9,84.5,86.3 +833,19083,"Hardin County, Iowa",Hardin County, Iowa,36774,16729,92.1,1,45.2,4.6,3.7,80.8,23,21.4,2.29,2.94,10.8,1.9,73.3,43444,93.7,21.2,7010,3.6,0.4,1,0.1,1.6,NA,NA,NA,76468,33765,64906,7.1,3.3,4.9,0.8,5.5,0,71.9,80,82.2 +834,19085,"Harrison County, Iowa",Harrison County, Iowa,40772,14645,96.2,0.1,41.9,5.7,3.3,76.9,19.7,26.2,2.39,2.87,8.4,4.6,76.9,50940,93.5,21.2,6004,0.9,0.4,0.2,0,0,NA,NA,NA,95657,39369,77027,9.3,2.5,4.2,1.1,2.9,0,72.7,87.1,84.1 +835,19087,"Henry County, Iowa",Henry County, Iowa,33417,20228,88,2.7,40.5,5.3,2.5,79,19.4,18.8,2.44,2.99,13,4.3,74,41836,91.4,22.5,7617,3.2,0.6,1.3,0.3,0.9,NA,NA,NA,77833,31084,64604,7.2,2,4.5,3.7,3.8,0.1,75.3,85.2,85.4 +836,19089,"Howard County, Iowa",Howard County, Iowa,35845,9459,93.8,0.1,39.3,6.6,2.5,74.4,20.4,22.1,2.52,3.06,5.7,1.1,76.6,42122,91.8,18.7,3672,2.6,5,0.7,0,1.2,NA,NA,NA,84023,33190,67336,7.7,0.9,9.6,13.3,14.6,0.1,73.5,81,83.2 +837,19091,"Humboldt County, Iowa",Humboldt County, Iowa,38635,9573,91.9,0.3,41.8,5.8,3.5,76.3,21.4,19.4,2.23,2.75,14.5,1.5,75,47639,93.6,19.3,4236,4.4,0.9,0.6,0,2.7,NA,NA,NA,86372,38775,66994,7.2,3.3,6,2,6.2,0,73.7,86.2,86.1 +838,19093,"Ida County, Iowa",Ida County, Iowa,38487,6944,94.2,0.9,42.3,5.5,3.7,75.5,22.1,17,2.27,2.87,8.5,1.5,77.6,46684,93.4,20.7,2994,4.2,0.6,0.2,0.1,0.6,NA,NA,NA,81453,35471,62841,7.2,1.9,5.5,0,3.1,1.4,70.1,85.5,86.1 +839,19095,"Iowa County, Iowa",Iowa County, Iowa,41646,16547,94.9,0.6,42.2,5.4,2.7,76.5,19.5,NA,2.37,3.01,13.5,3.7,76.1,48086,94.7,24.2,6849,1.1,1.5,0.8,0,0,NA,NA,NA,94049,39363,72185,7.8,1.9,2.4,0,0.6,0,79,87.1,88.7 +840,19097,"Jackson County, Iowa",Jackson County, Iowa,38559,19429,95.9,0.8,44.2,5.7,2.8,77.8,21.7,25,2.31,2.82,8.2,7.1,78.6,46622,93.8,18.4,8303,2.2,0.6,0.4,0,0.1,NA,NA,NA,89865,38325,71605,7.6,5,5.4,4.4,4.9,0,73.4,82.7,84.5 +841,19099,"Jasper County, Iowa",Jasper County, Iowa,40195,37864,92.8,1.6,41.4,5.3,2.7,77.9,19.4,NA,2.44,3.04,15.4,2.8,74.8,47200,93.4,19.9,14748,2.4,0.6,0.4,0.7,1,NA,NA,NA,93350,37380,70128,7.6,4.4,4.1,1.5,2.1,0.1,74.6,87.5,89.9 +842,19101,"Jefferson County, Iowa",Jefferson County, Iowa,32698,15676,84.6,5.9,43.5,4.7,2.4,82.9,25.7,15.2,2.14,2.82,18.5,8.2,65.1,35877,95.4,41.6,6878,1.7,4.9,3.3,2.1,2.3,NA,NA,NA,78591,35800,56824,8,4.6,7.2,0.2,0.2,0.6,82.1,88.1,87.1 +843,19103,"Johnson County, Iowa",Johnson County, Iowa,36948,154881,77.6,7.6,30.8,5.4,1.4,80.5,12.9,19.7,2.36,3.04,33.7,3.8,58.8,54091,96.2,54.6,62214,4.9,4.4,4.3,2.5,3.5,16.7,11,4.9,108967,44699,74721,3.9,3.2,5.1,6.3,3.6,0.7,88.5,92,89.3 +844,19105,"Jones County, Iowa",Jones County, Iowa,40556,20799,92.4,2,43,5.2,2.5,79.1,21.1,25.6,2.42,2.93,10.1,4.5,80.7,49319,94.4,20.7,8109,2,0.5,0.3,0,0.1,NA,NA,NA,86601,35376,73071,8,2.5,2.7,0,0.5,0,72.7,82,85.7 +845,19107,"Keokuk County, Iowa",Keokuk County, Iowa,35541,9964,95.9,0.7,42.8,5.6,2.6,77.3,21.9,NA,2.42,3.07,8.5,2.4,78.9,45106,94.3,15.9,4065,1.5,1,0.2,0.1,0.4,NA,NA,NA,80199,33181,60856,6.9,3.6,3.3,2.1,1.8,1.1,71.1,85.3,83.1 +846,19109,"Kossuth County, Iowa",Kossuth County, Iowa,38101,14610,93.1,0.6,45,5.5,4.4,77.7,25,NA,2.2,2.86,12.5,0.1,75.3,44443,94.7,22.2,6502,3,1.2,0.5,0.1,1.5,NA,NA,NA,83589,37180,65656,7.8,1.9,3.9,2,2.3,0.2,75.4,82.5,86.7 +847,19111,"Lee County, Iowa",Lee County, Iowa,34263,33175,91.6,2.8,43.7,5.5,2.6,78.7,21.7,19.6,2.24,2.8,13.3,4.4,75.5,42180,94.2,21,14305,1.5,0.5,0.1,0,0,NA,NA,NA,74428,32537,59803,8.9,3.8,4.7,0.6,1.4,0.1,69,84.8,86 +848,19113,"Linn County, Iowa",Linn County, Iowa,41424,229463,84.6,5.8,38.5,5.9,2.1,77.2,16.9,19.1,2.36,2.95,22.1,3.5,73.3,51892,95.3,34.8,95051,2.9,2.7,1.6,1.4,1.5,9.9,11.7,7,101721,42497,76421,7.5,3.4,3.8,1.8,1.4,0.3,81.9,91.2,91.3 +849,19115,"Louisa County, Iowa",Louisa County, Iowa,37878,10710,82.5,0.6,41.8,5.5,2.7,77.6,19.8,23.9,2.55,2.93,4.9,7.6,80.1,48388,87.6,16.5,4143,11.4,0.8,0.7,0,3,NA,NA,NA,95468,35747,80223,6.5,3.8,5.1,2.5,1.2,0.7,73.8,87.7,87.8 +850,19117,"Lucas County, Iowa",Lucas County, Iowa,35639,8685,96,0.2,43.3,6,3.5,77,21.6,NA,2.34,2.92,11.8,4.7,81.1,45513,92.5,14.5,3672,2,1.4,0.6,0.2,1.9,NA,NA,NA,77148,32962,67921,7.5,3.6,7.9,15.4,8.7,0,64.3,80.1,77.3 +851,19119,"Lyon County, Iowa",Lyon County, Iowa,38125,12087,94.6,0.3,38.1,7,2.9,71.4,18.9,20.1,2.68,3.25,6.2,1.4,83.3,47628,95.4,20.8,4444,2.3,1.4,0.1,0.1,0.5,NA,NA,NA,89389,33727,72881,6,2.2,4.4,3.4,2.9,0,76.8,82.6,89.7 +852,19121,"Madison County, Iowa",Madison County, Iowa,46197,16760,95.7,1.3,41,5.3,1.6,75.1,18.1,NA,2.5,3.09,8.7,4,81.3,54689,95.3,25.5,6625,1,1.4,0.3,0,0.2,NA,NA,NA,103385,41878,89542,7.5,1.8,4.9,4.9,6,1.6,78,86.4,84.5 +853,19123,"Mahaska County, Iowa",Mahaska County, Iowa,35785,22045,93.2,1.5,39.1,6.1,2.2,76.1,19,17.7,2.4,2.94,14.5,4.1,67.8,44056,94,23,8891,1.5,0.5,1.1,0.1,0.8,NA,NA,NA,84768,35035,69019,5.9,2.8,4.7,0,1.7,0,73.5,87.7,86.2 +854,19125,"Marion County, Iowa",Marion County, Iowa,43660,33551,94.8,0.5,39.7,5.6,3.3,76.6,18.9,NA,2.38,2.87,13.1,4.5,77.7,53483,94.6,33.1,13409,1.6,1.5,1.3,0,0.9,NA,NA,NA,100349,40540,78059,7,1.7,2.5,0,2.1,0.2,76.1,86.6,87.2 +855,19127,"Marshall County, Iowa",Marshall County, Iowa,37872,39971,74.6,1.9,38.7,6,2.8,74.7,18.5,NA,2.48,3.12,16.3,3.2,73.3,44256,87,21.4,15546,14.7,0.6,3,0.3,5.3,NA,NA,NA,84571,32737,72785,8.9,3.7,5.4,1.1,2,0.5,70.8,88,86.1 +856,19129,"Mills County, Iowa",Mills County, Iowa,46806,14563,94.4,0.4,42.6,4.8,2.5,76.9,19.9,24.7,2.64,3.26,10.7,3.4,84.2,54560,95.6,32,5349,1.5,0.7,0.5,0,0,NA,NA,NA,109588,43081,87810,9.7,2.3,2.6,0.8,1.7,0,81.8,88,89 +857,19131,"Mitchell County, Iowa",Mitchell County, Iowa,39515,10548,96.8,0.4,42.2,6.1,3.3,76,21.4,NA,2.31,2.92,8.7,2.1,80,48215,92.9,22.7,4477,2.8,2,1.5,0.1,0.9,NA,NA,NA,90326,38824,68704,9,0.5,7.3,4,5.6,0.1,79.4,84,88.2 +858,19133,"Monona County, Iowa",Monona County, Iowa,35720,8619,94.3,0.2,44.7,5.6,4.2,77.6,23.8,NA,2.16,2.74,7.3,4.6,76.4,42167,93.6,18.7,3891,2.9,0.5,0,0,0.5,NA,NA,NA,76738,34565,62944,9.4,2.1,3.3,2.8,2.3,0,69.3,80.4,83.1 +859,19135,"Monroe County, Iowa",Monroe County, Iowa,42148,7546,95.3,0.2,42.1,6.1,3.1,76.9,19.8,27.6,2.47,3.14,7.2,13.6,83.8,52515,94.6,20,2991,1.5,0.8,0.9,0,0,NA,NA,NA,82429,35430,72518,5.1,2.8,2.5,0,0.9,0,69.1,88.6,82.2 +860,19137,"Montgomery County, Iowa",Montgomery County, Iowa,37326,10254,93.3,0.6,43.8,5.4,4,77.4,22.8,NA,2.18,2.7,11.6,1.9,71.6,45455,92.6,18.7,4609,1.6,0.6,0.7,0.1,0.1,NA,NA,NA,83851,37388,63190,7.8,2,2.6,0,0.7,0,67.7,82.8,82.9 +861,19139,"Muscatine County, Iowa",Muscatine County, Iowa,38281,42735,82.1,2.9,39.1,5.9,2,75.8,17.6,19.4,2.45,2.96,14.3,6.6,74.9,46651,90.5,22.7,17170,11.6,2.2,0.7,0.8,1.2,NA,NA,NA,87676,35228,69512,6.5,3.1,4,0.2,1.8,0.1,78.6,88.2,90.6 +862,19141,"O'Brien County, Iowa",O'Brien County, Iowa,37782,14103,89.9,1.3,39.8,6.6,4.6,75.6,21.1,NA,2.36,2.98,10.9,1.4,77.3,47227,90.3,22.5,5791,4.5,1,0.4,0.7,1.1,NA,NA,NA,81625,34346,68216,6,1.1,3.6,3.7,4.8,0,75.5,83.6,88 +863,19143,"Osceola County, Iowa",Osceola County, Iowa,39075,6114,89.7,0.8,43.5,5.6,3.7,76.5,22,NA,2.3,2.95,10.7,0.5,78,45806,85.6,15.4,2606,10,1.8,0.8,0,2.7,NA,NA,NA,84494,37142,69138,8.4,4,7.7,16.3,8.8,0.1,68.5,81.7,86.1 +864,19145,"Page County, Iowa",Page County, Iowa,35187,15168,92.6,1.8,45,4.3,4,80.8,23.8,NA,2.27,2.97,14.2,1.4,70,42825,93.2,18.8,6161,2.1,0.6,1.2,1,1.6,NA,NA,NA,74484,32567,57752,9.2,5.8,4.8,2,3.1,0,70.5,81.5,85.3 +865,19147,"Palo Alto County, Iowa",Palo Alto County, Iowa,37292,8902,92.6,1.7,41.5,6.1,4.5,76.6,21.9,17.7,2.29,3,12.8,1.8,75.7,43333,93.9,20.5,3739,1.6,0.7,0.3,1.8,0.7,NA,NA,NA,84394,35518,68963,7.7,2.5,5,5.5,3.2,0.1,75.7,82.3,86.9 +866,19149,"Plymouth County, Iowa",Plymouth County, Iowa,43292,25699,90.5,2.4,41.1,5.7,2.8,75.1,19.3,NA,2.46,2.98,15,4.1,73.7,51262,94.2,23.9,10297,5.4,1.4,0.5,1.8,1.7,NA,NA,NA,103320,42241,81600,7.8,1.7,5.6,3.7,5.9,0,77.4,86.5,89.7 +867,19151,"Pocahontas County, Iowa",Pocahontas County, Iowa,39128,7040,91.7,1.1,43.9,6.1,3.7,77,23.4,19.9,2.24,2.91,6.5,2,78.6,45856,91.4,18.7,3084,2.9,0.7,0.9,0.2,1,NA,NA,NA,80616,35956,63423,8.5,5.6,7.1,4.4,4,0.8,73.1,81.6,85.2 +868,19153,"Polk County, Iowa",Polk County, Iowa,45078,497441,77.8,7.5,36.2,6.6,1.5,75.4,13.7,19.9,2.41,3.08,26.2,2.1,67.1,54313,92.5,39.5,202404,6.1,2.6,3.4,2,3.4,10.1,13.1,7.4,106356,44008,81621,6,3.9,4.9,1.7,2.1,0.3,81.3,91.4,90.5 +869,19155,"Pottawattamie County, Iowa",Pottawattamie County, Iowa,39090,93407,89,1.8,40.1,5.5,2.1,76.8,18.4,20.2,2.42,3.01,17.5,3.9,70.3,49310,91,23.5,37531,4.8,0.8,0.8,0.2,2,10.9,14.5,9.8,90639,36853,71446,8.6,3.7,4.8,0.9,2.2,0.4,73.9,86.8,84 +870,19157,"Poweshiek County, Iowa",Poweshiek County, Iowa,34009,18582,91.6,1.3,40.8,4.4,2.6,80.5,21,19.3,2.18,2.88,16,5.1,70.7,48903,94.6,28.2,7791,2,0.7,0.5,0,1.2,NA,NA,NA,86811,37173,64837,6.9,3.9,3.6,0.6,1.7,0,74.1,85.9,83.4 +871,19159,"Ringgold County, Iowa",Ringgold County, Iowa,35707,4664,95.9,0.2,44.6,5.8,3.6,76.8,23.1,NA,2.39,2.9,6,6.6,78.8,43415,93.4,25.2,1869,2.1,1.2,0,0.1,0.3,NA,NA,NA,91608,37108,69821,5.8,1.9,7.9,6.7,4.7,0.3,68,82.3,83.4 +872,19161,"Sac County, Iowa",Sac County, Iowa,39309,9759,95,0.6,45.3,6,4.6,77.7,23.9,NA,2.25,2.86,9.6,0.8,78,45069,92.2,21.2,4251,2.6,0.8,0.8,0,1.5,NA,NA,NA,90666,40261,70991,8.3,2.9,5.2,7.7,2.9,0,69.5,81.3,82.8 +873,19163,"Scott County, Iowa",Scott County, Iowa,42688,174302,80.7,7.1,39,5.9,1.9,76.6,17.1,NA,2.35,2.96,22,2,69.6,52173,94.2,36.2,72675,3.1,1.7,2.1,0.3,1.1,11.6,13.9,8.2,101656,42754,76363,7.7,3.6,5.4,3.5,3.4,0.3,79,89.1,89 +874,19165,"Shelby County, Iowa",Shelby County, Iowa,38194,11757,93.2,0.5,45.1,5.5,4.1,77.2,23.2,NA,2.32,2.92,8,1,75.8,47023,95.3,23.3,4983,1.7,0.2,0,0,0,NA,NA,NA,91881,38805,67690,8.2,2.7,3.2,2.3,0.9,0,75.6,82.1,85.9 +875,19167,"Sioux County, Iowa",Sioux County, Iowa,36596,35984,87.8,0.6,34,7.2,2,72.6,15.9,12.7,2.68,3.17,13.2,1.7,77.8,48518,90.6,30.4,12576,9.7,1.3,0.6,0,1.9,NA,NA,NA,104234,36175,84736,4.3,1.5,5.7,1.7,5.8,0.1,79,88.7,90.9 +876,19169,"Story County, Iowa",Story County, Iowa,30421,98592,82.8,2.7,27,4.3,1.8,83.6,13,18.2,2.23,2.89,36.8,3.9,56,51835,97.1,53.3,38708,3.1,4.3,5.7,1.2,2.4,18.6,8.4,5.6,95068,37933,69006,4.4,4.3,4.6,5.3,2.2,0.5,88.7,91.8,78.6 +877,19171,"Tama County, Iowa",Tama County, Iowa,36779,16982,81.5,1.2,41.8,5.9,3.4,76,20.4,NA,2.47,3,7.7,2.9,76.5,44758,91.5,19.4,6731,6.5,0.9,0.4,3.9,2.6,NA,NA,NA,84210,34094,67955,8.6,3.8,7,3.2,3.2,1,70.2,85.9,84.1 +878,19173,"Taylor County, Iowa",Taylor County, Iowa,36918,5901,92.1,0.1,43.6,5.4,3.9,76.5,22.6,NA,2.34,2.93,5.9,5,77.7,44688,92,15.5,2471,4.5,0,0,0,0.8,NA,NA,NA,83448,35070,67279,9.3,3,5.2,1,0.8,0.1,70.7,79.9,84.7 +879,19175,"Union County, Iowa",Union County, Iowa,32295,12038,94.2,0.5,40.6,5.1,1.7,76.3,20.5,15.4,2.32,3.05,15.2,5.3,72.1,40841,93,24.1,5055,2,1.1,0,0,1,NA,NA,NA,73974,31843,56813,8.2,4.3,7.9,15.6,8,0,73.2,81.3,84.9 +880,19177,"Van Buren County, Iowa",Van Buren County, Iowa,33645,7236,95.8,0.2,44.8,6.4,2.8,76.8,23.2,NA,2.47,3.16,5.2,9.5,83.1,42269,89.3,19.4,2898,1.3,6.2,0,0,1.3,NA,NA,NA,76307,31538,60183,9.4,4.1,12.2,21.6,13.8,0.3,64.1,77.2,75.8 +881,19179,"Wapello County, Iowa",Wapello County, Iowa,35736,35265,82.7,3.4,39.9,5.9,2.8,76.3,18,NA,2.44,2.98,15.1,3.9,67.4,44517,87.7,19.4,14088,6.2,2.1,1.8,1.7,2.9,16.7,22.1,12.1,80944,33337,60034,6.5,3.4,7.2,1.6,5.1,0.3,69.1,85.5,83.2 +882,19181,"Warren County, Iowa",Warren County, Iowa,46650,53484,93.8,0.7,38.7,5.8,2.3,75.4,16.5,NA,2.57,3.05,12.6,2.9,83,58575,96.7,32.7,20219,2,0.7,0.6,0.1,0.7,NA,NA,NA,111116,43239,92990,7.1,2.7,2.2,2,1.2,0.5,82.5,91.2,90.7 +883,19183,"Washington County, Iowa",Washington County, Iowa,38532,22539,91.3,0.6,40.3,6.3,2.6,75.4,19.8,NA,2.45,2.99,14.4,3.3,72.2,45570,93.2,24.9,9048,4.2,2.7,0.6,0,1.5,NA,NA,NA,92270,37686,71339,6.2,2.5,7.2,4.6,6.8,0.6,75.8,86.7,87.5 +884,19185,"Wayne County, Iowa",Wayne County, Iowa,36403,6518,94.6,0.4,42,7,2.4,73.7,22.4,NA,2.51,3.16,7.9,8.1,80.1,42854,88.4,16,2554,1.4,4.6,0.4,0,0.5,NA,NA,NA,85767,34623,59118,5.9,1.8,12.5,30.2,22,1.1,67.3,77.6,78.9 +885,19187,"Webster County, Iowa",Webster County, Iowa,35566,36848,86.9,3.2,39.8,5.7,2.6,78.6,19.7,NA,2.18,2.92,17.1,2.2,70.1,46438,92.3,20.5,15641,3.5,2.3,0.7,0.2,1.2,NA,NA,NA,82910,35172,68054,7.1,3.7,7.5,7.1,6.9,1.4,70.5,84.7,83.6 +886,19189,"Winnebago County, Iowa",Winnebago County, Iowa,36510,10648,90.8,0.9,41.7,4.8,2.8,78.3,21.6,NA,2.19,2.79,11.7,1.4,74.4,44971,94.7,25.1,4591,3.3,2.1,0.8,0,0.8,NA,NA,NA,84968,36877,63719,6.3,2.8,4.5,4.2,2.9,0.2,70.5,87.6,88 +887,19191,"Winneshiek County, Iowa",Winneshiek County, Iowa,38059,19972,94.4,0.7,42.2,4.6,2.8,81,22.6,NA,2.21,2.78,11.9,2.1,76.4,47766,95.4,31.5,8197,2.4,1.4,0.5,0.1,0.6,NA,NA,NA,97497,40595,75652,7,1.8,2.9,1.3,2.2,0.3,77.1,83.4,86.2 +888,19193,"Woodbury County, Iowa",Woodbury County, Iowa,36846,105760,74.1,4.6,36.2,6.8,1.5,74.1,15.5,17.6,2.54,3.16,18.2,3.5,68.4,46395,87.1,23.4,40503,12.2,2.2,2.1,1.3,5.2,13.3,16.7,10.6,88318,34330,70147,6.1,4.3,6.5,1,2.8,0.9,72.4,88,85.7 +889,19195,"Worth County, Iowa",Worth County, Iowa,41447,7380,94.7,0.9,44.3,5.7,3.1,79.4,22.4,NA,2.28,2.79,9.4,1.7,81.2,44673,94.2,20.1,3195,0.8,1.8,0.5,0,0.2,NA,NA,NA,88871,38232,76875,10.3,3.4,6.6,12.6,6.8,0.2,72.8,82.8,84.5 +890,19197,"Wright County, Iowa",Wright County, Iowa,38223,12817,83.6,0.2,39.8,6.5,3.7,73.9,22.1,NA,2.36,2.89,10.5,1.3,74.2,43162,92.7,23.5,5352,14.3,0.5,0.7,0,4.7,NA,NA,NA,87764,37066,64033,8.3,1.2,5.4,0,2.8,0.2,70.4,78.9,82.1 +891,20001,"Allen County, Kansas",Allen County, Kansas,30658,12491,91.1,1.9,41.3,5.8,2.7,77.8,20.8,NA,2.4,2.98,6.7,9.9,74.5,37500,93.5,21.3,5014,1.4,0.4,1.6,0,0.3,NA,NA,NA,69378,29176,57618,7.4,7.5,9.6,1.5,7.8,0,72.1,80.3,82.5 +892,20003,"Anderson County, Kansas",Anderson County, Kansas,32409,7819,92.1,0.9,40.4,6.9,1.6,73.6,20.7,27,2.34,2.86,4.2,6.3,81.1,38390,89.5,15.8,3287,3,7.4,0,0.2,1.1,NA,NA,NA,74313,30213,64925,6.6,3.6,10.7,7.6,5.5,2.7,61.3,77.8,72 +893,20005,"Atchison County, Kansas",Atchison County, Kansas,28104,16211,87.5,4.3,36.4,5.4,2,77.9,17.7,21.6,2.46,3.11,12.5,5.7,73.4,43149,94.3,22.9,5876,4.5,0.8,0.4,0,1.2,NA,NA,NA,78019,29910,62164,6.3,3.6,8.7,4.9,7.1,0,70.1,86.1,84 +894,20007,"Barber County, Kansas",Barber County, Kansas,35808,4153,92.8,0.2,42.6,5.9,3.2,75.1,23.2,NA,2.27,2.82,3.5,3.8,81.3,41866,94,27.1,1806,1.4,0.3,0.2,0.2,0.6,NA,NA,NA,78910,34620,57615,6,2.1,6.9,0.6,2.3,0,71.7,86.8,84.8 +895,20009,"Barton County, Kansas",Barton County, Kansas,33087,25275,83.6,0.7,38.8,6.4,3.4,75.7,20.6,NA,2.43,3.01,12.1,6.9,66.2,41306,90.3,21.7,10219,8.4,0.6,0,0.1,2.8,NA,NA,NA,73254,31835,56733,8.1,3.5,11.3,4.5,5.3,0.1,65.5,85.3,85.7 +896,20011,"Bourbon County, Kansas",Bourbon County, Kansas,33610,14384,90.5,2.2,38.8,6.2,2.1,75,19.4,NA,2.43,3.02,8.8,9.7,72.9,42250,91,24.3,5770,2,1.2,0.8,0,0.3,NA,NA,NA,77037,31717,67555,7.3,3.6,7.8,2.5,4.2,0.2,70.2,87.5,87.3 +897,20013,"Brown County, Kansas",Brown County, Kansas,31003,9415,83.3,1.4,42,6.1,2.3,74.7,21.5,NA,2.5,3.16,10.1,2.3,75.4,38931,95,18.3,3719,2.3,0.5,0,1,0.3,NA,NA,NA,76674,31355,58886,9,5.9,10.2,11.3,7.4,0.3,69.8,81.3,84.2 +898,20015,"Butler County, Kansas",Butler County, Kansas,41583,67916,88.3,2.2,38.3,5.7,2.1,75,15.9,NA,2.59,3.08,8.4,6.8,78.2,51409,94.1,32.6,25025,3.4,1.6,0.9,0.4,0.3,9,12.4,7.2,98834,37381,80375,9,3,6.3,2.2,3.6,0.5,82.2,90.4,88.6 +899,20017,"Chase County, Kansas",Chase County, Kansas,31500,2579,89,1.2,44.5,4.9,2.7,79,24,NA,2.15,2.72,6.4,6.7,71.9,36215,92.6,29.3,1145,3.8,2,0,0,0.6,NA,NA,NA,72786,31554,54518,7.5,0.8,7.5,2.9,4.4,0,72.6,86.6,79.9 +900,20019,"Chautauqua County, Kansas",Chautauqua County, Kansas,29181,3370,83.3,0.9,45.3,5.2,1.9,77.6,23.9,NA,2.5,3.05,2.7,13.8,83.3,37651,89.4,18.3,1315,1.8,0.8,0.3,0,0,NA,NA,NA,72939,30782,54592,6.9,4.7,12.7,11.2,9.6,0.3,64.3,85.7,82.7 +901,20021,"Cherokee County, Kansas",Cherokee County, Kansas,32590,19236,87.6,0.8,42,6,1.6,77.3,19.7,20.5,2.46,3.03,9.3,9,72.4,39601,90.9,20.1,7727,1.4,0.7,0.3,0.4,1,NA,NA,NA,70814,30180,58274,6.3,3.6,10,7.7,6.9,0.4,68.1,85.8,84.1 +902,20023,"Cheyenne County, Kansas",Cheyenne County, Kansas,33371,2628,88.6,0,39.8,6.4,4.3,76.8,25.5,13.3,2.18,3.03,5,3.3,79.6,36809,87.8,21.6,1186,5.1,1.5,0,0,1.3,NA,NA,NA,71088,32883,55765,4.3,1.4,15.1,5.2,13.7,0,73.9,86,84.1 +903,20025,"Clark County, Kansas",Clark County, Kansas,36058,1987,85.3,0,46.5,6.3,5.8,75.5,23.8,19.4,2.39,2.93,5.9,3.3,75.6,50744,92.4,31,813,5.7,2.8,1.2,0,0,NA,NA,NA,83979,35022,65515,9,2,5.9,0,8.4,0,77.7,86.6,85.5 +904,20027,"Clay County, Kansas",Clay County, Kansas,34922,8071,94.3,2.3,43.1,6,3.6,76.9,24.6,NA,2.17,2.6,10.2,2.9,73.2,45563,93.2,23.4,3629,0.5,0.8,0.4,0,0.3,NA,NA,NA,78647,35913,63136,16.6,1,6.6,10.7,6.5,0,76.4,80.7,83.9 +905,20029,"Cloud County, Kansas",Cloud County, Kansas,32880,8973,92.1,0.8,39.4,7,2.8,76.2,21,NA,2.31,2.96,7.8,1.5,74.7,40084,95.8,22.4,3670,2.7,1.9,0,0.6,0.5,NA,NA,NA,70287,29325,57333,7.3,4.6,9.9,4.1,5.2,0,73.4,83.7,83 +906,20031,"Coffey County, Kansas",Coffey County, Kansas,34913,8304,93.7,0.5,44,4.4,2.8,78.5,22,NA,2.3,2.82,4.1,6.5,75.9,44583,92.2,21.2,3547,2.1,1.7,0.8,0,0.5,NA,NA,NA,86049,37275,67377,9.9,6.3,11.6,11.6,15.3,0.9,75.3,89,86 +907,20033,"Comanche County, Kansas",Comanche County, Kansas,32052,1685,96.5,0.3,50.8,2.6,5.5,81.7,28.9,14.4,1.98,2.69,6,4.3,73.2,37656,95.2,19.2,821,2.1,0.2,0,0,0,NA,NA,NA,64129,31710,49417,5.4,2.4,9.1,14,8.5,0,76.4,85,84.2 +908,20035,"Cowley County, Kansas",Cowley County, Kansas,31298,34487,82.6,2.3,38.1,5.4,2.8,76.3,18.8,NA,2.42,3.06,14.2,8.8,70.5,40356,91.6,24.3,13339,4.6,0.7,1.4,0.2,1.1,NA,NA,NA,77057,31072,58263,7.8,4.8,8.2,2.5,5.4,0.6,71.1,86,83.8 +909,20037,"Crawford County, Kansas",Crawford County, Kansas,29268,38963,88.5,2.2,33.8,5.7,1.9,77.8,15.6,16.5,2.34,2.95,15.8,4.4,60.1,40520,94.2,32,15897,3.7,0.7,0.9,0.1,0.4,20.8,23.6,12.7,68884,29188,50311,5,3,11.4,3,5.1,0.5,72.6,88.6,86 +910,20039,"Decatur County, Kansas",Decatur County, Kansas,34284,2746,92.7,1.7,52.1,5.3,5,80.1,29.3,NA,1.96,2.51,2.8,4.3,79.4,33894,94.2,27.8,1373,2.3,0.2,0.4,0,0.7,NA,NA,NA,71773,36280,52030,4.9,3.5,7.2,0,4.5,0,77.9,83.4,88.1 +911,20041,"Dickinson County, Kansas",Dickinson County, Kansas,39876,18423,91.8,0.3,42.1,5.3,2.5,77.1,20.7,NA,2.28,2.77,6.6,1.9,79.1,45034,92.4,21.9,7958,3.3,1,0.6,0,0.7,NA,NA,NA,83526,36242,67982,11.2,2.3,8.2,15.4,8.3,0.1,77.3,85.7,89.7 +912,20043,"Doniphan County, Kansas",Doniphan County, Kansas,36397,7492,90.7,3.1,41.3,5.2,2.2,79.6,19.4,NA,2.54,3.04,5,11.7,81.8,46966,92.9,21.5,2670,1.1,1.5,0,1,0,NA,NA,NA,85580,33462,72833,5.8,1.4,7.4,10,7.1,0,69.1,84.8,87.2 +913,20045,"Douglas County, Kansas",Douglas County, Kansas,34793,119547,79.2,4.2,31.3,4.5,1.1,82.2,13.3,20.6,2.22,2.86,34.9,1.7,49.5,50092,95.9,52,49939,4.1,2.4,4.5,1.6,1.9,15.2,9,4.6,93634,39321,68756,5.2,4.2,7.8,6.1,5.1,0.2,88.4,93.6,91.4 +914,20047,"Edwards County, Kansas",Edwards County, Kansas,36074,2817,83,0.1,44.3,5.3,4.6,76.8,22.3,22.5,2.32,2.94,2,3.8,82.1,42358,87.7,20.7,1187,19.7,1,0.3,0,8.6,NA,NA,NA,75339,32481,53792,7.2,4.8,9.6,1,7.2,0,70.9,89,85.1 +915,20049,"Elk County, Kansas",Elk County, Kansas,26970,2464,90.8,0.1,49.6,4.7,3.6,76.8,28.2,37.1,2.28,2.85,5.9,9.6,77.6,37917,92,20.6,1076,1.6,0.1,1,0.1,0,NA,NA,NA,66434,29323,56087,8.6,4.1,8.9,13,7.9,0.3,70.7,73.2,84 +916,20051,"Ellis County, Kansas",Ellis County, Kansas,30719,28870,90.1,1.8,32.5,5.1,2.7,79.7,15.5,NA,2.24,2.86,20.3,3.5,62.4,47533,95.3,39.5,12186,4.7,3.2,1,0,0.5,NA,NA,NA,89458,37575,59889,3.8,1.5,7.2,1.7,2.1,0.3,83.6,91.6,92.3 +917,20053,"Ellsworth County, Kansas",Ellsworth County, Kansas,33630,6366,86.8,3.1,43.7,4.1,2.3,82.4,23.7,NA,2.29,2.81,7.2,4.3,81.5,38671,93.1,22.1,2329,1,1.2,0,0,0,NA,NA,NA,83519,33604,66792,8.9,3.2,3.4,0,0.2,0,70.6,85,85.7 +918,20055,"Finney County, Kansas",Finney County, Kansas,38769,38001,53.5,4.5,32.1,7.7,1.4,69.9,11.5,14.4,2.82,3.4,21.8,13.7,64,45524,71.1,19.7,13198,41.7,2.7,2.3,2.4,14.7,NA,NA,NA,89602,31556,72437,3.2,5,12.8,2.9,7.4,1.6,62.8,91.3,88.1 +919,20057,"Ford County, Kansas",Ford County, Kansas,38807,34133,56.3,3.1,31.9,8.9,1.5,69.2,11.3,12.9,2.84,3.36,14.8,10.4,64.5,46093,77,20.7,11768,41.5,0.6,0.7,3.2,10.2,NA,NA,NA,85037,28834,70495,3.7,4.4,13.8,8.1,7.1,1.4,64.5,89.2,87.2 +920,20059,"Franklin County, Kansas",Franklin County, Kansas,37114,25994,91.1,0.9,40.1,5.4,2.2,76.7,17.5,NA,2.46,2.91,12,8.7,73.5,46019,92.2,25.3,10289,2.5,0.8,0.5,0.1,0.7,NA,NA,NA,85098,34403,72142,9.8,2.1,7.5,7.6,5.5,0.2,68.9,87.2,83.8 +921,20061,"Geary County, Kansas",Geary County, Kansas,36198,35895,60.5,16.2,27.1,11.6,1.4,68.4,8.7,18.3,2.53,3.07,27.8,4.3,42.8,41376,93.4,24.4,13787,12.5,4.1,3.5,1.1,3.6,19.3,28.1,9.8,68988,27532,57344,20.1,6.1,7.9,4.7,3.9,2.8,82.3,93.2,93.2 +922,20063,"Gove County, Kansas",Gove County, Kansas,35330,2796,95.6,0.2,41.7,7.5,3.9,74.3,23.5,16.8,2.35,3.03,4.2,3.4,79.1,41813,94.4,21,1171,0,0.5,0.5,0.1,0,NA,NA,NA,82068,35590,63203,8.8,3.6,8,5.3,7.5,0,77.5,80.1,79.2 +923,20065,"Graham County, Kansas",Graham County, Kansas,34767,2406,90.9,3.7,46.1,4.5,3.4,79.1,25.9,NA,2,2.52,5.3,3.7,80.7,39300,95.4,27.4,1181,0.6,1.4,0,0.2,0.2,NA,NA,NA,67115,33129,52909,4,3.5,5.5,3,1.7,0,77.7,83.7,87.4 +924,20067,"Grant County, Kansas",Grant County, Kansas,41897,7284,66.2,0.2,32.9,7.8,0.9,69.4,13.2,27.8,3.04,3.81,10.8,12.3,74.8,54188,81.1,25.6,2377,38.7,1,0,0,6.5,NA,NA,NA,111074,39635,72484,3,0.9,16.7,0,1.5,0,68.8,98.1,94.3 +925,20069,"Gray County, Kansas",Gray County, Kansas,38801,5696,92.2,0,36.6,7.1,2.2,70.8,16,NA,2.7,3.1,5,11.4,80.2,46965,77.8,24.9,2078,11.5,6.9,0.9,0,1.7,NA,NA,NA,96744,35990,77885,4.7,0.5,11.5,9.6,9.9,0,79.2,90.6,86.5 +926,20071,"Greeley County, Kansas",Greeley County, Kansas,42470,1296,88,0.2,39.9,8.2,2.6,69.3,18.6,NA,2.42,2.99,4.8,7.3,78.4,48125,89.6,33.5,524,11.1,0.8,0,0.6,2.9,NA,NA,NA,94983,37662,78819,5.5,0,11.3,0,17.1,0,80.5,88,92.4 +927,20073,"Greenwood County, Kansas",Greenwood County, Kansas,31210,5956,92.9,0.6,48.4,4.6,3.4,78.5,26,NA,2.25,2.84,6,4.5,79.5,38013,92.5,19,2604,1.7,0.5,0.2,0.2,0.2,NA,NA,NA,80201,35792,58276,10.5,2.7,10,4,8.2,0.9,68.8,80.5,81.5 +928,20075,"Hamilton County, Kansas",Hamilton County, Kansas,40000,2485,67,0,36.4,6.4,2.3,68.7,13.3,NA,3.21,3.86,8.7,17.4,81.2,45579,85.8,20.8,770,29.4,0.8,0,0,15.7,NA,NA,NA,79656,29409,61929,6.2,1,23.2,10.9,19.9,0.3,70.4,89.9,89.7 +929,20077,"Harper County, Kansas",Harper County, Kansas,32708,5446,90.7,0.8,40.8,6.4,3.1,74.2,22.1,NA,2.39,3.06,5.9,5,73.6,37490,89.7,21.7,2205,2.9,0.5,0.4,0.7,0.9,NA,NA,NA,71347,28555,55417,8.2,2,9.1,7,6,0,69.1,83.7,81.6 +930,20079,"Harvey County, Kansas",Harvey County, Kansas,36605,33823,85.3,1.1,40.2,5.7,3.6,76.1,20.9,NA,2.41,2.93,13.1,2,69.5,44165,91.8,31.5,13478,5.9,1.6,0.8,0.2,0.6,NA,NA,NA,86664,34973,73269,6.7,4.3,8.9,2.4,2.9,0,79.2,89.3,84.3 +931,20081,"Haskell County, Kansas",Haskell County, Kansas,35932,3695,70.9,0.2,38,6.9,1.5,72.8,15.8,20.5,2.63,3.22,3.2,17.1,77,45545,74.8,22.2,1384,28,10.5,0,0,12.8,NA,NA,NA,87442,32616,69138,2.6,3.4,17.6,8.4,11.9,0,71.3,94.7,89.2 +932,20083,"Hodgeman County, Kansas",Hodgeman County, Kansas,39503,1676,95.2,0.1,45.9,3.9,3.5,75.4,20.9,NA,2.48,3.35,4.8,5.6,81.1,43452,95.3,28.4,666,2.1,0,0.9,0,0.3,NA,NA,NA,86249,36823,63125,7.6,0.3,6.8,15.1,5.8,0,70.7,76.7,79.7 +933,20085,"Jackson County, Kansas",Jackson County, Kansas,38284,13277,84.5,0.9,41,6.4,1.1,75.3,19.6,NA,2.57,3.11,7.6,5,78.2,42831,94,21,5100,2,0.2,1,0.7,1.3,NA,NA,NA,85712,34051,72703,10.6,1.8,8.1,7.4,9.1,0.1,75.9,86.4,86.9 +934,20087,"Jefferson County, Kansas",Jefferson County, Kansas,42759,18391,93.2,0.7,43.8,5,2.2,77.8,19.4,28.9,2.46,2.97,4.7,5.9,85,52227,95.2,24.6,7390,2,0.8,0.1,0,0.1,NA,NA,NA,95339,39516,77393,8.1,1.7,4.8,0.8,1,0,74.8,88.9,88.3 +935,20089,"Jewell County, Kansas",Jewell County, Kansas,29338,2909,93.1,0.8,50.3,5.6,4.2,78.6,30.6,NA,2.27,2.84,7.3,4.3,80.7,34329,93.8,18.8,1268,1.3,1.2,0.5,0.8,0,NA,NA,NA,72764,32993,52344,8.2,0.1,5.5,0.4,5.4,0,71,76.6,81 +936,20091,"Johnson County, Kansas",Johnson County, Kansas,54734,614764,80.2,4.9,38.3,6,1.9,76.2,15.5,20.7,2.49,3.05,24,0.6,68.6,65479,96.5,56.9,244777,5.5,3.4,3.3,1.6,2.3,5.3,5.1,5.7,142699,58292,107261,5.6,2.7,5.1,2.8,3.1,0.3,90.4,93.2,95.7 +937,20093,"Kearny County, Kansas",Kearny County, Kansas,39095,3910,75.3,1.2,37.5,7.1,2.9,70.2,16.5,NA,2.81,3.32,7.2,16,73.2,46250,85.3,14.6,1365,24,1.6,0,0.2,3.2,NA,NA,NA,89951,31556,74135,4.4,1,11.5,0,2.1,0,70,91.6,91.7 +938,20095,"Kingman County, Kansas",Kingman County, Kansas,33066,7284,93.1,0.3,43.4,5.6,3.8,78,19.7,21.2,2.31,2.95,7.5,3.7,69.5,40220,90.6,23.8,3088,1.6,0.5,0,0,0.7,NA,NA,NA,78018,32969,59819,6.1,4.1,8.3,0.7,2.1,0,70.8,85.7,82.2 +939,20097,"Kiowa County, Kansas",Kiowa County, Kansas,35250,2422,90.3,0.8,41.2,6.1,4.4,77.1,22.3,NA,2.32,2.97,8.8,2.7,74.7,44205,89.3,27.6,948,3.8,4.9,0.2,0,1.5,NA,NA,NA,101036,38482,73214,4.9,2.8,8.2,1.7,2.4,0.4,75,84.9,79.4 +940,20099,"Labette County, Kansas",Labette County, Kansas,31792,19949,85.2,3.4,41.4,6.6,2.5,75.6,20.1,NA,2.39,3.01,8.5,5.7,73.7,39853,89.8,21.1,8057,1.3,1.7,0,0.1,0.2,NA,NA,NA,70700,29602,55439,6.2,2.7,10.6,6.1,9.1,0,67.1,80.7,79.4 +941,20101,"Lane County, Kansas",Lane County, Kansas,39727,1497,90.1,0.3,48.9,5.2,3.6,76.5,23.6,NA,2.06,2.75,5.4,5.2,79.2,41085,95,24.6,725,12.4,2.6,2.2,0,1.2,NA,NA,NA,81118,39322,53042,10,0.7,16.7,3.6,16.9,0,74.9,89.4,82.3 +942,20103,"Leavenworth County, Kansas",Leavenworth County, Kansas,43051,82493,80.5,7.4,38.3,6.2,1.5,76.3,15.5,23.6,2.59,3.1,12.9,1.8,68.8,52972,93.4,36.6,29754,3.1,1.4,1.6,0.3,0.4,8.6,7.6,7.3,104102,38843,86906,15.2,3.9,6.9,5.8,4.4,0.4,83.5,91.1,90.8 +943,20105,"Lincoln County, Kansas",Lincoln County, Kansas,29514,2924,93.9,0.2,44.1,4.6,3.8,78.8,24.9,19.5,2.35,3.17,7.9,2.1,79.1,37064,96.2,21.5,1221,0.9,0.9,0.2,0,0,NA,NA,NA,72920,32595,53546,9.6,2.1,6.9,6.3,2.7,0,66.3,84.6,78.4 +944,20107,"Linn County, Kansas",Linn County, Kansas,34493,9723,93.6,0.8,45.5,4.9,1.9,78,22.3,NA,2.25,2.71,7.3,12.2,79.6,46077,94.1,22.5,4299,1.4,1.6,0.6,0,0,NA,NA,NA,82270,36213,59200,7.2,3.3,9.9,0,4.2,0.2,70.4,83.8,83.2 +945,20109,"Logan County, Kansas",Logan County, Kansas,37435,2720,90.8,0,41.1,6.9,4,76.5,21.1,NA,2.17,2.89,8.7,5.7,61.1,46080,92.2,26.7,1238,7.4,1.5,1.3,1.1,6.1,NA,NA,NA,91409,40940,71389,5.2,0.6,8.8,0,2.8,1.3,72.7,89.2,90.1 +946,20111,"Lyon County, Kansas",Lyon County, Kansas,31838,32145,75,1.6,33.1,5.9,1.8,77.7,15.8,15.2,2.33,2.96,27,5.9,58.2,39138,89.2,27.7,13322,13.6,1.1,1.2,0,4.9,NA,NA,NA,72659,29881,59078,6.4,1.9,11,4.2,6.8,1.8,72.4,89.9,88.5 +947,20113,"McPherson County, Kansas",McPherson County, Kansas,37625,30130,93,1.7,39.1,5.1,3.9,78.2,19.7,14.5,2.33,2.86,10.7,4.9,75.8,48437,92.3,33.1,12151,3.8,2,0.3,0,0.8,NA,NA,NA,88756,35857,77701,5.1,0.9,5.6,1.6,2.8,0.3,80.6,91.1,88.7 +948,20115,"Marion County, Kansas",Marion County, Kansas,31892,11795,93.3,1.2,43.7,4.9,2.9,78.8,23.4,NA,2.35,2.98,7.4,3.8,80.8,42536,92.3,28.8,4692,1.1,1,0.5,0,0.1,NA,NA,NA,85216,35423,63438,6.6,2.5,7.2,3.4,5.9,0,72.1,83.3,83.4 +949,20117,"Marshall County, Kansas",Marshall County, Kansas,35468,10001,94.9,0.7,42.6,6.5,2.6,75.6,22.4,NA,2.39,2.94,5.1,5.4,82.5,44722,91,18.9,4101,3,1.3,0.3,0,1.3,NA,NA,NA,83404,36220,70828,8,1.6,5,4.5,4.4,0,68.1,80.7,84.3 +950,20119,"Meade County, Kansas",Meade County, Kansas,40772,3949,80.6,1.3,37.5,7.1,2.5,73.4,16.7,NA,2.58,3.29,2.6,7.7,72.7,45455,84.6,22.8,1496,16,2.4,0,0,1.5,NA,NA,NA,111777,44359,74868,6,1.3,8.7,9.3,8.2,0,78.3,90.2,86.4 +951,20121,"Miami County, Kansas",Miami County, Kansas,44997,34625,92,1.1,41.8,5.4,1.6,76.1,17.5,30.4,2.5,2.99,9.3,4.4,77.6,56338,94.8,32.1,13532,2,0.5,0.3,0.1,0.1,NA,NA,NA,106267,41736,88000,7,2.8,6.5,0.1,3.2,0,77.9,90.2,86.2 +952,20123,"Mitchell County, Kansas",Mitchell County, Kansas,36849,5767,93.9,0.2,43.3,5.7,3,76.9,22.8,NA,2.19,2.71,12.3,1.1,70,41750,94.4,25.4,2567,4.6,0.2,0,0,0.4,NA,NA,NA,79841,36913,58233,7.7,1,8.5,3.8,9.1,0.2,72.9,85.5,83.7 +953,20125,"Montgomery County, Kansas",Montgomery County, Kansas,30674,31143,79.4,4.3,40.3,5.8,2.6,75.9,19.9,NA,2.35,3.02,9.2,6.8,72.6,40017,89.9,21.3,12871,4.7,0.7,0.1,0.4,1.3,NA,NA,NA,67132,28959,53242,7.5,3.4,11.6,9,7.4,0.1,68.6,84.3,84.2 +954,20127,"Morris County, Kansas",Morris County, Kansas,36081,5388,92.8,0.2,48.7,5.1,4.1,79.4,26.1,NA,2.12,2.73,6.2,11.8,79.2,41209,92.9,27.3,2499,3.2,0.8,0.3,0,0.6,NA,NA,NA,76802,36341,56716,12.4,2.4,6.9,3.7,2,0.1,76.4,85.7,85 +955,20129,"Morton County, Kansas",Morton County, Kansas,32304,2647,78.1,1.3,43.7,3.8,1.8,75.4,20.3,NA,2.71,3.5,6.5,2.6,78.4,39740,86.7,16.6,950,19.6,3.4,0.3,0,3.1,NA,NA,NA,76315,29023,65625,6.5,3.2,11.2,4.7,7,0,60,76.6,84.4 +956,20131,"Nemaha County, Kansas",Nemaha County, Kansas,40674,10213,95,0.6,40,7.2,4.4,72.3,19.6,NA,2.44,3.01,8.7,3.4,78.8,47178,93.7,30.1,4047,1.5,2.7,0,0,0,NA,NA,NA,98052,38996,77375,6.9,1,5,3.1,3.8,0,76,84.7,85.3 +957,20133,"Neosho County, Kansas",Neosho County, Kansas,32096,15715,91.8,1.4,40.3,6.1,2.5,75.9,20.4,NA,2.41,3.03,9.2,5.9,76.6,43200,92.3,21.8,6322,1.6,1.1,0.8,0,0.6,NA,NA,NA,71143,30510,55704,7.4,3.8,11.7,12.9,8.3,0,68.8,82.7,82.1 +958,20135,"Ness County, Kansas",Ness County, Kansas,41309,2659,80.6,0,46.1,3.6,3.3,79.8,24.6,16,2.23,2.61,4.9,3.2,79.3,47150,91.5,23,1163,9.6,1.5,1.5,1.5,0.8,NA,NA,NA,99145,45430,66107,6.6,0.6,9.2,0,10.8,0,74.4,85.9,89 +959,20137,"Norton County, Kansas",Norton County, Kansas,25896,5392,89.6,2.7,40.2,5.5,2.2,79.6,20.3,NA,2.3,3.13,0.7,3.4,81.4,28213,92.3,19.4,1917,2.3,0.2,0.1,0,0.3,NA,NA,NA,65945,26220,50305,7.1,0.7,9.5,4.1,6.9,0.1,72,83.8,92.6 +960,20139,"Osage County, Kansas",Osage County, Kansas,35996,15780,93.7,0.5,42.8,5.2,1.9,76.7,20.6,29,2.45,2.98,6.3,8.5,80.1,44932,92.4,21,6362,1.1,1.2,0.1,0,0,NA,NA,NA,81759,33617,70216,8.4,2,8.3,5.4,8,1.1,69.8,84,83.3 +961,20141,"Osborne County, Kansas",Osborne County, Kansas,36512,3473,92.9,0.4,46.8,6.2,6.2,78.4,26.3,14.7,2.09,2.74,6.3,2.4,76.4,45272,95.2,23,1609,0.9,0.4,0.4,0.4,0.6,NA,NA,NA,76525,36655,59408,5.3,1.5,5.4,6.9,2.8,0,66.4,77,83.5 +962,20143,"Ottawa County, Kansas",Ottawa County, Kansas,39416,5782,93.7,0.7,42.5,5.7,1.6,76.9,20.6,NA,2.39,2.78,9,3,78,46382,94.8,24.3,2377,2.5,1.5,0,0.7,0.5,NA,NA,NA,89408,36223,76755,6.3,3.2,6.2,0,4.6,0.4,75.6,86.5,86.7 +963,20145,"Pawnee County, Kansas",Pawnee County, Kansas,35021,6220,87.5,6.8,44.9,3.8,2.3,85.6,22.1,NA,2.19,3.17,14.9,5.5,64.1,38971,89.4,18.8,2415,3,0.1,0,0,0,NA,NA,NA,90081,39318,63625,8,1.3,11.1,4.8,3.5,0.2,67.3,84.7,89.2 +964,20147,"Phillips County, Kansas",Phillips County, Kansas,34579,4874,94.2,0.5,44.6,6.3,3.6,77,24.6,NA,2.2,2.99,8.1,2.8,74.9,41627,92.4,22.3,2182,1.5,1.1,0.6,0,0,NA,NA,NA,75789,34887,61235,6.5,3.5,6.1,1.6,2.1,0.6,71,81.1,85.6 +965,20149,"Pottawatomie County, Kansas",Pottawatomie County, Kansas,42855,25808,90.1,1.7,36.2,7.4,2.1,70.9,15.1,24.4,2.79,3.35,5,11.3,82.5,54162,96.3,36.5,9084,3.1,1.8,0.4,0.1,0.6,NA,NA,NA,103077,37341,87694,10.6,1.5,5.7,3.5,4,0.3,84.3,86.4,91.1 +966,20151,"Pratt County, Kansas",Pratt County, Kansas,30543,9120,88.8,2.1,38.2,6.1,2.8,75,21.6,NA,2.44,3.14,7.7,3.2,70.7,45058,92.3,26.6,3521,3.4,0.2,0.5,0,0.6,NA,NA,NA,83123,33584,64348,5.4,3.5,8.6,7.1,6.8,0,70.3,88.2,84.2 +967,20153,"Rawlins County, Kansas",Rawlins County, Kansas,35741,2533,93.6,0,47,6.6,4.1,77.5,27.6,NA,2.14,2.73,5.9,16,68.6,40240,95.4,17.3,1166,3.8,1.4,0.4,1.1,1.2,NA,NA,NA,72855,34231,65000,8.1,0.3,8.5,3.2,8.7,0,78.9,85.8,84.3 +968,20155,"Reno County, Kansas",Reno County, Kansas,33567,61693,87,2.3,40.7,5.3,3.5,77.7,20.3,17.6,2.31,2.96,14.1,2.9,69.2,42109,91.2,20.5,25344,3.2,2.5,0.5,0,0.6,12.4,15.1,8.7,76600,32203,60498,6.6,4,9.1,3.6,5.7,0.4,73.7,86.9,82.6 +969,20157,"Republic County, Kansas",Republic County, Kansas,33121,4662,95,0.6,46,5.6,3.5,76.7,26.4,20.7,2.3,3.1,6.7,2.9,76.2,36695,94.8,25.4,1994,1.2,1.9,0,0.1,0.2,NA,NA,NA,68213,30465,53611,9.3,0.5,6.6,2.1,7.8,0.1,59.3,76.9,74.2 +970,20159,"Rice County, Kansas",Rice County, Kansas,33635,9389,80.5,1.9,39,5.7,1.6,76.6,19.6,NA,2.37,3.07,5,2.6,77.1,47956,92.9,24.3,3694,7.3,0.6,0.1,0.1,0.3,NA,NA,NA,78776,32742,63947,9.1,2.6,6.7,1.5,2.1,0.3,74.8,84.7,85.4 +971,20161,"Riley County, Kansas",Riley County, Kansas,29737,71710,77.9,6.3,25.2,5,1.3,83.8,9.8,15.9,2.25,2.84,34.8,4.5,44.9,45737,96.1,48,27137,6.3,2.3,2.7,1.1,1.7,22,17.6,7,82458,34583,59560,7.9,4.2,6.5,2.6,2.2,0.3,87.4,92.7,90.9 +972,20163,"Rooks County, Kansas",Rooks County, Kansas,35466,4869,92.9,2.7,46,5.4,4,78.9,23.4,NA,2.17,2.74,7.9,2.5,74.3,42206,92.2,24,2142,1,0.5,0.4,0,0,NA,NA,NA,78805,34675,61596,7.8,2.4,5,0,0.9,0,76.3,82.7,83.7 +973,20165,"Rush County, Kansas",Rush County, Kansas,35607,2957,90.4,0.4,46,7.3,4.1,79.7,25.3,NA,2.08,2.83,2,4.3,79.6,38010,91.4,21.5,1382,2.5,3.6,0.2,0.7,2.4,NA,NA,NA,93181,45168,60288,7.9,5.9,5.9,0,0.6,0.1,78.5,88,90.4 +974,20167,"Russell County, Kansas",Russell County, Kansas,33118,6717,90.4,0,45.3,5.3,4.5,77.8,25.8,NA,2.13,2.87,5.9,1.9,76.4,43602,92.5,18.1,3099,1.5,0.7,0.1,0,0,NA,NA,NA,69802,32255,53902,8.7,2.1,8.9,0,7.1,0,65.3,84.5,86.6 +975,20169,"Saline County, Kansas",Saline County, Kansas,35666,53801,84.8,3.7,39.8,5.9,2.7,77.1,18.5,NA,2.34,3.04,15.5,2.3,66.8,43477,92.9,29.1,22299,6.1,1.2,1.8,0.4,0.9,12.3,13.1,10.3,80637,34403,63316,7.6,3.2,10,5.9,7.8,0.5,74.5,88.1,87.1 +976,20171,"Scott County, Kansas",Scott County, Kansas,38689,5071,84.7,0,39.3,5.3,2.5,73.7,20.3,NA,2.27,2.72,10.9,0.9,52.7,42472,89.1,33.4,2190,13.8,9.2,0,0,1.9,NA,NA,NA,83157,35206,67788,6.6,0.3,6.7,0,5.4,0,72.3,89.9,81.8 +977,20173,"Sedgwick County, Kansas",Sedgwick County, Kansas,37566,524810,71.2,7.9,35.9,6.4,1.8,74.8,15.5,19.7,2.52,3.18,20.4,3,62.3,46228,89.5,31.6,205024,9.3,1.4,3.1,1.1,2.9,14,18.8,9.2,91563,36699,67675,7,4.7,10.9,3.9,5.6,1,78.4,90.7,90.7 +978,20175,"Seward County, Kansas",Seward County, Kansas,39097,21640,40.5,2.7,31,8.6,1.9,69.1,10.4,NA,2.95,3.78,19.7,12.2,61.2,45881,71.9,12.7,7208,51.4,1.6,1.9,1.6,17.9,NA,NA,NA,78653,29053,62269,2.2,3.5,13.9,6.2,6.4,0.2,65.8,90.5,87 +979,20177,"Shawnee County, Kansas",Shawnee County, Kansas,40128,178315,76.1,7.6,39.6,5.8,2.3,76.7,19,17.8,2.32,2.95,18.3,2.7,67,49323,93.5,32.3,74528,5.6,0.9,1.2,0.2,2.2,12.4,14.4,9.1,87070,37072,66043,8,3.9,8.3,4.2,5.4,0.4,77.7,87.4,86 +980,20179,"Sheridan County, Kansas",Sheridan County, Kansas,41629,2442,93.1,0.1,43.4,6,3.8,74.5,23.2,NA,2.36,3.21,4.3,5.6,75.4,47833,96.5,24.3,1022,2.3,0.1,0,0,0.7,NA,NA,NA,105689,44743,70000,7.4,0.7,7.3,1.6,4.3,0.4,77.7,87.1,91.4 +981,20181,"Sherman County, Kansas",Sherman County, Kansas,34914,5919,81.7,3.9,38.9,7.2,2.2,76,20.5,11.4,2.34,2.97,7.6,4.7,66.5,46470,91.7,25.1,2358,10.9,1.4,0.3,0,0,NA,NA,NA,107922,46410,64444,6.9,0.3,9.9,20.1,12.5,0,74.3,87.8,91.8 +982,20183,"Smith County, Kansas",Smith County, Kansas,32431,3579,94.2,0.8,50,5,4.9,79.8,28.8,15.5,2.23,2.93,6.1,1.6,83,41288,94.9,24.6,1578,1.5,0.6,0,0,0.1,NA,NA,NA,78567,35983,57024,9.9,1.8,8.1,5,4.5,0.1,71.7,77.4,84.3 +983,20185,"Stafford County, Kansas",Stafford County, Kansas,35325,4004,86.7,0.2,42.1,5.7,3.8,75.5,21.8,21.8,2.44,2.95,3.4,3.3,82.2,44858,92.6,26.3,1598,6.9,0.4,0,0.6,1.9,NA,NA,NA,87716,34864,63786,8,2.3,7.6,4.6,1.5,0.3,69.5,85.4,85.5 +984,20187,"Stanton County, Kansas",Stanton County, Kansas,39756,2018,73.5,0,36.5,6.6,3.2,73.5,13.5,NA,2.42,3.12,1.1,25.9,80.9,40648,76.4,23.7,822,38,0,0.5,0,10.2,NA,NA,NA,89018,35970,70361,6.2,2.2,23.6,0,15.1,0,63.9,95.3,85.3 +985,20189,"Stevens County, Kansas",Stevens County, Kansas,31688,5212,68.1,0.1,38,6.1,4,71.1,17.1,17.6,2.85,3.43,1.3,21.6,73,40328,73.8,16.2,1789,22.3,1.8,0.5,0.3,4.3,NA,NA,NA,90085,31270,61909,3.8,3.1,17.7,2.1,6.7,0,66.5,94.1,90.1 +986,20191,"Sumner County, Kansas",Sumner County, Kansas,37101,22386,89.9,1.1,41.2,5.6,2.3,75.8,19.1,24.3,2.45,3.14,9.8,7.6,74.4,46542,94,26.7,8974,2.7,0.7,0.4,0.1,0,NA,NA,NA,78544,32318,60348,8.5,5.8,8.9,4.5,7.2,0,73.3,86,84.6 +987,20193,"Thomas County, Kansas",Thomas County, Kansas,35377,7913,92.5,1.3,35.3,6.9,3.1,75.8,17.9,11.4,2.41,3.11,10.6,5.2,76.5,46089,93.5,30.2,3101,4.5,1.5,0.5,0,0.2,NA,NA,NA,96561,39637,73575,5.5,0,12.4,20.1,16.4,0,78.5,85.8,89.2 +988,20195,"Trego County, Kansas",Trego County, Kansas,47391,2778,96.1,0.1,47.7,6.3,6.5,80.5,26.5,NA,2.02,2.43,4.8,2.6,77.9,48933,96.4,28.7,1346,0.3,0,0.3,0,0,NA,NA,NA,91101,43336,73375,7.3,1.2,5.2,0,3.2,0.7,73.3,85.7,89 +989,20197,"Wabaunsee County, Kansas",Wabaunsee County, Kansas,37067,6961,91.8,0.3,43.2,5.3,2.9,77.1,21,NA,2.61,3.23,3.4,4.4,79.7,42822,96.3,26.6,2616,1.5,0.2,0.2,0.2,0.2,NA,NA,NA,85958,33885,70536,9.2,4.4,10,5.4,7.4,0,73.2,82,83.8 +990,20199,"Wallace County, Kansas",Wallace County, Kansas,42000,1459,90.8,0.7,47.2,7.3,7.4,76.9,25.7,NA,2.17,2.88,8.3,4.5,72.4,42406,92.2,22.7,660,4.4,0.9,1.4,0,2.3,NA,NA,NA,78237,35831,60263,9.9,0.5,5.8,0,0,0,69.7,86.2,86.5 +991,20201,"Washington County, Kansas",Washington County, Kansas,35604,5519,92.9,0.2,43.9,6.7,3.4,76,23.5,NA,2.27,3.11,6.2,3.1,78.1,44674,94.5,23.3,2371,2.9,2.4,0.3,0,1.3,NA,NA,NA,79440,34654,62452,9.2,1.5,5.2,0,3,0,64.7,76.9,75.7 +992,20203,"Wichita County, Kansas",Wichita County, Kansas,36701,2115,75.1,0.2,38.7,9.3,1.4,74,22.8,NA,2.39,3.06,8.3,13.4,81.3,48333,87.8,18.8,878,15.4,0.5,0,0,6.8,NA,NA,NA,91654,35838,71282,3,0.5,8.2,6.2,7.6,0,61.7,88.8,93.6 +993,20205,"Wilson County, Kansas",Wilson County, Kansas,35507,8559,93.7,0.2,42.3,5.9,3,76.2,22.5,NA,2.39,2.82,5.2,9.1,74.3,43656,91.6,21.3,3515,2.3,0.2,0.2,0,0,NA,NA,NA,76102,32771,57056,7.9,3.4,6.9,4.5,2.9,0,65.9,87.5,79.3 +994,20207,"Woodson County, Kansas",Woodson County, Kansas,28750,3118,92.7,0.1,49.9,4.4,3.3,81,26.6,20.6,2.52,3.29,5.5,9.2,83.5,31740,91.1,22.6,1226,0.9,0,0,0,0,NA,NA,NA,68097,29024,48152,10.3,1.5,5.4,4.1,1.6,0,64,79,82.5 +995,20209,"Wyandotte County, Kansas",Wyandotte County, Kansas,34787,167277,46.5,19.3,34.2,7.4,1.2,72.4,13,NA,2.71,3.43,18.6,2.6,61.4,42769,81.9,20.5,61241,21.5,1.4,3,1.2,7.5,17.5,25.7,13.1,75022,28523,60582,5.7,5.1,17.8,6.9,9.3,2.3,70.7,87.4,86.7 +996,21001,"Adair County, Kentucky",Adair County, Kentucky,25174,19016,91.3,1.8,40.1,4.7,1.9,80.1,19.6,28,2.55,3.26,7.6,15.2,76.2,34303,85.8,18.8,6986,1.9,2.4,0.2,0.3,0.4,NA,NA,NA,67347,27705,50316,8,7.4,6.9,2.7,5.5,1.2,69,83.3,84.7 +997,21003,"Allen County, Kentucky",Allen County, Kentucky,29824,21029,95.4,0.5,40.7,5.9,2.1,77,17.6,NA,2.65,3.23,7.1,17.2,76.7,40170,85,17.4,7852,2.2,3,0.1,0.7,0.9,NA,NA,NA,77190,30206,59029,7.4,7.6,9.8,16.2,11,0,58.2,82.3,78.8 +998,21005,"Anderson County, Kentucky",Anderson County, Kentucky,38231,24098,93.2,2.8,42.1,5.8,1.3,76.7,16.3,NA,2.53,2.99,11,5.9,77.9,47140,91.7,25.7,9496,1.2,0.6,0,0,0,NA,NA,NA,88199,35161,71747,7,2.2,3.6,2.1,1.8,0,76.5,86.7,87.6 +999,21007,"Ballard County, Kentucky",Ballard County, Kentucky,34032,7678,92,3.6,44.2,4.4,2.3,80,22,NA,2.42,2.94,7.8,18.3,79.7,43060,93.7,18.7,3121,0.4,0.6,1.2,0.4,0,NA,NA,NA,83257,34469,64740,6.8,4,3.9,0,3,0,71.9,90,86 +1000,21009,"Barren County, Kentucky",Barren County, Kentucky,28667,44670,88.8,3.7,40.1,5.9,1.8,76.2,17.9,NA,2.45,2.92,15.7,11.9,65.2,37272,86.5,17.8,17972,2.9,1.2,0.3,0.3,1.1,21,29.5,13.6,69614,28422,49171,5.9,4.6,8.1,10.8,10.7,0.2,66.6,82.8,85 +1001,21011,"Bath County, Kentucky",Bath County, Kentucky,29510,12812,95.5,1.8,39,6.7,1.6,74.5,16.7,28.7,2.68,3.26,6.1,31.3,72.8,42259,81.4,14.4,4743,0.9,1.3,0,0.1,0.7,NA,NA,NA,80031,28809,54128,4.6,3.9,7.7,18.1,12.7,0,60.4,81.6,83.6 +1002,21013,"Bell County, Kentucky",Bell County, Kentucky,21421,23878,93.4,2.2,41.2,6,2,78.2,18.8,23.1,2.44,3.12,14.5,22.1,61.1,32023,79.4,13.9,9526,0.2,0.4,0.3,0,0,27.1,28.4,16.5,48307,20463,32403,3.8,11.2,6.7,1.1,3.1,0,49.3,80.2,76.9 +1003,21015,"Boone County, Kentucky",Boone County, Kentucky,46029,137676,85.3,3.8,37.7,6.4,1,74.2,14.5,NA,2.71,3.23,20.4,3.7,76.7,57524,93.6,35.4,50341,4,3.1,1.8,0.8,1.6,6.6,7.4,6.7,116044,43436,94752,7.8,2.7,5.3,7.9,6.5,0.4,84,90.2,92.9 +1004,21017,"Bourbon County, Kentucky",Bourbon County, Kentucky,32497,20174,86.1,4.8,42,6.2,2.1,77.2,19.5,NA,2.46,3.04,15.5,6.5,64.8,41588,86.6,25.5,8128,5.1,2,0.4,0.1,1.4,NA,NA,NA,79370,32619,56322,4.6,4.3,2.8,1.8,1.1,0.3,66,86.5,84.6 +1005,21019,"Boyd County, Kentucky",Boyd County, Kentucky,31482,48043,93,2.1,42.4,5.3,2.4,78.7,20.2,22.2,2.43,2.99,13.1,9.2,68.4,40907,89,19.4,19016,1.1,0.9,0.5,0.1,0.3,17.7,24.4,14.1,75673,31192,60659,8.3,6.9,4.7,0.4,1,0,73,85.7,86.4 +1006,21021,"Boyle County, Kentucky",Boyle County, Kentucky,32641,30708,84.1,7.6,39.5,5.1,2.1,79.3,18.7,21.4,2.35,2.81,17.3,5.1,69.5,45336,91.4,27.4,11806,3.2,0.7,0.6,0.2,1,NA,NA,NA,81976,32238,61635,6.1,6.2,6.1,1.7,2.1,0.4,72.3,88.8,85.9 +1007,21023,"Bracken County, Kentucky",Bracken County, Kentucky,32822,8427,95.4,1.2,42,5.8,1,76.4,17.6,NA,2.57,2.91,7.1,28.2,77.6,46531,88.2,17,3263,1.5,0.4,0,0.5,0,NA,NA,NA,79534,30198,59521,7.4,6.1,5,5.2,2.9,1,70.2,86.7,86.2 +1008,21025,"Breathitt County, Kentucky",Breathitt County, Kentucky,23166,13438,96.5,0.5,43,5.7,1.4,79.1,18.3,NA,2.38,2.93,6.5,40.5,74.3,35898,80.6,16.5,5532,0.4,0.3,1.2,0,1,NA,NA,NA,54263,23544,41101,4.2,8.9,2.7,0.1,0.7,0.2,58.2,72.9,78.5 +1009,21027,"Breckinridge County, Kentucky",Breckinridge County, Kentucky,27350,20722,94.4,1.6,42.2,5.8,1.7,77.5,19.9,NA,2.67,3.34,4.6,22.7,82,40959,86.4,14.9,7647,1.5,1.8,0.1,0.1,0.1,NA,NA,NA,74513,29163,53673,9.3,4.4,6.6,17,11.1,0.2,64.3,80.3,79.6 +1010,21029,"Bullitt County, Kentucky",Bullitt County, Kentucky,38274,83209,92.3,1.2,41.3,5.1,1.9,78.6,16.9,28.5,2.64,3.04,9.1,6.1,83.9,49749,89.6,18.9,31425,1.8,0.4,0.6,0.2,0.8,9.5,13.5,9.1,94063,36758,77640,8.4,3.7,2.9,0.7,0.6,0,75.5,88.9,90.2 +1011,21031,"Butler County, Kentucky",Butler County, Kentucky,28287,12373,94,0.2,41.1,6,1.3,76.8,19,NA,2.67,3.21,9.3,26.1,73.1,41897,82,9.5,4561,2.5,1.9,0.3,0,1.5,NA,NA,NA,61584,25198,52003,7,3.7,9.4,6.9,6.7,0,56.1,79.7,78.6 +1012,21033,"Caldwell County, Kentucky",Caldwell County, Kentucky,35258,12631,91,5,42.3,5.7,3,77,21.1,NA,2.4,2.89,9.7,11.2,71.8,46177,89.8,18.1,5187,1.8,1.4,0,0,0,NA,NA,NA,74415,31544,57618,7.1,2.6,9.6,18.1,7.1,0.1,62.9,89,84.7 +1013,21035,"Calloway County, Kentucky",Calloway County, Kentucky,28191,37882,89.5,3.8,35.4,4.4,1.5,81.8,16.8,16.8,2.31,2.95,20.7,11.9,63.7,39778,91.4,32.3,15086,2.5,0.8,1,0.1,0.4,17.2,18.3,14.4,72773,29862,51854,5.8,4.7,7.1,1.3,4.6,0,79.4,87.1,82.5 +1014,21037,"Campbell County, Kentucky",Campbell County, Kentucky,41051,93193,91.5,2.8,39,5.6,1.9,79.2,17.1,22.9,2.31,2.96,29.4,1.9,71,53519,93.1,39.5,39232,2,2.1,0.7,0.3,0.4,10.8,10.6,14.3,106500,45113,77271,5.5,3.4,4.6,0.6,1.6,0.4,81.4,88.2,90.3 +1015,21039,"Carlisle County, Kentucky",Carlisle County, Kentucky,31409,4763,92.4,1.4,43.6,6,3,76.4,19.9,NA,2.51,2.96,7.3,15.3,81.4,39813,90.9,14.6,1876,2.1,1.8,0.1,0.1,0,NA,NA,NA,87185,33860,62019,9.3,3.9,6.3,1.2,3.4,0,77.9,85.8,86.4 +1016,21041,"Carroll County, Kentucky",Carroll County, Kentucky,28290,10878,87,2.3,38.5,6.4,1.6,73.5,16.2,24.4,2.58,3.16,11.4,20.1,64.2,38512,83.9,8.9,4087,4.9,1,0,0,1.4,NA,NA,NA,76214,29904,57753,6.5,7.3,9.8,13.1,9.9,0.8,66.2,85.4,80.2 +1017,21043,"Carter County, Kentucky",Carter County, Kentucky,24869,26515,95.6,0.5,41.8,5.8,1.7,77.6,19.9,28.6,2.5,3.08,4.7,23.5,78.4,36660,82.8,15.4,10371,0,0.9,0.4,0.1,0,NA,NA,NA,71428,27184,50389,7.1,4,8.4,16.4,10.2,0.5,62.6,75,78.5 +1018,21045,"Casey County, Kentucky",Casey County, Kentucky,23794,15951,95.7,0.5,41.5,6.6,1.8,76.5,20.2,NA,2.49,3.12,3.8,23.4,78.6,31835,77.9,11.8,6217,1.7,1.8,0.5,0.3,1.1,NA,NA,NA,59897,23916,41689,6.6,9.7,11.5,10.9,11.6,0.2,59.3,76.1,78.6 +1019,21047,"Christian County, Kentucky",Christian County, Kentucky,31671,72599,67.7,19.3,28.6,9.5,1.5,72,12.6,19.2,2.62,3.28,20.4,7.1,52.2,41953,86.9,20,25676,5.5,2.6,1,0.2,2,17.2,18.8,17.7,66827,26445,54190,11.4,7.1,9.6,13.9,9.6,0.2,72.9,88.2,82.1 +1020,21049,"Clark County, Kentucky",Clark County, Kentucky,35977,37004,89.7,4.3,40.8,5.5,1.9,77.4,18.2,NA,2.45,3.01,15.5,6.6,71.5,45396,89.9,22.2,14934,1.3,1.4,0.2,0,0.3,NA,NA,NA,94803,39131,67824,7,4.8,3.8,1.1,2.5,0.1,74.7,88.5,88.8 +1021,21051,"Clay County, Kentucky",Clay County, Kentucky,23357,20105,92.2,4.7,40.6,5.7,1.5,79.2,15.7,NA,2.59,2.97,6.4,25.8,77.6,34798,74.1,16.6,7178,0,0,0,0,0,31.8,47.4,14.8,56278,21888,39607,4.2,9.2,4.6,3.7,1.5,0.3,58,77.4,82.9 +1022,21053,"Clinton County, Kentucky",Clinton County, Kentucky,25292,9240,95,0,42.5,5.7,3.1,78.6,20.2,NA,2.42,3.08,5.5,22.9,72.5,30997,79.2,16.5,3762,1.3,0.1,0.3,0,0.3,NA,NA,NA,57203,23829,42168,8.9,5.2,6.2,2,1.4,0,55.7,72.9,79.1 +1023,21055,"Crittenden County, Kentucky",Crittenden County, Kentucky,28289,8972,96.2,0.5,42.8,5.2,1.8,77.6,20.8,NA,2.46,3.09,3.5,15.5,77.6,41109,83.8,12.6,3553,1.5,3.8,0.2,0.1,1.4,NA,NA,NA,69537,28751,47003,6.4,3,10.3,16.6,18.3,0,56.4,77.4,77.3 +1024,21057,"Cumberland County, Kentucky",Cumberland County, Kentucky,24101,5948,93.1,1.6,45.1,6.2,2.2,78,22.2,NA,2.41,3.18,7.3,18.4,72.3,34049,82,17.5,2430,6.2,3.5,0,0,0.9,NA,NA,NA,52251,21857,39662,7.8,1.8,10.7,2.8,3.2,2.6,60.7,78.1,78.6 +1025,21059,"Daviess County, Kentucky",Daviess County, Kentucky,35807,103195,86.7,4.4,38.7,6.4,2.1,75.4,17.4,NA,2.44,3,18.8,5.7,66.8,45274,90.9,25.2,41157,3.2,1.3,1.2,0.3,1.8,15.2,20.5,12.4,86574,35121,65323,6.7,4,5.5,4.2,4.9,0.7,72.4,88,89.3 +1026,21061,"Edmonson County, Kentucky",Edmonson County, Kentucky,27442,12243,94.9,0.7,45.3,4.3,1.9,81.1,21.5,NA,2.43,2.84,2.4,33.4,82.9,39520,84,10.3,4955,1.3,1.4,1.2,0,0.8,NA,NA,NA,66980,27643,54512,7.6,7.6,7.1,11.5,6.6,0,63.9,82.2,85.9 +1027,21063,"Elliott County, Kentucky",Elliott County, Kentucky,22889,7336,93.7,3,44.4,3.8,2,83.4,21.6,NA,2.68,3.24,5.1,28.3,83.3,35541,74.9,6.2,2289,0,1.1,0,0.3,0,NA,NA,NA,54636,18287,40074,6.9,6.9,7.6,0,3.8,1,56.2,80.2,76.7 +1028,21065,"Estill County, Kentucky",Estill County, Kentucky,25166,14079,96.4,0.1,44.3,5,2,78.7,19.4,NA,2.37,2.86,11.8,20.9,72.4,35610,78.1,9.9,5900,1.1,0.2,0.6,0,1,NA,NA,NA,57737,24142,43905,5.6,5.7,6.2,1.1,1.3,0,59.6,75.1,75.9 +1029,21067,"Fayette County, Kentucky",Fayette County, Kentucky,37716,321122,69.9,14.4,35.2,5.7,1.4,78.9,14.4,NA,2.24,2.94,32.4,1.1,53.6,47974,92.4,47.3,137803,7.2,3.3,2.8,1.7,3.7,15.7,19.3,7.7,98429,42272,67631,5.5,4.5,6.8,1.8,2.9,0.7,81.6,92.8,91 +1030,21069,"Fleming County, Kentucky",Fleming County, Kentucky,28123,15221,95.1,1.1,41,6.8,1.9,75.9,18.5,NA,2.62,3.12,4.7,34.8,75.6,41317,83.4,16.4,5779,2.6,1.6,1.5,0.1,0.6,NA,NA,NA,66222,26611,49663,5.5,5.4,7.7,12,11.6,0.6,63.9,80.8,79.1 +1031,21071,"Floyd County, Kentucky",Floyd County, Kentucky,25744,35342,96.6,0.6,43.1,5.7,1.4,77.9,19.4,25.9,2.38,2.81,9.5,28.5,72.1,39130,81.1,15.1,14460,0.2,0.4,0.6,0,0.4,26.6,38.7,14.9,64123,26142,41582,4.7,6.3,4.4,1.4,1.5,0.3,63.7,78.4,82.8 +1032,21073,"Franklin County, Kentucky",Franklin County, Kentucky,38726,51563,81.7,9.2,40.6,5.5,1.1,79,18.4,19.8,2.21,2.81,25,5.6,64.4,45506,92.5,31.8,22548,2.5,2.1,1.7,0.6,1.9,13.4,20.9,7.2,90766,40031,66470,6.6,4.5,6.1,3.1,4.3,0.4,75.2,89.6,85.5 +1033,21075,"Fulton County, Kentucky",Fulton County, Kentucky,25357,6440,69.6,24.3,41.2,4.8,2.3,78.2,20.9,20,2.38,3.23,16.7,3.4,64.1,34375,81.2,17.3,2494,0.4,2.2,0,0,0,NA,NA,NA,47503,20202,36834,7.2,7.5,7.6,0,0,0,60.9,80,85.8 +1034,21077,"Gallatin County, Kentucky",Gallatin County, Kentucky,33294,8749,89.1,2.7,39.7,5.5,1.8,77.6,15.5,28.4,2.65,3.03,11,23.8,73.4,41480,84.4,13.2,3250,3.3,0.6,0.2,0,1.4,NA,NA,NA,77983,30216,62247,6.5,3.1,9.9,3.8,8,0,66,87.4,84.1 +1035,21079,"Garrard County, Kentucky",Garrard County, Kentucky,30382,17346,92.5,2.2,42.9,5.3,2,78.1,18.4,NA,2.6,3,6.1,10.5,79.8,45155,85.8,19.1,6625,1.7,1.3,0.2,0,0.4,NA,NA,NA,78139,30619,62572,9.2,6,7.2,10.1,8.4,0.5,69.8,85.6,85.8 +1036,21081,"Grant County, Kentucky",Grant County, Kentucky,35639,25238,92.8,0.8,36.4,6.9,1.7,73.3,14,27.6,2.7,3.3,13.6,21,73.8,46679,88.8,15.1,9235,0.9,0.4,0.6,0.2,0.3,NA,NA,NA,80154,30603,67940,6.8,4.3,4.9,1.6,0.9,0,69,88.1,87.8 +1037,21083,"Graves County, Kentucky",Graves County, Kentucky,28483,36612,86.5,4.1,40,6.6,1.8,75.7,18.3,NA,2.55,3.15,6.5,10.7,76.4,38998,88.7,17.4,14152,4.5,1,0.4,0,0.3,20.5,25.7,14.9,72233,29608,50576,6.9,3.7,8.1,8.2,6.2,0.4,70,85.9,81.3 +1038,21085,"Grayson County, Kentucky",Grayson County, Kentucky,29401,26586,95.8,1,40.3,6.4,1.2,76.3,17.9,NA,2.67,3.41,9.1,15.3,76.2,39406,85,14.6,9772,1.1,1.2,0,0.2,0.1,NA,NA,NA,69701,27601,49893,5.7,4.5,7.9,5,6.5,0,62,80.5,80.2 +1039,21087,"Green County, Kentucky",Green County, Kentucky,24207,11278,95.9,1.2,45.2,5.4,2,79.1,22.3,29.6,2.53,3.04,5,15.9,76.6,35143,85,16.6,4394,1,2.1,0,0.5,0.4,NA,NA,NA,59759,24639,41087,8.4,8.1,8.7,3.1,9.9,1.4,61,75.8,80.8 +1040,21089,"Greenup County, Kentucky",Greenup County, Kentucky,31798,35639,95.4,0.6,43.9,4.9,2.4,78.5,21.6,NA,2.41,2.98,5.9,13.2,80.5,42290,90.3,18.3,14600,1.7,0.2,0.3,0,0.3,15.1,18.6,11.1,80703,32864,59613,7.7,5.7,5.5,2.2,3.6,0.1,69.5,83.7,82 +1041,21091,"Hancock County, Kentucky",Hancock County, Kentucky,33691,9032,94.5,1.1,41.5,5.8,1.9,75.7,18,NA,2.53,2.94,8.1,21.3,78.4,46733,86.6,16.8,3537,0.1,0.5,0.4,0,0,NA,NA,NA,78998,31417,66836,8.7,2.8,3.9,1.1,1.2,0,63.2,84.1,83.5 +1042,21093,"Hardin County, Kentucky",Hardin County, Kentucky,37578,111452,76.7,11.6,37.4,6.4,1.6,75.2,14.8,NA,2.5,3.06,19.7,8,62.3,46220,92.4,24.4,43485,4.6,3.2,1.9,0.1,1.5,11.7,12.4,10.4,92718,36836,67608,15.5,6.1,5.5,1.6,2.9,0.1,76.6,89,89.2 +1043,21095,"Harlan County, Kentucky",Harlan County, Kentucky,22744,26185,94.3,1.5,41.2,6,1.6,76.4,19.2,23.5,2.44,2.94,11.4,20.2,70.8,34813,79.2,12.7,10500,0,0.5,0.9,0,0.1,27.2,33.4,14.9,53481,21681,37198,6.1,11.3,4.7,1.5,2.7,0,61.9,77.5,82 +1044,21097,"Harrison County, Kentucky",Harrison County, Kentucky,30319,18971,94,1.9,42.4,6.7,1.9,76.8,18.7,28.9,2.57,2.98,10.3,12,70.4,44076,89.1,20.1,7239,1.3,2.5,0.1,0,0.3,NA,NA,NA,82276,31696,63205,6.2,2.1,3.6,2,2.8,0,64.4,83.4,78 +1045,21099,"Hart County, Kentucky",Hart County, Kentucky,25617,19470,91.3,4.6,40.6,6.5,1.1,75.6,17.1,NA,2.66,3.2,9.7,18.2,73.7,36671,78.9,10.7,7222,0.6,5.5,0.7,0,0.5,NA,NA,NA,65536,25506,49653,7.2,4.3,10.1,5.7,8.6,1.3,62,77.5,82.7 +1046,21101,"Henderson County, Kentucky",Henderson County, Kentucky,34430,44493,85.8,6.8,41,5.6,1.5,77.2,18.8,NA,2.36,2.93,19.9,9.2,64.3,43083,89.1,19,18458,2.3,0.8,0.1,0,0.4,15.4,22.7,10.1,76611,32803,58239,6,2.8,4.7,1.4,2.2,0,65.9,90.3,88.7 +1047,21103,"Henry County, Kentucky",Henry County, Kentucky,34221,15774,91,2.7,41.6,5.7,1.3,76.5,18,29.1,2.55,3.15,7.8,10,75.8,42307,86.1,14.8,6147,3.2,1,0.2,0,0.1,NA,NA,NA,78321,30492,60736,7.9,3.1,7.8,3.4,6.8,0.4,63.3,81.7,81.8 +1048,21105,"Hickman County, Kentucky",Hickman County, Kentucky,28807,4470,86.4,9.2,46.4,4.2,2.9,80.1,25.8,NA,2.65,3.17,3.2,14.5,74.8,35476,87.2,14.4,1640,3.8,0.3,0,0,0.1,NA,NA,NA,77565,30587,63750,5.4,3.1,7.9,3.7,2,0,72.8,82.6,89.6 +1049,21107,"Hopkins County, Kentucky",Hopkins County, Kentucky,32076,45143,88,6.1,41.3,5.9,1.7,76.9,18.9,NA,2.43,2.95,9.2,12.7,71.8,42796,87.7,16.6,18169,1.2,0.8,0.2,0.1,0.5,19.2,29.3,11.4,71377,28979,57610,5.4,6,4.9,1.8,2.2,0,69.8,89.5,87.9 +1050,21109,"Jackson County, Kentucky",Jackson County, Kentucky,20976,13003,96.9,0.2,40.6,6,1,76.6,17.9,NA,2.56,3.12,5,26.5,79.7,37249,73.3,10.3,5015,0.1,0.5,0,0,0.4,NA,NA,NA,54146,22069,41410,5.4,6,5.2,0,2,1.2,62.2,78,82.6 +1051,21111,"Jefferson County, Kentucky",Jefferson County, Kentucky,39103,777392,65.3,22,38.4,6.1,1.8,77.7,16.9,22.3,2.32,3.01,29.3,1.1,61.8,47895,91.5,36.6,329392,5.7,2.7,1.7,1.6,3.6,14.5,20.7,10,95889,41267,67849,6.4,4.5,5.6,3.3,3.8,0.3,76.4,89.5,90.1 +1052,21113,"Jessamine County, Kentucky",Jessamine County, Kentucky,35935,53792,88.2,4,38.7,6.1,1.6,76.2,15.9,24.2,2.66,3.13,13.5,3.7,69.3,45502,90.5,32.4,19645,4.2,2.3,0.8,0.4,1.3,10.5,13.7,8.1,112610,40444,74886,6.6,2.9,6.5,7,5.8,1,81.6,90.2,89.8 +1053,21115,"Johnson County, Kentucky",Johnson County, Kentucky,25180,22464,95.4,0.6,42,5.3,1,77.7,18.7,NA,2.48,2.95,13,28.2,66.4,34773,82.3,16.6,8843,0.8,0.3,0.4,0.3,0.6,NA,NA,NA,60016,24579,43014,5,4.7,6.3,0.5,3.1,0,66.9,82.8,86.5 +1054,21117,"Kenton County, Kentucky",Kenton County, Kentucky,42128,169817,87.1,4.2,37.8,6.4,1.5,76.5,15.4,NA,2.48,3.11,24.1,2,70,52667,92.5,37.6,67593,2.9,1.5,1,1.2,1.4,11.9,18.2,11.5,104860,42623,79421,6,3.5,4.5,2.1,2.1,0.4,79.8,89.8,91.4 +1055,21119,"Knott County, Kentucky",Knott County, Kentucky,23163,14046,96.7,1,44.4,4.7,1.4,79.8,20.1,NA,2.49,2.98,3.7,31.9,70.8,37975,72.8,17.8,5448,1.3,0.2,0.2,0,0,NA,NA,NA,54045,21353,37736,4,12.7,2,0,0.9,0,62.4,76.8,79.6 +1056,21121,"Knox County, Kentucky",Knox County, Kentucky,19551,30034,95.7,0.8,39.8,6.2,1.8,76.4,17.3,NA,2.59,3.28,11.2,28.2,65.6,35364,75.7,13.5,11326,1.3,0.4,0.4,0,0,36.7,50.2,23.8,53217,21277,33153,4.4,7.6,6.5,2.2,2.8,0.8,58.1,82.1,83.6 +1057,21123,"Larue County, Kentucky",Larue County, Kentucky,31455,15028,91.3,2.2,41.3,5.3,1.5,77.3,17.7,NA,2.48,2.98,4.6,12.2,75.7,47773,86,15.6,5966,2.8,0.2,0,0,0,NA,NA,NA,77565,30533,67770,6.7,1.2,4.3,0,3.6,0,69.9,85.1,85.9 +1058,21125,"Laurel County, Kentucky",Laurel County, Kentucky,29855,62731,95.8,0.5,39.9,5.9,1.7,77.1,16.8,NA,2.58,3.02,10.4,26.7,71.5,41488,83.1,16.5,23835,0.9,0.4,0.5,0.1,0.2,21.3,27.4,14.4,71463,27944,56999,5.4,3.2,8.2,8.6,6.4,0,69.4,85.6,87.9 +1059,21127,"Lawrence County, Kentucky",Lawrence County, Kentucky,25021,16171,97.3,0,42,6.3,1.7,76.3,19.8,NA,2.61,3.28,5.3,33.4,76.3,33766,79.8,14.2,6150,0.3,0.8,0.5,0,0,NA,NA,NA,62255,24027,45584,4.3,5.8,6.1,2.3,3,0.3,63.3,78.4,80 +1060,21129,"Lee County, Kentucky",Lee County, Kentucky,16866,7375,94.5,2.1,43.4,4.9,2.1,81.3,19.1,NA,2.49,3.04,7.2,19.6,75,30699,74.2,7.5,2606,0.2,1.3,0,0,0,NA,NA,NA,50023,19697,34182,6.6,6,4.9,3.1,2.2,0,55,74.3,74.6 +1061,21131,"Leslie County, Kentucky",Leslie County, Kentucky,25502,10261,96.9,0.5,42.2,5.1,1.7,78.6,18.9,NA,2.53,3.33,1.7,34.8,82.6,35606,81.4,10.4,3909,0,1.8,0.4,0,0,NA,NA,NA,53558,22942,40176,3.6,7.8,2.2,5,1.4,0,58.5,73.4,79.2 +1062,21133,"Letcher County, Kentucky",Letcher County, Kentucky,22673,21146,97.3,0.7,43.3,5.2,1.3,78.4,20.6,28,2.49,3.01,5,30.9,72.6,36143,79.8,13.7,8367,1,0.5,0.1,0,0,26.8,33.7,15.7,57823,24260,40501,5.8,6.1,3.8,0,2.8,0.4,65.6,79.7,82.8 +1063,21135,"Lewis County, Kentucky",Lewis County, Kentucky,25119,13028,97,0,42.1,5.9,2,76.7,19.1,NA,2.63,3.26,7.5,24.1,79,34956,80.6,11.3,4905,0.1,0.9,0,0,0,NA,NA,NA,58763,23486,41632,6.9,8.3,5.5,1.5,3.9,0,61.5,74.3,81.6 +1064,21137,"Lincoln County, Kentucky",Lincoln County, Kentucky,28603,24415,93,1.7,41.9,6.4,2.1,76.4,18.9,NA,2.5,2.95,4.4,20,77.8,41309,83.2,15.2,9684,1.9,1.3,0.4,0,0.4,NA,NA,NA,69092,27267,50862,8.9,7.4,5.6,2.7,4,0.7,65.6,84.3,83.3 +1065,21139,"Livingston County, Kentucky",Livingston County, Kentucky,31350,8941,95.6,0.3,45.7,5.2,1.6,78.6,21.9,NA,2.53,3.04,1.9,22.5,80.8,38663,89.5,13.9,3502,0.8,0,0.1,0,0,NA,NA,NA,72048,29831,59713,7.5,4.5,4.6,0,0.3,0,63.8,83.4,83.1 +1066,21141,"Logan County, Kentucky",Logan County, Kentucky,32063,27731,89.4,4.6,40.6,6.5,2,76,18.8,NA,2.5,3.03,10,11.6,75.4,40646,87,16.6,10922,1.7,1.2,0.6,0.4,0.7,NA,NA,NA,73133,29251,61535,6.8,5,8.3,9.7,7.8,0.2,70.8,81,84.5 +1067,21143,"Lyon County, Kentucky",Lyon County, Kentucky,33412,8831,88.5,6.9,47.8,3.2,2.2,86.2,25.3,26.8,2.21,2.76,10,11.4,81.6,48212,90.1,16.3,3315,0.3,1.1,0.1,0,0.2,NA,NA,NA,83313,32837,64464,9.7,3.2,4.8,0,3.4,0,68.7,90,90.6 +1068,21145,"McCracken County, Kentucky",McCracken County, Kentucky,32513,67584,82.5,10,42.4,5.8,2,78,20.1,17.2,2.43,3.1,21.4,7.8,67.4,44107,92.8,27.9,27287,1.6,1,1.2,0.2,0.7,15.3,21.9,9.4,92551,38598,62385,7,3.1,5.6,1.3,3.3,0.8,78.9,89.1,89.1 +1069,21147,"McCreary County, Kentucky",McCreary County, Kentucky,18336,16905,90.1,6.9,38.7,5.6,0.9,78.2,16.1,NA,2.69,3.39,8.8,24.4,74.4,31358,77.5,9.1,5595,1.3,0,0,0.2,0.1,NA,NA,NA,47136,16972,37355,5.3,2.4,8.3,5.8,9.6,0,58.2,73.4,77.5 +1070,21149,"McLean County, Kentucky",McLean County, Kentucky,35948,9127,95.8,0.8,43.2,5.4,2.2,76.9,19.8,NA,2.5,2.95,9,16.1,81.2,51302,92.1,18.4,3608,1.8,0.1,0,0,0,NA,NA,NA,86894,34206,70549,6.3,6.5,4.2,0.7,0.4,1.6,73.4,87.1,85.4 +1071,21151,"Madison County, Kentucky",Madison County, Kentucky,32381,94064,89.4,3.5,34.7,5.6,1.2,78.8,14.6,25.9,2.4,2.91,26.7,6.9,62.4,44363,91.3,34.2,36722,2.4,1.2,0.8,0.3,0.5,15.8,18.5,9,82086,32382,62407,7.4,4.2,5.6,2,2.7,0.2,76.3,90.4,87.8 +1072,21153,"Magoffin County, Kentucky",Magoffin County, Kentucky,18509,11495,98.1,0.1,41.9,6.1,1.5,77.4,18.5,NA,2.49,3.07,4.6,44.2,77.5,33394,74.9,13.2,4564,1.6,0,0.6,0,0,NA,NA,NA,48749,20024,33632,4.2,12.1,3.8,0.3,2.1,0,61.2,79.1,83 +1073,21155,"Marion County, Kentucky",Marion County, Kentucky,30935,19680,88.2,7.2,39.6,6.3,1.3,76,16.9,20.8,2.46,3.13,9.7,13.9,77.3,44781,86.3,12.7,7590,2.5,1.1,0.4,0,0.3,NA,NA,NA,68294,27866,55404,7.5,5.1,3.1,0.5,1.4,0.2,60.7,79.6,85 +1074,21157,"Marshall County, Kentucky",Marshall County, Kentucky,34099,31728,96.2,0.7,44.9,4.9,2.6,79.6,22.1,NA,2.37,2.83,6.8,12.4,82.1,42490,92.3,21,13150,1.5,0.3,0.3,0,0,NA,NA,NA,81091,33532,63611,7.8,3.1,7.1,9.1,7,0,74.7,89.7,84.5 +1075,21159,"Martin County, Kentucky",Martin County, Kentucky,24402,11181,88,7.5,40.3,4.8,1.5,80.6,17.4,NA,2.48,3.06,6.9,31.1,80.2,48479,73.7,10.7,3935,0,0,0,0,0,NA,NA,NA,70987,29000,46185,1.9,4.7,2,0,0.3,0.4,65.4,79.3,81.1 +1076,21161,"Mason County, Kentucky",Mason County, Kentucky,28858,16995,87.4,6.2,42.3,5.8,1.5,77.2,19.3,26.6,2.42,3.09,18.3,9.9,68.6,36597,85.2,21.1,6927,1.6,0.8,0.2,0,0.3,NA,NA,NA,78747,33031,51473,6.3,4.8,6.1,13.7,7.6,0,65.8,84.8,82 +1077,21163,"Meade County, Kentucky",Meade County, Kentucky,34475,30032,90,3.5,39.3,5.1,0.7,77.8,15.1,NA,2.76,3.25,8,19.2,73.2,47440,90.6,18.4,10798,1.6,1.5,0.6,0.1,0.3,NA,NA,NA,89853,35010,70163,12.1,3.9,3.5,0.9,2,0.8,74,90.7,89.6 +1078,21165,"Menifee County, Kentucky",Menifee County, Kentucky,24200,6203,97.1,0.2,45.1,5.9,2,79,22,NA,2.55,3.09,4.7,23.9,72.6,34816,78.4,10.9,2387,1,0,0.3,0,0,NA,NA,NA,64037,25987,44672,8.3,5.1,5.3,3.4,2.5,0,60.6,74.9,76.1 +1079,21167,"Mercer County, Kentucky",Mercer County, Kentucky,36017,22824,91.1,3.6,42.8,6.2,1,77.8,19.2,NA,2.48,3.2,10.4,7.1,77.1,42363,91.1,22.5,9137,1.6,0.7,0.1,0.2,0.4,NA,NA,NA,78790,32851,63115,7.6,3.2,4.9,0.6,2.3,0,73.8,84.5,85.6 +1080,21169,"Metcalfe County, Kentucky",Metcalfe County, Kentucky,24959,10372,94.1,2.2,41.9,5.7,1.2,76.3,18.9,23.1,2.42,2.93,4.8,27.2,75.3,37227,84.3,13.1,4245,1.4,0.8,0,0.1,0.9,NA,NA,NA,59577,24031,48572,6.2,3.1,7.7,0.6,10.4,0,63.3,80.5,82.5 +1081,21171,"Monroe County, Kentucky",Monroe County, Kentucky,28972,11318,93.6,2.6,41.3,6,1.7,76.5,18.4,NA,2.44,3.01,9.1,16.3,69.2,39490,82.4,14.9,4586,3.2,0.9,0,0,0.7,NA,NA,NA,64452,26755,49430,4.8,4.1,5.5,5.9,3.2,0,59.5,78.7,80.6 +1082,21173,"Montgomery County, Kentucky",Montgomery County, Kentucky,31658,28271,92.5,2.6,40.6,5.4,1.6,76.6,17,NA,2.55,3.02,14.2,15.9,66.3,41903,85,20.8,10950,1.7,1.1,0.1,0,0.8,NA,NA,NA,71993,28562,57468,6.9,3.7,8,4.2,3.3,0,66.3,90.3,89.1 +1083,21175,"Morgan County, Kentucky",Morgan County, Kentucky,27459,13938,90.4,4.1,41.8,5.7,1.2,80.2,17.4,31.7,2.58,3.1,3.5,37.8,78.2,40815,81.1,17.6,4747,1,0.8,0,0,0,NA,NA,NA,70860,25456,47493,5.5,4.1,8.7,14.9,10.5,1.3,64.7,78.1,82 +1084,21177,"Muhlenberg County, Kentucky",Muhlenberg County, Kentucky,28320,30712,92.5,2.1,42.8,5.6,2,78.9,20,25.9,2.48,3,6.1,17.6,81.9,43482,84.6,13,11937,1.5,0.7,0.4,0,0,NA,NA,NA,77401,31065,52672,7.3,4.3,4.9,8.6,4.5,0.2,65.2,84.4,83.7 +1085,21179,"Nelson County, Kentucky",Nelson County, Kentucky,34941,47102,90.8,5.3,39.7,6,1.9,76.6,16.8,25.8,2.48,2.94,9.6,5.7,77.3,45850,91.9,22.8,18787,2.1,1.4,0.5,0.2,1.4,NA,NA,NA,85121,33257,67888,8,3,5.1,6.6,4.3,0,71.1,89.8,89.2 +1086,21181,"Nicholas County, Kentucky",Nicholas County, Kentucky,28506,7655,96.6,1,38.9,5.7,1.5,75.8,16.7,37.7,2.76,3.45,11.1,19.3,71.5,40417,83.7,9.5,2745,1,0,0,0,0.2,NA,NA,NA,62452,24672,53616,3.5,7.8,5.2,0.4,2.7,0,51,83.4,76.3 +1087,21183,"Ohio County, Kentucky",Ohio County, Kentucky,28955,23704,92.7,1.1,40.9,5.7,1.4,76,18.1,NA,2.56,3.02,6.6,22.3,78.6,40064,83.8,14.2,9155,3.2,1,0.1,0,1.4,NA,NA,NA,68954,27179,54369,6.1,4.7,6.1,2.4,5.4,0,60.6,83.3,81.2 +1088,21185,"Oldham County, Kentucky",Oldham County, Kentucky,49215,68600,87.6,3.7,39.7,5,0.8,74.9,14.1,NA,2.88,3.2,7.3,1.2,88.1,65704,94.1,45.6,22457,4.3,2.1,0.9,0.5,1,NA,NA,NA,159042,52773,121491,7,3,2.7,1.5,3,0.1,89.9,95.3,94.7 +1089,21187,"Owen County, Kentucky",Owen County, Kentucky,33399,11270,94.3,0.4,42.5,5.3,2.6,77.9,19.8,NA,2.62,3.16,5.2,23.9,87.8,45856,84.1,17.3,4261,2.1,0,0,0,0,NA,NA,NA,75233,30071,59706,6.8,5.6,7.8,4.6,6.3,0,65.6,78.5,75.6 +1090,21189,"Owsley County, Kentucky",Owsley County, Kentucky,19945,4021,93.3,0,47.9,7.3,0.8,81.2,21.1,NA,2.61,3.27,9.4,21.2,68.3,28946,73,11.4,1506,0,0,0,0,0,NA,NA,NA,50599,21285,31064,1.7,11.1,6.3,0,0,0,53.2,65.2,72.8 +1091,21191,"Pendleton County, Kentucky",Pendleton County, Kentucky,34521,14683,93.1,0.7,41.7,5.7,0.9,76.9,17,35.7,2.7,3.2,6.2,21,74,45701,84.7,16.6,5333,1.9,0.5,0.1,0,0,NA,NA,NA,78596,30460,66601,7.8,4.7,5.4,1.7,4.2,0,65.3,81.5,75.9 +1092,21193,"Perry County, Kentucky",Perry County, Kentucky,25294,27847,94.4,1,41.4,6,1.3,76.6,17.7,NA,2.41,2.81,8.4,31.1,72.2,38666,79.5,14.2,11293,1.7,0.3,1.6,0.9,0,25.5,31.4,12.7,74273,30062,45261,5.4,4.8,3,1.1,0.8,0,66.4,83,86.6 +1093,21195,"Pike County, Kentucky",Pike County, Kentucky,23858,57466,95.1,0.6,42.9,5.1,1.7,79.5,19.6,25,2.3,2.85,9.2,35.5,75.1,40357,80.8,16,24449,0.7,0.6,0.4,0.1,0.4,25,33.3,19.1,60376,26111,42179,4.8,5.9,5,3,2,0.1,65.1,80.1,80.4 +1094,21197,"Powell County, Kentucky",Powell County, Kentucky,23841,13057,93.8,1.7,39.3,6.1,1.6,75.4,15.7,NA,2.75,3.44,9.9,26.3,69.2,35410,82.6,17.3,4629,1.2,0.8,0.3,0,0,NA,NA,NA,61387,23947,39811,6.1,6.5,5,0,3.6,2.6,59.8,81.8,77.2 +1095,21199,"Pulaski County, Kentucky",Pulaski County, Kentucky,26705,65503,94.6,0.9,42.2,5.7,2.4,77.9,19.3,23.6,2.49,3.02,10.9,16.4,71.9,39495,84.9,17.9,25920,1.7,1.1,0.5,0.1,0.7,20.3,26.1,20.3,75173,31140,50943,7.3,5.3,6.7,0.6,2.8,0.1,69.9,84,83.2 +1096,21201,"Robertson County, Kentucky",Robertson County, Kentucky,29643,2239,95,2.1,39.7,3.4,2.3,72,18.8,33.1,2.76,3.1,2.1,26.3,75.3,44524,85.2,13.5,791,0,0.4,0,0,0.4,NA,NA,NA,66923,24243,52337,8.1,8.7,4.1,0.6,2.4,0,52.1,82,71.8 +1097,21203,"Rockcastle County, Kentucky",Rockcastle County, Kentucky,25960,16144,96.6,0.6,42.8,5.4,1.8,78.6,19.2,NA,2.46,2.93,6.7,25.6,76.4,38585,81.4,13.7,6428,0.9,0.7,0,0,0,NA,NA,NA,67845,28133,48367,5.4,6,4.9,4.3,1.8,1.1,65,81.3,78.9 +1098,21205,"Rowan County, Kentucky",Rowan County, Kentucky,25890,24525,95.3,1.8,31.2,5.4,1.5,80.4,14.2,22.9,2.32,2.93,14.8,23.7,63.1,40019,87.3,27,9345,1.2,0.4,0.2,0.8,0.1,NA,NA,NA,78365,30257,53657,5.3,4.3,5.7,1.3,2.7,0,76.4,88.8,92.1 +1099,21207,"Russell County, Kentucky",Russell County, Kentucky,26470,18117,92.8,1,42.2,5.7,2.1,76.9,20.6,NA,2.48,3.1,8.5,20.2,73.5,39695,81.8,15.8,7210,2.9,1.2,0.4,0,0.6,NA,NA,NA,68781,28231,50520,7.7,5,6.5,4.2,5.4,0,64.1,82.2,80.5 +1100,21209,"Scott County, Kentucky",Scott County, Kentucky,44378,58269,85.8,4.8,36.4,6.2,1.2,75.3,13,NA,2.58,3.02,15.9,4.8,72.1,53955,94.3,33.2,22119,3.1,1.6,0.9,0.2,0.5,10.4,13.9,8.8,103080,40096,83660,6.9,3.9,4.9,1.5,2.7,0.4,78.1,92.9,90.8 +1101,21211,"Shelby County, Kentucky",Shelby County, Kentucky,39594,48599,81.3,4.7,40.9,5.8,1.3,77.6,16.8,26.9,2.64,3.07,12.7,2.4,74.1,47020,88.2,31,17850,7.7,0.6,0.9,0.1,2.9,NA,NA,NA,102077,38834,82671,7.6,2.8,6.2,4.1,3.3,0.8,76.5,89.5,91.8 +1102,21213,"Simpson County, Kentucky",Simpson County, Kentucky,33415,19786,84.5,7,39,5.8,1.4,76.5,16,NA,2.52,3.09,12.7,7.3,66.3,39044,89.2,16.8,7689,1.5,0.7,0.1,0.2,0.5,NA,NA,NA,70729,28786,57392,8.3,3.3,8.4,7,8.9,0.6,67.9,85.2,85.7 +1103,21215,"Spencer County, Kentucky",Spencer County, Kentucky,42647,19875,94.3,1,43.3,5.3,0.7,77.4,15,NA,2.8,3.07,4.8,4.4,86.6,52846,93.3,22.1,7062,1.5,0.7,0.3,0,0,NA,NA,NA,110220,40963,98333,7.2,4.8,4.5,1.6,2.4,0.3,77.4,91.1,88.6 +1104,21217,"Taylor County, Kentucky",Taylor County, Kentucky,31512,26205,90,4.6,37.7,5.9,1.8,77.1,17.8,NA,2.49,3.16,11,9.8,67.6,41019,88.7,22,10045,1.8,1.6,0.1,0.6,0.2,NA,NA,NA,72642,28714,61871,6.8,4.2,3.8,5.5,1.6,0,68.4,84.2,85.7 +1105,21219,"Todd County, Kentucky",Todd County, Kentucky,35160,12330,85.7,7.2,36.3,7.2,1.3,73,16.9,NA,2.74,3.4,6.5,13.1,74.1,47694,79.8,15.9,4434,5.3,6.7,0.2,0,3.1,NA,NA,NA,79635,29483,57759,7,3,18.2,23.3,23.2,3.2,62,74,74 +1106,21221,"Trigg County, Kentucky",Trigg County, Kentucky,34285,14211,87.3,6.4,46.6,5.6,2.1,78.2,22.5,NA,2.35,3.02,8.3,13.5,74.2,40814,87.5,20.3,6012,2.1,3.2,0.3,0.1,0.7,NA,NA,NA,73411,31732,54630,9.7,3.1,14.4,16.8,26,1.3,67.7,83.4,76.9 +1107,21223,"Trimble County, Kentucky",Trimble County, Kentucky,29953,8531,93.5,0.8,40.9,5.1,0.9,77.9,18.3,29.3,2.59,3,3.1,24.7,82,41564,85.6,14.7,3277,1.3,1.1,0.9,0,1.1,NA,NA,NA,81427,31542,67813,10.2,8.6,5.5,11.4,7.5,0,63.6,82.7,79.1 +1108,21225,"Union County, Kentucky",Union County, Kentucky,32321,13379,88.9,8.1,41.3,5.4,2.1,80.6,19.6,22.7,2.42,2.96,7.2,13.6,71.7,41968,92,11.8,5128,1,0.1,0.7,0,0.3,NA,NA,NA,75274,30328,60989,6.7,2.9,5.4,1.6,4.8,0,66.9,90,89 +1109,21227,"Warren County, Kentucky",Warren County, Kentucky,32488,137549,77.7,8.6,33.4,6.5,1.2,76.5,13.2,20.8,2.43,3.06,28.8,4.9,56.7,43066,88.9,33.4,54208,5.2,3,3.8,1.3,4.1,16.8,20.5,8,87897,34999,64801,6.5,4.2,7,3,3.2,0.5,76.8,91.5,91.2 +1110,21229,"Washington County, Kentucky",Washington County, Kentucky,31703,12091,88.1,5.2,42.2,6,2.4,76.8,19.3,NA,2.51,3.24,9.4,12,78.2,40273,89.2,18.9,4650,1.5,1.6,0.4,0,0.9,NA,NA,NA,77873,30810,59762,4.7,3.9,9.4,13.8,14.1,0,65.8,82.7,81.3 +1111,21231,"Wayne County, Kentucky",Wayne County, Kentucky,23024,19592,92.4,1.4,43.4,5.6,1.9,79.4,21.2,NA,2.41,2.98,6.8,23.7,72,34557,79.4,13.7,8028,4.8,0.8,0.1,0.1,1.3,NA,NA,NA,64290,27424,41933,6.4,4.6,6.6,8.4,3,0,59.7,76.8,82.4 +1112,21233,"Webster County, Kentucky",Webster County, Kentucky,29760,12873,88.6,4.3,39.6,6.2,1.2,76.2,17.8,28.9,2.53,2.93,5.8,16.4,73,38054,86.6,12.6,4920,3.6,1.1,0.8,0,0.8,NA,NA,NA,70225,27404,58786,5.5,5.8,5.9,4.1,5.9,0.7,62.7,87,85 +1113,21235,"Whitley County, Kentucky",Whitley County, Kentucky,22937,36755,95.8,1.1,35.4,7,1.7,73.9,15.7,NA,2.58,3.13,11.7,21.7,66.7,34528,83.1,19.8,13570,0.5,0.3,0.2,0.1,0.2,25.1,27.8,24.7,62066,23077,41719,5,5.2,7.7,5.2,3.7,0.1,62.4,85.9,80.2 +1114,21237,"Wolfe County, Kentucky",Wolfe County, Kentucky,14854,6484,96.1,0.2,41.5,6.1,2.5,77.3,19.5,NA,2.5,2.95,9.3,30.4,69.9,23388,66,7.4,2545,1.8,0.2,0,0,1.5,NA,NA,NA,38556,15253,29052,4,10.9,2.3,3.1,3.7,1.3,55.4,73.6,79.7 +1115,21239,"Woodford County, Kentucky",Woodford County, Kentucky,41407,27017,87.8,4,42.3,5.6,1.8,78.1,20.1,NA,2.47,2.97,10.1,2.3,71.6,48191,91.4,41.7,10743,4,1,0.5,0.5,1.8,NA,NA,NA,101773,42152,80006,6.9,1.9,4.1,2.5,4.6,0.1,81.5,91.1,90.9 +1116,22001,"Acadia Parish, Louisiana",Acadia Parish, Louisiana,25873,57218,77.4,15.7,37,6.7,1.5,74,16.1,27.7,2.62,3.29,8.3,16,68,40556,80.7,13.4,21529,2.3,10.6,0.1,0,0.7,24.4,33.3,16.2,66626,26103,45266,3.9,7,5.9,1.2,1.6,0,54.8,85.1,79.5 +1117,22003,"Allen Parish, Louisiana",Allen Parish, Louisiana,24966,22552,70.1,19.5,38.9,5.9,1.6,78.9,14.4,25.1,2.48,3.02,9,21.2,76.8,29676,79.3,11.6,7659,2.6,7.2,0.1,1,0.2,NA,NA,NA,66692,24402,51138,5.3,13.1,8.1,0.1,2.3,1.1,56.7,89.3,77.1 +1118,22005,"Ascension Parish, Louisiana",Ascension Parish, Louisiana,44307,128593,65.3,22.9,36.4,6.7,1.1,73.4,12.7,NA,2.73,3.2,8.1,15.3,82.9,59523,88.7,28.5,46773,5.2,2.2,1,0.2,1.9,10.3,14,7.7,112452,41453,92266,5.7,4.5,6.6,1.6,3.5,0.6,80.3,92.6,91 +1119,22007,"Assumption Parish, Louisiana",Assumption Parish, Louisiana,28221,20720,65.5,28.6,42,5,1.8,79.2,20.1,NA,2.44,3.05,3.2,34,85.5,44949,78.2,13.7,8420,3.1,10.4,0.7,0.5,1.4,NA,NA,NA,76288,30471,52546,5.7,4.9,8.8,5.6,2.5,0.3,64,84.5,80.4 +1120,22009,"Avoyelles Parish, Louisiana",Avoyelles Parish, Louisiana,23490,39176,64.3,26.5,38.2,6.5,1.8,76.1,17.3,NA,2.48,3.22,8.7,19.6,68.7,34744,77,10.9,14540,3.3,12.7,0.6,0.3,0.8,27.4,38,20.6,59386,23854,39439,5.5,6.6,7.6,0.7,2.3,0.6,53.2,81,75.9 +1121,22011,"Beauregard Parish, Louisiana",Beauregard Parish, Louisiana,34702,36646,80.1,11,36.9,6.8,1.2,74.7,16,32.7,2.62,3.18,5.4,29.8,83.2,46894,87.2,17.8,13691,2.2,3.6,0.6,0.1,0.2,NA,NA,NA,85624,33294,64995,11.2,7.6,8.1,10,8.7,0.5,72.7,92.2,88.5 +1122,22013,"Bienville Parish, Louisiana",Bienville Parish, Louisiana,22950,12769,54.3,41.4,42.5,6,2.1,77.3,21,27.9,2.3,3.2,8.6,29.8,70.6,32010,86,13.5,5425,1.8,0.8,0,0,0.2,NA,NA,NA,57923,25567,34992,5.3,6.3,8.8,1.6,1.2,0.2,47.6,80.1,64.8 +1123,22015,"Bossier Parish, Louisiana",Bossier Parish, Louisiana,36304,129134,65.1,23.8,36.2,6.4,2,75.1,15,NA,2.55,3.19,15.8,11.7,66.1,47534,90.7,27.3,49661,4.6,1.7,1.5,0.6,2,16.4,23.4,9.5,90757,36233,66336,10.7,5.2,9.8,7.4,8.1,0.4,74.2,90.6,82.7 +1124,22017,"Caddo Parish, Louisiana",Caddo Parish, Louisiana,28701,232973,43.8,49.1,39.2,6.2,2.3,76.3,18.4,20.6,2.4,3.19,19.5,8.6,60.6,39446,87.5,25.3,94917,2.4,1.2,0.8,0.3,0.6,22.3,30.4,14.6,77213,33008,50067,8.2,7.9,7.7,4,3.9,0.4,66,86.7,82.9 +1125,22019,"Calcasieu Parish, Louisiana",Calcasieu Parish, Louisiana,33064,208668,67,23.7,37.2,6.9,1.6,74.9,15.6,21.7,2.67,3.34,12.3,14.4,72.2,47068,89.4,24.7,76995,3.6,3.6,1.6,0.2,0.6,17.8,24.7,13.1,92900,35568,67849,7.5,5.1,7.7,4.1,4.3,0.6,72.2,88.1,85.1 +1126,22021,"Caldwell Parish, Louisiana",Caldwell Parish, Louisiana,24699,9563,77.8,18.2,40.7,5.1,1.7,77.9,18.1,NA,2.51,3.19,5.4,41.6,69,43919,82.8,10.7,3686,3.7,0.5,0.2,0.1,0.9,NA,NA,NA,73179,29643,44957,6.2,10.1,4.9,0.3,0.4,0,58.6,85.1,75 +1127,22023,"Cameron Parish, Louisiana",Cameron Parish, Louisiana,41143,5222,85.7,1.2,43,6.8,2.2,76,17.7,NA,2.55,2.73,0.4,36.3,96.9,50542,88.1,15,2034,0,10.5,0,0,3.2,NA,NA,NA,93121,33846,72500,7.9,1,2.8,0,1.3,0,79.1,82.4,82.1 +1128,22025,"Catahoula Parish, Louisiana",Catahoula Parish, Louisiana,24800,8738,63.5,34.7,38.8,5.7,1.2,77.6,18.2,NA,2.46,2.91,10,33.2,76,36062,74.2,16.6,3076,1.3,0.4,0.5,0,0,NA,NA,NA,60724,22927,47753,5.3,7.4,7.7,5.9,8.3,0.9,53.4,80.3,74 +1129,22027,"Claiborne Parish, Louisiana",Claiborne Parish, Louisiana,20011,14019,44.9,48.8,41.9,4.8,2.4,80.4,21.3,30.2,2.4,3.46,8.1,25.5,70.5,27659,79.4,11,5019,0.9,0.2,0.5,0.1,0.1,NA,NA,NA,51822,19675,31784,6.6,5,4.4,1.5,3,0,43.9,78.9,50.8 +1130,22029,"Concordia Parish, Louisiana",Concordia Parish, Louisiana,24438,18325,57,38.9,37.7,5.9,1.5,76.4,18.9,22.4,2.6,3.34,8.5,19.5,70.4,34290,83.6,17.4,6575,1.6,0.6,0,0.1,0.2,34.8,51.4,16.8,57433,23119,37349,6.5,10.7,9.4,0,0.7,0,54.4,82.2,79 +1131,22031,"De Soto Parish, Louisiana",De Soto Parish, Louisiana,25978,26897,60.3,35,40.1,6,1.8,76,18.5,27.1,2.59,3.22,9.6,32.9,75.2,38705,85,14.9,10293,1.8,0.4,0,0,0.1,21.8,29.8,17.9,74350,29925,46077,7,5.6,6,3,2.8,0.3,59.9,85.3,78.8 +1132,22033,"East Baton Rouge Parish, Louisiana",East Baton Rouge Parish, Louisiana,35263,452821,43.2,44.3,34.2,6.3,1.5,77.3,14.9,NA,2.5,3.26,29.1,2.9,59.1,49895,90.8,38.2,175408,4.9,2.3,2.1,0.9,2.8,18.6,23.5,11,94856,38131,63075,4.7,7.2,8.7,6.7,6.5,1.1,76.2,91.4,90 +1133,22035,"East Carroll Parish, Louisiana",East Carroll Parish, Louisiana,15730,7195,29.4,64.9,35.7,4.1,3,80.3,18,16.3,2.17,2.77,10.7,25.5,60,25080,69.1,11,2508,1.6,0.4,0,0,0,NA,NA,NA,48868,16689,28321,3.8,11.9,6.2,0,1.5,2.2,53.5,77.8,67.1 +1134,22037,"East Feliciana Parish, Louisiana",East Feliciana Parish, Louisiana,36588,19378,54.7,39.9,44.6,4.6,1.4,82.7,19.6,35.6,2.48,3.16,4,24.9,83.8,56458,84.7,17,6536,0.9,0.4,0.3,0.1,0.1,NA,NA,NA,101271,34994,72899,5,6.3,6.1,0.8,1.1,0.4,65,84.1,79.6 +1135,22039,"Evangeline Parish, Louisiana",Evangeline Parish, Louisiana,24516,32162,65.7,25.7,37.7,6.8,1.6,74.7,15.7,33.6,2.51,3.16,11.4,14.6,64.8,37458,79.1,12.6,12240,1.6,24.4,0.1,0,1.7,23,30.2,16.7,61320,24765,42273,5.7,8.7,8.5,4.3,2.7,0.2,53.9,83.8,78.1 +1136,22041,"Franklin Parish, Louisiana",Franklin Parish, Louisiana,25332,19590,66.6,28.7,39.1,6.5,0.9,75.2,19.4,27.5,2.52,3.05,4.4,19.2,73.7,36805,78.5,16.2,7351,2.6,1.7,0.3,0,0.4,NA,NA,NA,68738,25511,44103,4.6,7.3,6.4,1.3,2.7,0,57.8,80.3,68.8 +1137,22043,"Grant Parish, Louisiana",Grant Parish, Louisiana,31682,22123,78.2,14.8,38.5,5.6,1.1,79,15.4,NA,2.63,3.21,3.3,31.1,82.1,45018,81.5,12.8,7195,3,0.7,0.5,0,0,NA,NA,NA,76304,26307,61112,6.5,4.2,9.5,0.2,3.6,0.7,63.4,82.3,77.7 +1138,22045,"Iberia Parish, Louisiana",Iberia Parish, Louisiana,29556,69194,57.3,30.7,37.8,6.8,1.7,74.4,16.1,NA,2.54,3.01,10,19.4,68,42167,83.2,14.7,26869,3.8,8.5,1.9,0.2,1.1,22.6,32.8,13.6,76182,29664,57811,5.8,5.9,7.4,3.4,3.8,1,59.6,87.2,85.3 +1139,22047,"Iberville Parish, Louisiana",Iberville Parish, Louisiana,31980,29950,48.2,45.3,40.3,5.4,1.7,79.1,17.3,NA,2.46,3.07,6.7,18.4,75.7,43614,81,16.6,11032,2.8,1.4,0,0,0.9,NA,NA,NA,78701,29293,57459,3.5,5.8,7.9,5.5,4.2,0,67.8,86.3,83.9 +1140,22049,"Jackson Parish, Louisiana",Jackson Parish, Louisiana,24841,14939,66.9,25.5,41.5,5.1,2.6,78.6,20.6,NA,2.51,3.16,6.7,18.2,70.4,37662,85.7,13.4,5602,3.9,0.6,0.1,0.6,1.1,NA,NA,NA,61119,24255,43345,6.1,5.9,8.2,1.5,7.3,0.5,54.6,80.8,73.6 +1141,22051,"Jefferson Parish, Louisiana",Jefferson Parish, Louisiana,35358,432484,52.7,26,39.9,6.3,2.1,77.6,18.1,NA,2.43,3.12,27.7,1.7,62.3,44806,86.6,29.9,176986,12.5,3,3.2,1.4,5.2,16.3,23.9,11.5,91025,37062,65246,5.6,5.7,10.9,5.7,7.3,0.8,72.6,88.5,87 +1142,22053,"Jefferson Davis Parish, Louisiana",Jefferson Davis Parish, Louisiana,30836,32083,77.3,14.7,37.4,6.5,1.9,74.9,16.5,NA,2.7,3.25,5.8,19.1,76.3,41045,82.7,15,11704,2.1,11.4,0,0,0.6,17.8,18.2,12.9,75091,30377,56500,7.1,4.1,6.1,0.3,1.7,0.7,59.3,80.8,76.3 +1143,22055,"Lafayette Parish, Louisiana",Lafayette Parish, Louisiana,37846,245075,64,25.4,36.4,6.6,1.4,75.8,14.3,NA,2.43,3.05,18.7,10,66.1,49043,89.9,34.9,99357,4.6,6.7,1.5,0.4,2.2,17.4,24.4,14.2,94948,39092,67660,6,5,8.4,2,3.2,0.8,74.9,90.2,90.9 +1144,22057,"Lafourche Parish, Louisiana",Lafourche Parish, Louisiana,31316,96670,76.4,13.2,39,6,1.8,77,16.2,26.5,2.52,3.02,9.1,15.7,78.3,47218,82.9,20.4,37397,3.7,11.3,0.3,0,1,18,24.5,13,83215,32900,63439,4.7,5,6.6,0.9,3.4,0.2,69.5,85.3,85 +1145,22059,"LaSalle Parish, Louisiana",LaSalle Parish, Louisiana,31093,14804,80.8,11.3,38.6,5.5,0.6,78.4,15.5,NA,2.81,3.31,3.4,27.1,82.9,49330,80.4,17.4,4883,11.5,0.7,0.8,0,0.5,NA,NA,NA,81315,31297,67077,7.3,8,5.1,0,1.6,0.5,64.6,89.1,87.1 +1146,22061,"Lincoln Parish, Louisiana",Lincoln Parish, Louisiana,21653,48160,53.6,37,28.6,5.1,1.8,80.2,14,18.4,2.38,3.15,22.8,17.9,53.5,35487,89.4,36,18341,2.2,1.8,0.8,0.7,1.4,30.7,37.8,12.3,64508,25193,38035,5.1,3.9,5.7,5.1,2.8,0,67.6,90.2,79.6 +1147,22063,"Livingston Parish, Louisiana",Livingston Parish, Louisiana,37479,145583,83.3,8.3,36.4,6.5,1.2,74.2,13.6,34.1,2.81,3.29,6.5,21.5,81.3,51028,87.6,20.3,51362,3.5,1.4,0.5,0.2,2.1,13.1,16.1,10.4,91769,33883,78617,7.2,3.7,8.9,3.5,4.8,0,76.5,92.4,90.6 +1148,22065,"Madison Parish, Louisiana",Madison Parish, Louisiana,20677,9757,33.8,62.9,34.6,7.2,0.9,74,16.8,NA,2.77,3.6,16.1,14,56.4,31465,76.1,12.8,3020,1.2,0.4,0.4,0.4,0.3,NA,NA,NA,56560,19086,37267,6.3,4.5,9.5,3.5,3.1,0,49.6,85.5,70.8 +1149,22067,"Morehouse Parish, Louisiana",Morehouse Parish, Louisiana,24704,24967,47.9,48.1,40.3,6.1,2.2,76.7,19.4,27.6,2.47,3.18,6.2,19,66.6,31887,83.1,12.7,9779,0.9,0.6,0.4,0,0.5,30.7,48.8,22.1,59950,24038,36981,6.9,9.7,6.2,2.6,2.7,0.2,54.3,77.3,71.5 +1150,22069,"Natchitoches Parish, Louisiana",Natchitoches Parish, Louisiana,25992,37047,51,40,33.3,6.1,2,76.9,16.8,22.4,2.47,3.25,17.3,21.7,62.3,42983,87.3,25.6,14108,3,1.2,0.5,0.3,0.4,24.1,26.4,14.6,68240,26602,46798,5.5,6.1,7.3,4.7,3.2,0.5,63.9,84.8,80.7 +1151,22071,"Orleans Parish, Louisiana",Orleans Parish, Louisiana,32271,376035,31.6,55.2,38.4,5.5,1.7,80.2,16.5,22.7,2.34,3.45,37.8,0.5,50.5,44567,89.1,42,155060,5.9,3,1.8,0.5,1.8,22.6,32.2,20.7,89943,39698,55339,4.7,7.6,8.4,4.1,5.4,1.2,72.2,88.3,83.5 +1152,22073,"Ouachita Parish, Louisiana",Ouachita Parish, Louisiana,30460,158916,56.7,37.1,36.6,6.5,1.8,75.3,15.5,22.3,2.53,3.22,18.3,12.7,59.5,43811,88,27.5,60804,3,1.1,0.5,0.2,0.8,24,33.2,17,76757,30656,51241,6.2,6.1,8.1,3.1,5.1,0.8,65.6,86.8,80.7 +1153,22075,"Plaquemines Parish, Louisiana",Plaquemines Parish, Louisiana,37861,23070,61.8,22.4,36.8,6.3,1.5,75,13.9,27.5,2.75,3.24,7.4,26,73.9,49052,85.6,19.8,8200,6,2.9,4.8,0.6,2.9,NA,NA,NA,100882,36570,82874,6.3,4.5,5.7,1.5,1,0.7,73.5,90.1,88.7 +1154,22077,"Pointe Coupee Parish, Louisiana",Pointe Coupee Parish, Louisiana,33185,20438,61.2,32.3,43.2,5.4,2.9,78.5,21.7,NA,2.48,3.37,3.1,20.2,77.5,42868,81.5,15.5,8202,1.5,3.6,0.4,0.2,0.2,NA,NA,NA,76024,32852,59351,5.2,8.9,7.1,0,2,0.2,62.8,81,80 +1155,22079,"Rapides Parish, Louisiana",Rapides Parish, Louisiana,30947,128470,61.2,31.1,37.8,6.5,1.7,74.9,16.7,23.6,2.56,3.21,15,15.4,65.3,42061,87.4,22.4,48660,3.2,1.8,0.9,0.5,1.5,18.9,25.8,13.4,79662,31688,55946,8.3,5,8.9,4.6,4.5,0.5,65.2,86.7,85.4 +1156,22081,"Red River Parish, Louisiana",Red River Parish, Louisiana,23577,7529,57.4,40.2,40.4,6.1,2,76.3,19.4,NA,2.44,2.98,7.4,35.8,76.7,36659,81.2,11.2,3002,0.4,0,0,0,0.1,NA,NA,NA,62550,25081,44539,3.4,2.8,8.4,16.4,4.5,0,58.3,82.2,73.4 +1157,22083,"Richland Parish, Louisiana",Richland Parish, Louisiana,29746,19908,60.6,36.1,39.8,6.4,2.1,76.3,18,NA,2.59,3.19,4.5,22.9,67,41736,79.5,18.1,7251,1.4,0.6,0.1,0.3,0.3,NA,NA,NA,69136,26762,52960,5.5,8,8.1,1.7,5.7,0.3,48.4,85.4,68 +1158,22085,"Sabine Parish, Louisiana",Sabine Parish, Louisiana,26888,22085,67.2,14.4,41.3,5.9,2.3,76.7,21,35.9,2.56,3.13,5.9,39.4,80.3,39421,85.7,14.5,8485,1.4,2.6,0.2,0.2,0.6,NA,NA,NA,69439,27968,52047,6.9,6.2,8.2,2.2,2.6,0,57.3,85,78 +1159,22087,"St. Bernard Parish, Louisiana",St. Bernard Parish, Louisiana,32136,44172,61.6,23.8,35.8,6.7,1.3,73.7,12.7,NA,2.78,3.43,12.9,6.3,70.1,46615,81.3,17.2,15803,6.7,1,1.9,0.7,1.7,22.6,31.2,16.9,77494,29478,57638,4.6,7.2,8.1,3.2,3.4,1.1,69.4,86.5,85.5 +1160,22089,"St. Charles Parish, Louisiana",St. Charles Parish, Louisiana,42325,51863,65,22.9,39.1,5.3,1.7,75.7,14.9,NA,2.76,3.21,8.4,7.8,82.7,51989,89.1,27.2,18622,5.1,2.4,1.1,0.1,1.3,NA,NA,NA,105813,39716,82172,7,6.3,6.6,3.8,2.7,0.6,80.3,91.6,92.6 +1161,22091,"St. Helena Parish, Louisiana",St. Helena Parish, Louisiana,22607,10849,46.5,50.2,42.4,5.2,1.3,79.7,20.6,NA,2.61,3.72,6.4,37.6,74.5,34072,81.1,11.7,4101,2.1,0.7,0.3,0,0.7,NA,NA,NA,60962,24848,50193,4.3,18.8,9,0,2.3,1,53.3,79.3,68.3 +1162,22093,"St. James Parish, Louisiana",St. James Parish, Louisiana,35570,19797,49.7,48.4,40.8,5.7,2.2,77.6,19,NA,2.64,3.18,4.9,19.2,85.5,49614,88.6,20.2,7436,1.4,2.3,0.1,0,0.8,NA,NA,NA,90475,35832,64536,3.2,5.1,6.7,2.1,2.8,0.2,67.7,83.5,85.5 +1163,22095,"St. John the Baptist Parish, Louisiana",St. John the Baptist Parish, Louisiana,32831,41342,32.3,56.2,38.5,5.7,1.7,75.7,14.9,NA,2.74,3.37,6.1,8.7,79.7,42553,86.7,18.7,14922,5,1.1,0.6,0.6,0.5,NA,NA,NA,82408,30337,67418,6.5,8.8,7,0.7,2,0.3,73.4,88.7,89.4 +1164,22097,"St. Landry Parish, Louisiana",St. Landry Parish, Louisiana,24853,82128,53.4,40.3,37.5,7.1,1.8,73.3,16.6,NA,2.56,3.16,9.8,20.8,70,39825,80.6,14.3,31638,2.6,10.3,0.1,0.2,2.2,24,28.8,24.5,62849,25018,45637,4.8,5.6,7.2,1.1,4.2,0.3,54.8,81,70.6 +1165,22099,"St. Martin Parish, Louisiana",St. Martin Parish, Louisiana,29950,51559,64.8,28.6,39.7,6.2,1.3,75.9,16.6,NA,2.57,3.22,4.4,24.3,78.9,44036,82.9,15.3,19963,2.5,15.7,0.8,0.1,2.7,16.6,19.3,16.6,74226,29983,53394,5.9,4.8,6.7,3.7,3.9,0.5,61.7,83.5,81.6 +1166,22101,"St. Mary Parish, Louisiana",St. Mary Parish, Louisiana,29357,48455,56.1,29.1,39.7,6.7,2.2,75.6,18,NA,2.55,3.17,11.4,19.5,69.8,41295,80.6,13.1,18705,7.3,3.6,1.5,0.2,4.1,22.1,28.5,19.9,70302,28157,51768,5.1,5.9,6.8,2.3,1.7,1.3,53.5,83.8,87 +1167,22103,"St. Tammany Parish, Louisiana",St. Tammany Parish, Louisiana,39715,269331,75,12.2,40.4,5.8,1.9,76.2,18,NA,2.58,3.08,12.2,6,78.8,52622,91.4,36.6,103286,4.7,1.9,0.9,0.6,1.5,12.2,17.8,8.9,106854,41854,79277,7.2,4.6,7.3,2.5,5.5,0.5,82.4,90.8,92.5 +1168,22105,"Tangipahoa Parish, Louisiana",Tangipahoa Parish, Louisiana,30535,135218,62,29.9,35.7,6.9,1.1,75.4,15,NA,2.61,3.25,11.7,17.9,71.5,43881,83.9,22.2,50191,3.8,1.5,1.1,0.3,1.3,19.4,27.6,14,80091,30992,57256,6,5.1,7.2,1,2.3,0.4,70.2,89.7,87.9 +1169,22107,"Tensas Parish, Louisiana",Tensas Parish, Louisiana,23217,3992,41.6,53.3,47.4,4.8,2.5,78.4,27.1,NA,2.35,3.45,6.3,13.3,69.6,27137,80.9,13.1,1629,1.8,0,0.4,0.4,0,NA,NA,NA,50490,21878,36074,4.5,15.1,6.8,0,0.3,0,43.5,75.3,65.3 +1170,22109,"Terrebonne Parish, Louisiana",Terrebonne Parish, Louisiana,31924,107362,65.4,19.3,37.3,6.6,1.4,74.7,15.4,24.3,2.54,3.01,11.8,14.2,73.6,46446,83.3,17.7,41841,3.6,7.2,1.2,0.3,1.5,16.5,21.3,14.5,85147,33217,64819,5.8,4.6,7.7,3.1,3.2,0.4,70.8,87.1,85.9 +1171,22111,"Union Parish, Louisiana",Union Parish, Louisiana,24907,20914,69.7,24.8,43.5,6.2,2,78.4,22.1,NA,2.47,3.16,4.6,38.9,76.1,40602,86.4,16,8247,3.3,0.4,0.8,0,0.7,NA,NA,NA,64887,27835,45743,6.5,4.4,8.1,3.3,5.9,0,52,82.1,64.6 +1172,22113,"Vermilion Parish, Louisiana",Vermilion Parish, Louisiana,30191,57031,78.4,13,39.4,6.4,1.5,74.7,16.1,30.3,2.57,3.07,7.2,17.9,74.3,45778,84.1,16.8,21914,1.6,13.2,1.9,0.2,2.4,19.2,24,14,75614,29760,57537,5.8,4.9,7.4,4.5,4,0.3,67.3,88.4,88.6 +1173,22115,"Vernon Parish, Louisiana",Vernon Parish, Louisiana,32045,47764,74.4,13.1,32.1,8,1.2,74.7,13.5,NA,2.6,3.14,19.8,20.7,55.8,43232,87.6,19.1,17754,7.4,2.8,2,0.9,1.5,18.3,23.4,17.1,74713,29550,58281,16.6,5.5,7.8,1.9,4,0.6,71.1,89.2,87 +1174,22117,"Washington Parish, Louisiana",Washington Parish, Louisiana,25172,45238,65.2,29.7,41,6.4,2.2,76.3,18.5,NA,2.47,3.08,6.7,24.2,69.4,36271,84.1,12.7,17651,1.8,1.9,0.5,0,0.6,24.2,34.3,16.7,64790,25520,42776,7.1,10.4,7.8,9.4,5.9,0.5,53.4,82.6,70.7 +1175,22119,"Webster Parish, Louisiana",Webster Parish, Louisiana,21022,36189,62.9,33.4,41.2,5.8,1.9,77.1,20.2,28,2.38,3.01,8.2,21.9,68.2,26617,86.2,12.8,14761,0.9,0.8,0.6,0,0.3,26.9,35.4,16,58262,24115,37396,6.7,4.7,7.1,1.7,4.3,0.4,52.3,85.6,60.7 +1176,22121,"West Baton Rouge Parish, Louisiana",West Baton Rouge Parish, Louisiana,42815,27666,54.3,40.5,36.6,6.2,1,76.4,14.4,25.2,2.58,3.17,8.5,20.3,75.9,52709,89.4,23.1,10400,5.3,2.6,0,0.2,3.8,NA,NA,NA,100545,38107,87320,4.4,6.7,5.8,4.6,2.1,0,75.4,92.8,91.2 +1177,22123,"West Carroll Parish, Louisiana",West Carroll Parish, Louisiana,28580,9622,80.6,15.4,41.4,5.9,2.9,77,20.8,23.1,2.41,3.09,2.1,30,73.8,41892,83.7,14.1,3875,2.2,0.3,0,0,0.1,NA,NA,NA,67443,28876,48514,5,3,6.6,4.6,4.2,0,50.6,81.3,63.8 +1178,22125,"West Feliciana Parish, Louisiana",West Feliciana Parish, Louisiana,34558,15381,50.5,45.6,42.2,3.9,0.5,83.7,15.7,NA,2.91,3.62,9.2,24.4,78.8,46080,84.6,22.6,3911,2.1,1.2,0,0,0,NA,NA,NA,102965,29175,74277,6.6,6.5,5.2,0,0.9,0,71,92.8,87.8 +1179,22127,"Winn Parish, Louisiana",Winn Parish, Louisiana,30373,13506,63.7,28.8,41.6,4.8,1.4,79.2,19,31.5,2.44,3.14,10.1,22.7,71.1,46385,84.4,16.1,4883,1,1,0.9,0,0.7,NA,NA,NA,70666,27165,46368,6.5,4.8,8.2,3,1.2,0,56.9,81.2,76.9 +1180,23001,"Androscoggin County, Maine",Androscoggin County, Maine,35928,112323,88.7,4.7,40.8,5.4,1.9,78.9,18.5,24.6,2.33,2.91,29.9,9.3,67.4,46930,92.5,23.4,46632,1.3,9.4,0.6,1.8,1.7,13,19.7,9.6,85807,35885,67298,8.8,4,6.8,2.7,4.4,0.1,77.1,86.7,89.1 +1181,23003,"Aroostook County, Maine",Aroostook County, Maine,31239,67227,93.4,0.8,48.4,4.8,3.3,81.3,25.4,19,2.2,2.79,18,9.1,74.4,43767,91.2,22.4,29684,0.7,17.8,0.4,0.5,1.9,14.4,17.1,13.5,73148,33136,54254,10,5.2,8,7.9,7.9,0.2,70.6,75.8,80.1 +1182,23005,"Cumberland County, Maine",Cumberland County, Maine,46809,305940,87.6,3.3,42.1,4.7,2.2,81.8,19.8,23.4,2.28,2.88,28,3.8,70.4,56852,96.5,52.2,130003,1.6,4.6,1.3,1.4,1.6,7.1,7.8,7.2,125434,54238,92983,6.7,2.7,4.7,2.5,2.4,0.1,86.9,89.4,91.5 +1183,23007,"Franklin County, Maine",Franklin County, Maine,30839,30145,94.4,0.6,46.1,4.1,3.4,82.8,23.1,NA,2.32,3,14.5,12.7,77,40489,93.8,29.9,12457,0.9,2.5,1,0.1,0.1,NA,NA,NA,80168,34456,58522,8.8,4.6,9.5,3.4,4.8,0.4,75.9,83.2,84 +1184,23009,"Hancock County, Maine",Hancock County, Maine,37216,56084,93.9,0.9,49.1,4.1,2.7,83.5,26,NA,2.18,2.77,11.8,9.1,78.8,44296,95,39.2,24992,1,2.4,0.7,0.3,0.2,10.2,11.9,6.9,91525,41576,69630,8.3,2.8,10.2,9.3,11.1,0.3,78.8,82.5,89.1 +1185,23011,"Kennebec County, Maine",Kennebec County, Maine,36541,125614,93.4,0.8,44,4.7,2.2,81,20.8,NA,2.25,2.8,22,10.6,72.8,47041,94.8,30.9,53936,1.1,5.6,0.5,0.1,0.8,12.3,16.1,8.3,85256,37344,65062,9.8,4.1,6.7,2.6,4.1,0.4,81,85.9,89.8 +1186,23013,"Knox County, Maine",Knox County, Maine,36981,40860,94.7,0.4,49.2,3.8,2.5,82.9,27.1,20.1,2.17,2.78,13.7,7.7,78.5,41197,94.3,39.1,17979,1.9,2.7,0.6,0,0.3,NA,NA,NA,95678,42729,71903,8.6,3.2,6.3,2.7,4.2,0,82.5,84.3,89.9 +1187,23015,"Lincoln County, Maine",Lincoln County, Maine,39216,35840,94,0.5,51.1,4.1,3.7,83.2,28.9,NA,2.17,2.7,8.4,8.9,83.8,42879,94.9,40,16201,1.2,2.4,0.4,0.1,0.5,NA,NA,NA,98711,44739,72026,11,3.3,7.5,8.5,6.6,0.2,81.9,83.5,86.8 +1188,23017,"Oxford County, Maine",Oxford County, Maine,31933,58728,93.7,0.3,48.3,4.1,2.4,82.1,23.4,NA,2.44,3,11.4,13.1,80.8,39955,92.6,22.5,23694,0.3,2.3,0.3,0.1,0.3,14.2,19.4,10.8,78431,33545,57933,9.5,4.6,8.5,4.9,5.2,0.1,75.3,80.5,85.6 +1189,23019,"Penobscot County, Maine",Penobscot County, Maine,34270,153571,92.1,1,42.5,4.4,2.3,82.2,19.8,NA,2.26,2.82,22.4,12.1,70.3,44520,94.5,30.5,64769,1.1,3,0.8,0.7,0.6,13.5,14.8,10.4,84825,36736,63248,8.3,3.7,7.2,4.4,4,0.1,78.7,84.7,87.6 +1190,23021,"Piscataquis County, Maine",Piscataquis County, Maine,32048,17125,93.4,0.8,51.4,4,2,84.2,26.9,NA,2.07,2.38,10.2,14.8,76.9,40868,92,21.8,8111,1.1,1.5,1.6,0,0.4,NA,NA,NA,74961,34592,55234,10.3,3.8,10,4.3,5.1,0.1,73.1,80.6,83.6 +1191,23023,"Sagadahoc County, Maine",Sagadahoc County, Maine,43846,37093,93.5,0.5,47.3,4.3,2.9,82.1,24,NA,2.28,2.7,15.5,7,77.8,49408,94.8,41.1,16175,1.1,3.3,1,0.1,0.1,NA,NA,NA,101281,45131,82080,10.9,4.5,5.4,2.6,4.6,0.3,84,86.6,92.6 +1192,23025,"Somerset County, Maine",Somerset County, Maine,32044,50852,95.1,0.5,46.9,4.9,1.7,81.4,22.6,NA,2.2,2.71,10.4,19,77.3,40531,92.9,20.3,22737,0.7,3.1,0.3,0.1,0.1,15.6,16.8,12.9,72900,32452,56199,11,3.3,7.8,2.5,3.9,0.2,74.2,81.8,85.3 +1193,23027,"Waldo County, Maine",Waldo County, Maine,36025,40006,93.9,0.6,46.9,4.4,1.8,82,24.5,26.2,2.25,2.72,9.3,14.6,80.9,44276,93.7,34.8,17476,1,3.4,0.5,0.1,0.1,NA,NA,NA,86416,38183,68441,7.9,4.2,9.4,14.6,12.9,0,80,82.7,88.8 +1194,23029,"Washington County, Maine",Washington County, Maine,30931,31261,88.5,1,48.6,4.7,2.6,81.3,25.8,NA,2.16,2.67,10.4,12.8,78.1,37177,91.2,24.9,13989,1.9,2.1,0.3,3,0.3,NA,NA,NA,71586,32459,52237,12.2,5.6,9.8,8.3,8.1,0.1,70.8,75.5,82.7 +1195,23031,"York County, Maine",York County, Maine,42041,214731,91.4,1.1,45.3,4.5,2.4,81.9,21.7,27.1,2.34,2.87,21.2,5.8,76.1,51250,95.1,34.6,90250,1.1,6.5,0.8,0.5,0.9,7.8,9.6,7.7,104151,44548,82904,8.9,3,5.3,3,3.6,0.1,84.1,86.9,91.3 +1196,24001,"Allegany County, Maryland",Allegany County, Maryland,30010,67762,87.3,7.1,41.7,4.6,3,82.2,21,22.1,2.22,2.85,16.1,3,70.3,44001,89.7,21.1,27436,1.9,1.4,1.1,0.1,0.2,17.2,20.3,12.8,72567,30046,57393,8.2,5.3,4.1,2.7,2.2,0.3,71.5,78.5,83.8 +1197,24003,"Anne Arundel County, Maryland",Anne Arundel County, Maryland,59521,590936,65.1,17.7,39,6,1.7,77.3,15.6,29.4,2.6,3.13,17.7,1.2,75,72317,93.8,45.2,223602,7.1,4,3.2,1.8,1.7,5.5,5.8,5.8,152859,58462,120324,10.4,3.7,4.6,2.6,2.3,0.7,88.8,92.7,94.9 +1198,24005,"Baltimore County, Maryland",Baltimore County, Maryland,47284,849586,54.1,30.3,39.5,5.8,2.3,78.1,17.8,28.3,2.51,3.16,27.8,0.8,66.3,59915,91.7,41.4,330151,4.9,5.6,2.9,3.2,2.5,10,12.9,10.1,121241,48196,90904,6,4.8,5.5,4.4,4.9,0.9,84.1,89.3,90.5 +1199,24009,"Calvert County, Maryland",Calvert County, Maryland,60181,93791,76.5,12.2,40.5,5.3,1.6,76.8,15.9,40.7,2.78,3.25,5.1,0.7,87.2,77471,94.9,35.3,33485,3.1,2.6,1.4,0.3,0.3,NA,NA,NA,153737,56411,132059,10.9,2.1,3.3,0.9,1.9,0.1,88.6,91.3,92.9 +1200,24011,"Caroline County, Maryland",Caroline County, Maryland,34324,33406,74.1,13.8,39.8,6.2,2,76.3,17.1,31.2,2.7,3.3,12.7,7.5,71.9,45801,84,17.6,12181,4.6,1.6,0.4,0.8,2.3,NA,NA,NA,87193,33898,66368,6.4,5,7.1,4,4.7,0.2,71.8,87.2,86.3 +1201,24013,"Carroll County, Maryland",Carroll County, Maryland,52813,174318,87.2,4,41.3,5.5,2.2,78,17.6,34.5,2.68,3.15,10.2,0.8,83.9,69537,94.9,39.7,63487,3.5,2.6,1.4,0.5,0.6,5.3,4.9,5.1,138928,51465,115876,7.5,2.9,2.8,1.3,1.7,0.2,85.3,89.7,91.5 +1202,24015,"Cecil County, Maryland",Cecil County, Maryland,45278,104366,83.1,7.1,40.8,5.7,1.6,77.6,16.7,NA,2.56,3,13.9,4.7,75.3,62071,91.5,26.9,40172,4.4,2.2,1,0.8,1.3,10.9,14.9,9.3,110672,42560,91146,8.2,4.5,3.8,3.9,2.9,0.4,83,90,90.7 +1203,24017,"Charles County, Maryland",Charles County, Maryland,58167,168710,35.4,49.2,38.8,5.8,1.3,76,13.1,NA,2.78,3.29,9,0.8,81.2,70792,94.3,31.6,60199,5.4,2.6,2.7,1.7,1.1,6.6,8,9,140010,50540,120592,13.2,4.5,4.4,4,4,0.4,87.7,91,92.9 +1204,24019,"Dorchester County, Maryland",Dorchester County, Maryland,33249,32612,61.9,25.3,43.9,5.4,1.5,78.8,22.5,26.9,2.41,3.07,15,5.6,66.3,43515,86.8,18.8,13324,2.9,1.4,0.6,0.2,0.9,16.3,22.8,14.4,82059,34780,60495,7.9,4.5,5.4,5.8,3.2,1.1,70.5,86.5,85.6 +1205,24021,"Frederick County, Maryland",Frederick County, Maryland,56719,280341,70.3,10.3,38.9,5.9,1.8,76.6,15,33.4,2.71,3.18,16.6,0.6,77,71234,93.4,44.9,101807,9.2,4.8,2.9,1.6,1.9,6.3,7.7,6,144655,53316,120458,7.5,3.2,4.6,2.3,2.5,0.3,88.4,92.2,92.6 +1206,24023,"Garrett County, Maryland",Garrett County, Maryland,36924,28713,95.5,0.8,48.1,4.6,3,82.1,23.6,24.1,2.23,2.77,8.2,9.8,81,46507,89.9,24.6,12565,1.8,1.9,0.3,0,0.1,NA,NA,NA,96458,42328,69031,8.6,4.9,6,4.2,3.5,0.3,71.1,81.2,83.2 +1207,24025,"Harford County, Maryland",Harford County, Maryland,52718,262509,74.1,14.5,40.5,5.5,1.7,77.6,17,32.1,2.6,3.08,15.5,2.7,79.7,68643,94.6,39.5,100271,4.1,3.7,2.1,1,0.9,7,7.6,9.2,132060,50861,111317,9,3.5,3.7,5,4,0.5,87,92.3,92.3 +1208,24027,"Howard County, Maryland",Howard County, Maryland,68478,333916,48.9,20,39.4,5.5,1.7,76,14.8,28.8,2.76,3.22,25.3,1,71.7,86642,95.3,64.5,120066,6.2,8.4,11.2,3.9,3.4,5.1,5.5,4.9,180793,65860,146982,6.2,3.5,4,2.6,2.9,0.9,93.8,94.3,96.2 +1209,24029,"Kent County, Maryland",Kent County, Maryland,40968,19265,77.7,14.2,48.4,4,3.4,84.4,26.9,NA,2.07,2.6,13.2,2.6,72.1,50211,91.8,37.9,8530,2.8,2.3,0.2,0,0.4,NA,NA,NA,100801,45817,74402,8.1,2.7,5.3,22.1,10.5,0.2,77.4,85.3,81.2 +1210,24031,"Montgomery County, Maryland",Montgomery County, Maryland,60102,1057586,44.4,18.6,40.1,5.8,2.2,77.1,16.6,32.4,2.7,3.27,34.2,0.2,65.3,72512,91.2,60.3,387881,15.7,12.3,10.2,6,7.7,7.1,8.4,7.2,177086,66124,128733,4.1,4.6,6.8,3,3.4,1.6,90.9,93.7,95.3 +1211,24033,"Prince George's County, Maryland",Prince George's County, Maryland,48597,955584,13.2,59.8,38.5,6.2,1.5,77.8,14.4,35.5,2.72,3.38,32.1,0.6,62.3,57757,86.7,36.1,344586,14.4,4.6,2.9,5.6,6.1,10.2,13.7,8.8,122461,45287,100708,6.9,6,11.2,6.4,8,1.8,84.5,92.5,92.9 +1212,24035,"Queen Anne's County, Maryland",Queen Anne's County, Maryland,53373,50951,84.3,6,44.8,5.2,1.9,78.7,20.2,NA,2.57,3.01,8.4,2.7,81.3,62442,93.6,37.2,19637,3.5,1.9,1.5,0.5,1.4,NA,NA,NA,139205,54824,113347,8,3.6,5.7,6.9,4.8,0.4,82.7,92,87 +1213,24037,"St. Mary's County, Maryland",St. Mary's County, Maryland,55936,114372,72.3,14.8,37,6.1,1.6,76,13.7,NA,2.68,3.16,13.9,2.9,72.6,72426,92.4,35.1,41743,3.4,2.4,2.2,0.7,1,7.4,7.8,8.8,138624,51358,114580,14.1,3.7,3.7,2.1,3.7,0.2,85.8,90.2,90.9 +1214,24039,"Somerset County, Maryland",Somerset County, Maryland,27437,24685,52.2,39.5,38.1,4.7,1.9,82.5,17.3,NA,2.37,2.99,19.7,7.9,68.8,36409,85,17.1,8296,1.1,0.2,0.2,3.1,1.2,NA,NA,NA,68629,26031,52462,6.6,5.6,3.4,1.3,1.8,0.8,70.4,82.8,83.5 +1215,24041,"Talbot County, Maryland",Talbot County, Maryland,43542,37707,75.7,12,51.1,4.2,5,81.2,29.3,NA,2.3,2.89,15.3,2.7,72.7,51998,92,41.3,16211,5.4,2.3,0.6,0.3,2.2,NA,NA,NA,121378,53527,84378,9,3.4,4.5,3.5,3.4,0.3,80,85.3,89.2 +1216,24043,"Washington County, Maryland",Washington County, Maryland,37376,155033,76.8,11.5,41,5.5,2.1,78.1,17.8,29.5,2.48,2.99,19.7,1.9,65.9,51825,88.7,23.5,59411,5.1,2.3,1.4,1.5,1.9,12.5,16.1,8.9,95432,37391,74157,7.3,4.7,6.1,6,4.3,0.9,76.3,87.1,87.1 +1217,24045,"Wicomico County, Maryland",Wicomico County, Maryland,35949,104117,60.6,26.5,36.2,6,1.7,77.5,16.2,NA,2.5,3.05,20.8,3.5,60.7,49501,89.4,29.1,40034,5.3,5.7,2.1,0.3,3.6,14,16.3,8.4,95675,36856,72861,6.3,5.3,6.5,4.9,4.4,0.1,77.5,89.6,88.6 +1218,24047,"Worcester County, Maryland",Worcester County, Maryland,41425,53279,79.5,12.2,50.7,4,3.5,82.7,28.2,22.7,2.21,2.72,15.7,4.2,76.7,49838,93.7,32.7,23827,3.1,4.4,1.1,0.4,0.5,NA,NA,NA,115398,51620,81455,9.8,6.3,5.5,2.7,4.6,0.5,80.7,88.7,90 +1219,24510,"Baltimore city, Maryland",Baltimore city, Maryland,37411,577193,27.4,60,36.1,6.1,1.6,79.1,14.9,29.4,2.22,3.19,36.1,0.2,47.5,51795,87.2,35.4,250608,5.6,3.4,1.9,2,2.4,20.1,26.4,20.9,87339,39195,59623,4.8,6.1,5.8,2.1,3.8,0.6,72.3,87.8,83.1 +1220,25001,"Barnstable County, Massachusetts",Barnstable County, Massachusetts,47866,230073,87,2.7,55.1,3.5,4.1,85.6,32.3,25.4,2.21,2.75,14.6,0.5,80.6,56696,96.4,47.4,102981,1.9,7.9,0.9,0.9,2,7.4,9.3,6.4,132436,60325,94452,7.6,4.3,2.8,1.6,1.5,0.4,85.3,88.6,93.7 +1221,25003,"Berkshire County, Massachusetts",Berkshire County, Massachusetts,38391,128047,87.3,2.5,47.8,4,3.2,83.6,24.6,20.7,2.16,2.77,30,1.5,70,49265,93.7,38.3,56517,3.3,3.6,0.9,0.6,1.1,11,15.3,8.3,105155,47668,72565,6,5.5,2.1,0.4,0.6,0.3,80.6,83.3,89.3 +1222,25005,"Bristol County, Massachusetts",Bristol County, Massachusetts,42332,578436,78.6,4.4,40.9,5.1,2.2,79.3,17.4,28.4,2.43,2.97,41.3,1.4,62.2,57944,86.2,30.6,232202,6.8,17.1,1.4,0.7,5.6,11.6,15.9,10.7,108996,43752,84198,5.5,5.2,3,1.7,1.6,0.2,76.6,86.9,88.6 +1223,25007,"Dukes County, Massachusetts",Dukes County, Massachusetts,49439,20751,81.7,3.3,50.4,4,3.3,82.7,26,NA,2.78,3.51,15.1,0.1,74.6,57535,95.2,49,7362,3.8,7.4,0.7,0.3,3.2,NA,NA,NA,176872,71014,102348,6.8,7.1,5,9,5,0,90.6,90,92.4 +1224,25009,"Essex County, Massachusetts",Essex County, Massachusetts,46763,807258,70.3,4.1,41.1,5.4,2.4,79,18,28.9,2.54,3.1,41.9,0.5,64,61731,90.1,42.3,311676,18.3,7.6,2.2,1.3,7.4,9.4,12.1,10.8,136127,53210,99431,4.4,4.8,2.8,1,1.3,0.5,81,88.7,91.4 +1225,25011,"Franklin County, Massachusetts",Franklin County, Massachusetts,39025,70922,89.4,1.4,47.3,3.8,2.4,83.1,23.9,23.6,2.2,2.77,28.7,1.8,68.7,46228,93.9,40.3,31498,2.9,3.1,1.7,0.3,1,12.2,17,8.4,91453,41366,72584,6.8,6,2.3,2.1,0.8,0.2,80.9,82.7,89.9 +1226,25013,"Hampden County, Massachusetts",Hampden County, Massachusetts,37358,462853,67.4,8.7,39.8,5.3,2.4,78.9,17.8,22.9,2.44,3.08,36.3,1.5,62.2,51255,87.2,28.9,184217,20.1,6.5,1.7,1.2,8.1,15.7,21.9,13.7,93919,37810,70535,5.7,5.6,3.1,2,2.5,0.3,71.6,84.5,87.3 +1227,25015,"Hampshire County, Massachusetts",Hampshire County, Massachusetts,36234,156595,83.3,2.3,38.7,3.3,1.9,85.1,19.3,NA,2.18,2.71,31.4,1.2,68.8,58797,95.5,51.1,61770,5.5,6.2,1.7,0.5,1.8,10.9,10.2,7.1,114325,45006,86391,5.7,4.1,2,0.9,1.5,0.3,86.6,88,91.5 +1228,25017,"Middlesex County, Massachusetts",Middlesex County, Massachusetts,59228,1622896,69,5,38.9,5.1,2.1,80.4,16,30,2.48,3.06,44.7,0.5,61.6,76704,93.4,59,630939,6.8,14.1,8.4,2.2,5.9,7.5,7.4,8.6,172162,67471,126779,3.5,4.1,2.4,1.2,1.5,0.5,88.4,91.5,94.2 +1229,25019,"Nantucket County, Massachusetts",Nantucket County, Massachusetts,62775,14299,70.8,9.3,40.8,4.8,1.3,79.4,15.5,15.2,2.78,3.32,14.5,0.6,76.5,72821,96,58.4,5048,7.1,5.5,1.7,0.1,0.6,NA,NA,NA,194491,72733,119750,4.5,5.6,6.5,8.5,6.4,0.9,94.3,95.9,95 +1230,25021,"Norfolk County, Massachusetts",Norfolk County, Massachusetts,59991,724540,71.4,7.2,40.9,5.2,2.4,79.3,17.4,32.9,2.51,3.11,36.3,0.4,68.5,78028,94.4,57.6,281408,4.2,10.8,8.9,2.2,4.9,6.6,5.8,8.7,177133,69508,126497,4,4.5,1.9,0.7,0.9,0.6,87.7,90.7,94.2 +1231,25023,"Plymouth County, Massachusetts",Plymouth County, Massachusetts,49310,531889,78,8.8,42.9,5.1,2.1,79.1,19.2,32.9,2.59,3.1,22.8,2.3,77.6,64513,93.2,41.2,200995,3.6,10.6,1.1,0.6,3.2,7.1,8.1,8.5,147024,55965,109698,6,4.7,2.5,1.6,1.5,0.5,83.9,89.2,92 +1232,25025,"Suffolk County, Massachusetts",Suffolk County, Massachusetts,46584,782172,48.1,19.1,33.8,4.9,1.8,83.8,13,30.9,2.29,3.09,79.1,0.3,36.6,64022,87.6,49.9,322184,18,11.6,7.5,2.8,11.6,16.5,21.2,20.3,136155,56920,92859,2.3,5.6,3.3,1.7,1.9,0.9,81.9,90.5,90.3 +1233,25027,"Worcester County, Massachusetts",Worcester County, Massachusetts,44763,861664,75.5,5.1,40.3,5.2,2,79.2,16.6,29.6,2.5,3.04,35.1,0.7,65.7,60379,91.3,39,333273,10.8,8.4,3.2,2.8,4.9,10.3,12.3,9.5,122104,47780,93561,5.3,5,2.6,1,1.5,0.5,82.1,89.3,91.8 +1234,26001,"Alcona County, Michigan",Alcona County, Michigan,30896,10310,94.3,0.3,59.7,3.4,3.4,87.2,36.2,28.2,1.99,2.44,2,7.8,89.6,36215,92.9,20.6,5116,1.3,0.7,0.3,0.3,0.1,NA,NA,NA,70723,34595,53568,13.3,4.5,3.9,1.4,2.6,0.2,68.6,79,81 +1235,26003,"Alger County, Michigan",Alger County, Michigan,29433,8813,82.1,7.9,48.8,3.5,2.1,85,26.6,NA,2.23,2.73,8.5,5.6,84.3,39750,93.6,20.3,3490,1.2,1.9,0,1.9,0.1,NA,NA,NA,69972,28250,59406,9,5.5,5.1,1.8,6,0.3,75,76.1,83.8 +1236,26005,"Allegan County, Michigan",Allegan County, Michigan,39348,120913,89.3,1.2,40.8,5.8,1.6,76.4,17.8,NA,2.66,3.09,7.5,10.3,86.1,49352,92.1,26.1,44984,5.1,1.5,0.7,0.2,1,9.3,14,5.7,99705,37565,80255,5.2,2.9,5.1,4.3,3.1,0.3,80.8,90.6,90 +1237,26007,"Alpena County, Michigan",Alpena County, Michigan,28526,28908,93.3,0.9,47.6,4.6,3.2,81.2,24.5,17.6,2.23,2.82,14.6,5.1,79.4,36520,93.1,17.7,12734,0.9,1.8,0.4,0,0.4,NA,NA,NA,72874,33093,51909,10.1,6.5,5.1,2,1.9,0.2,72,80.1,82.6 +1238,26009,"Antrim County, Michigan",Antrim County, Michigan,36310,23876,93.9,0.4,51.8,4,2.2,82.7,28.3,NA,2.14,2.55,5.7,7.9,87,42161,94.4,34.3,11034,1.7,1,0.1,0.2,0.2,NA,NA,NA,91809,41548,71421,8.9,4,5.3,5.7,3.9,0,77.8,88.9,87.9 +1239,26011,"Arenac County, Michigan",Arenac County, Michigan,31235,15054,93.9,0.6,50.1,4.6,2.5,81.5,26.3,27.5,2.32,2.9,6.7,11.3,85.7,38776,88.6,15.8,6421,0.8,1.5,0.2,0.4,0.2,NA,NA,NA,69907,31061,56989,8.9,6.5,6.3,3.5,4.3,0.3,68.7,80.7,84.8 +1240,26013,"Baraga County, Michigan",Baraga County, Michigan,31221,8249,72.6,6.8,46.2,4.1,2.6,82.9,23,NA,2.16,2.75,12.4,8.2,77,42717,92.1,16.1,3337,0.2,0.2,0.8,1.5,0.2,NA,NA,NA,71095,28904,55117,8.8,6.2,4.5,1.8,0.8,0,72.3,72.9,81.5 +1241,26015,"Barry County, Michigan",Barry County, Michigan,39093,62982,93.6,0.5,42,5.3,2.2,78.1,19,29,2.56,3.13,5.3,6.8,86.1,49602,93.1,24.3,24409,2.3,2.4,0.4,0.2,0.4,NA,NA,NA,100618,39955,77873,6.9,5.2,5.3,4,3.9,0.2,76.8,87.4,86.1 +1242,26017,"Bay County, Michigan",Bay County, Michigan,34990,103235,91.9,1.4,43.8,4.7,2.3,80.2,21.3,23.4,2.27,2.88,13.9,4.2,76.4,44083,91.8,21.4,44917,1.5,0.8,0.4,0.2,0.1,14,18.4,10.2,77994,34858,60523,7.9,4.1,4.7,1.4,2.3,0.1,75.7,85.1,87.9 +1243,26019,"Benzie County, Michigan",Benzie County, Michigan,35245,18177,92.1,0.5,50.6,4.3,3.2,82.9,27.8,24.8,2.39,2.86,5.6,9.5,87.8,39798,93.9,34.3,7466,1.5,1.2,0,0.1,0.1,NA,NA,NA,96668,40984,72603,9.7,3.4,6.8,9.6,8.2,0.1,81.1,87.3,92 +1244,26021,"Berrien County, Michigan",Berrien County, Michigan,34791,153411,75,13.5,42.6,5.4,3,78.4,20.8,20.9,2.36,2.94,16.4,4.3,72.8,44429,92.3,30.2,63651,4,2.6,1.6,0.5,0.6,15.2,22.7,9.5,88982,37747,63152,6.1,6.1,6.2,3,3.6,0.6,73.7,86.7,85.9 +1245,26023,"Branch County, Michigan",Branch County, Michigan,33563,44914,89.3,1.9,40.8,6.3,1.5,76.5,19,NA,2.54,3.14,11.1,11.7,77.5,40949,88.6,16.9,16922,5.2,3.3,0.4,2.2,2.9,15.4,21.4,10.7,78604,30685,61958,6.7,5.4,10.1,21.9,14.7,0.5,68.7,83.8,83.8 +1246,26025,"Calhoun County, Michigan",Calhoun County, Michigan,34581,133846,77.4,10.1,40.2,5.8,1.8,77,18.2,20.6,2.44,3.12,18.2,5.2,72.4,44020,90.9,22.2,53431,3.3,1.7,2.1,0.5,1.4,14.2,20.3,11.2,80429,33239,60385,7.5,6.2,5.9,6.5,4.7,0.2,72.2,85.3,88.2 +1247,26027,"Cass County, Michigan",Cass County, Michigan,35224,51606,86.1,4.3,45.5,4.8,2.1,79.6,22,NA,2.43,2.9,6.7,7.6,80.5,46661,90.2,21.6,21089,2.3,2.1,0.9,0.3,0.4,13.2,21.4,8.5,94695,38544,68011,8.1,4.8,6.3,4.8,5.7,0.7,71,85.7,87.8 +1248,26029,"Charlevoix County, Michigan",Charlevoix County, Michigan,40365,26143,93.7,0.5,50,4.2,2.7,82.1,26.2,NA,2.11,2.51,10.5,9.6,82.7,45814,95.3,33.9,12247,1.1,1.9,0.7,1,0.5,NA,NA,NA,102533,47337,76495,8.5,3.9,6.2,8.9,4.4,0,79.1,87.6,89.7 +1249,26031,"Cheboygan County, Michigan",Cheboygan County, Michigan,30901,25778,90.3,0.9,51.9,4.1,2.5,84.2,28.4,NA,2.37,2.93,5.7,8.8,85,35659,89.7,22.9,10757,1.1,1.8,0.5,0.5,0,NA,NA,NA,79606,34750,61619,9.2,7.5,6.2,3.7,3.3,0.3,73.6,83.8,85.4 +1250,26033,"Chippewa County, Michigan",Chippewa County, Michigan,30170,36448,68,5.8,41.3,4.5,2.1,81.9,19.1,NA,2.34,2.96,12.8,7.4,73.7,37202,92.8,21.9,13867,1.2,2.2,1.1,1,0.6,NA,NA,NA,77181,30609,60631,8.5,5.9,6.6,4.5,4.5,0.3,75.3,82,85.6 +1251,26035,"Clare County, Michigan",Clare County, Michigan,25729,31109,94.4,0.6,48.3,5,2.5,80.2,24.7,28.9,2.53,3.18,7.6,14.2,86.2,34258,88.2,13,12150,0.7,2.7,0.3,0.2,0.3,21.1,28.4,14.3,66300,27619,49805,9.6,7.8,11.7,17.6,17.7,0.9,67,79.6,80.9 +1252,26037,"Clinton County, Michigan",Clinton County, Michigan,43439,79419,89.6,1.7,41.8,5.2,2.2,78.3,18.2,NA,2.51,2.97,11.7,5.1,82.8,56081,95.5,34.2,31314,2.6,1.8,1.2,0.3,0.6,9.4,11.3,6.2,110367,44380,85928,6.8,3.5,3.4,2.5,1.9,0,82.6,90.4,89.8 +1253,26039,"Crawford County, Michigan",Crawford County, Michigan,31148,13271,93.2,0.3,51.5,4.5,2.5,82.3,26.6,25.7,2.18,2.71,4.5,11.6,81.5,37384,91.4,20.2,6009,0.5,1.5,0.5,0,0,NA,NA,NA,68771,31449,58614,12,6.7,5.6,6.8,4.1,0,71.4,87.4,89.6 +1254,26041,"Delta County, Michigan",Delta County, Michigan,29904,36829,90.7,0.3,47.8,4.7,3,80.6,25.6,18.5,2.28,2.87,13.7,6.7,78.6,39902,92.4,20,15900,1,1,0.4,0.1,0.1,NA,NA,NA,77286,34716,54829,10.5,4.8,5.7,5,3.9,0.3,70.1,80.7,85.3 +1255,26043,"Dickinson County, Michigan",Dickinson County, Michigan,35719,25940,93.3,0.8,47.4,5,3.6,80.2,23.7,NA,2.16,2.72,12.6,5,81.8,44425,95.8,24.3,11837,0.3,2.4,1.1,0.4,0.1,NA,NA,NA,79343,36181,61882,9.4,3.8,4.5,4,4.1,0,71.6,82.3,86.4 +1256,26045,"Eaton County, Michigan",Eaton County, Michigan,42020,109000,82.5,7,41.2,5.2,2.4,79.3,19.6,NA,2.38,2.95,20.2,4.8,74.2,51313,94.5,30.4,45115,3.4,2.8,1.2,1,0.5,7.7,9.2,7,95377,40259,78025,7.3,4,4.2,3.6,3,0.3,79.6,89.2,90 +1257,26047,"Emmet County, Michigan",Emmet County, Michigan,37591,34159,90.4,0.7,46.4,4.3,2.5,81.7,24.2,20,2.31,2.81,16.4,6.1,76.8,44563,96,40.2,14604,1.1,1.9,0.3,0.3,0.4,NA,NA,NA,104840,45122,73724,6.7,3.4,5.5,4.8,5.3,0.2,78.5,88.8,90.4 +1258,26049,"Genesee County, Michigan",Genesee County, Michigan,34333,404087,72.6,19.4,40.6,5.6,2.2,77.6,18.3,NA,2.4,2.99,14.9,5.4,70.8,43305,90.9,22.8,166375,1.8,1.3,0.8,0.9,0.7,15.9,21.7,9.6,82790,34587,60673,6.8,7.8,4.8,1.4,1.2,0.2,74.5,87.5,87.5 +1259,26051,"Gladwin County, Michigan",Gladwin County, Michigan,30406,25543,94.4,0.3,50.8,4.9,3.2,81.1,26.9,NA,2.29,2.83,5.6,12.5,87.1,40825,88.9,15.4,11060,1.3,2.6,0.4,0.2,0.5,NA,NA,NA,74438,32413,55576,9.1,6.1,8.3,14.7,11.8,0.4,67.6,81.3,84.4 +1260,26053,"Gogebic County, Michigan",Gogebic County, Michigan,30728,14348,92,0.9,51.3,3.9,4.1,83.6,28.8,20,1.99,2.68,10.8,1.2,80.8,37664,95.8,21.9,7038,3,1,0.3,0.5,0.6,NA,NA,NA,67756,34085,49672,10.6,6.3,6.1,5.1,4.3,0.1,72,76.3,83.6 +1261,26055,"Grand Traverse County, Michigan",Grand Traverse County, Michigan,39720,95757,92.5,0.9,43.1,4.8,2.8,80.3,21.3,NA,2.37,2.96,15.9,7.4,76.5,47086,95.1,40.3,39596,1.6,1.4,0.5,0.1,0.3,8.6,12.5,6.1,102115,43501,79486,7.2,3.3,4.3,2.9,2.6,0.2,82.5,89.5,90.9 +1262,26057,"Gratiot County, Michigan",Gratiot County, Michigan,30841,41478,87.4,5.5,39.7,4.9,2.4,80.5,17.5,24.6,2.45,2.88,10.5,9.5,78.9,41001,91.9,19,14511,2.6,1.1,1,0.1,0.2,NA,NA,NA,81865,29558,61128,5.4,4.2,4.9,1.8,2.5,0.3,72.2,85.8,84.4 +1263,26059,"Hillsdale County, Michigan",Hillsdale County, Michigan,31893,45658,94.4,0.7,42.8,5.5,2,78.4,20.8,NA,2.47,3.03,8.6,9.4,81,41393,90.5,20.6,17858,1.5,1.8,0.3,0.1,0.1,15.5,24.9,9.2,78710,31996,60869,7.7,4.7,7,7.7,7.4,0.3,68.7,82.3,83.6 +1264,26061,"Houghton County, Michigan",Houghton County, Michigan,27725,37428,91.8,1.1,32.3,4.8,2.1,80.1,17.7,NA,2.34,3.07,19.6,3.6,71.2,39975,94.5,36.6,14251,1.5,2.3,1.4,1.6,0.9,NA,NA,NA,77744,31441,56573,6.8,5,6,3.8,3.1,0.4,77.4,83.5,86.3 +1265,26063,"Huron County, Michigan",Huron County, Michigan,32331,31258,94.3,0.4,49.4,4.7,3.5,80.8,26.6,21,2.22,2.88,7.4,5.2,82.1,39720,91.9,17.6,13836,1.6,1.8,0.5,0.2,0.6,NA,NA,NA,74244,33855,56963,7,4.5,5.6,4.9,3.8,0.5,67.6,81.1,80.8 +1266,26065,"Ingham County, Michigan",Ingham County, Michigan,35010,282015,70.4,11.8,33.3,5.3,1.6,80.3,14.6,NA,2.27,3.01,30.7,2.5,59.5,48213,93.5,41.3,116566,4.6,4,4.3,1.9,2.3,16.4,16.9,8.1,88247,37347,64354,4.9,5.5,4.9,1.4,2.4,0.1,80.3,90.7,89.4 +1267,26067,"Ionia County, Michigan",Ionia County, Michigan,36399,66706,87.6,3.8,38.8,5.2,1.8,78.8,15.4,NA,2.75,3.3,11.9,11,77.2,45514,91.4,18,22994,2.6,0.8,0.3,0.1,0.2,11.4,14.2,10.3,84553,31593,73436,6.9,4.2,6,2.5,2.2,0.1,74.5,88,87.2 +1268,26069,"Iosco County, Michigan",Iosco County, Michigan,27645,25333,92.4,0.9,53.5,4.9,3,83,30.4,21.2,2.19,2.91,8,5.4,82.9,34965,89.1,17.6,11449,2.4,0.9,0.7,0.2,0.1,NA,NA,NA,63001,29934,47777,12.3,6.8,5.6,6,6.2,0.2,68.8,78.8,83 +1269,26071,"Iron County, Michigan",Iron County, Michigan,31884,11650,93.3,0.8,53.2,4.1,4.8,82.6,30.9,20.1,2.11,2.71,7.9,2.8,85.3,38309,93.4,20.6,5354,1.3,0.8,0.4,0.6,0.1,NA,NA,NA,67747,33488,53614,10.5,3.9,4.7,0.2,2,0,67.9,76.8,81.2 +1270,26073,"Isabella County, Michigan",Isabella County, Michigan,25224,64475,85.3,2.8,29.8,4.6,1.5,82.3,13.7,NA,2.37,2.95,27.7,8.4,61.3,42649,92,30.8,24942,2.4,2.3,1.2,1.1,0.5,23.2,21.5,9.8,72425,29626,53759,5.7,6.3,7.6,9.2,7.5,0.2,78.3,89.6,81.5 +1271,26075,"Jackson County, Michigan",Jackson County, Michigan,35232,160187,83.9,7.7,41.2,5.4,2.2,78.9,18.6,NA,2.43,3.09,15.3,5.5,75,45200,92.8,23,62034,1.7,1.5,0.7,0.5,0.6,12.2,16.9,7.8,86795,34834,65004,6.9,5.6,4.9,1.4,1.5,0.3,72,88,90.1 +1272,26077,"Kalamazoo County, Michigan",Kalamazoo County, Michigan,36843,261437,76.8,11,34.9,5.6,1.8,78.5,15.8,NA,2.39,3,28.1,3.1,64,50879,94.3,40.8,106251,3,3.1,1.6,1.3,0.8,13.3,12.7,8,96937,39915,70525,5.9,5.5,5,3,2.7,0.2,81.5,89.9,89.9 +1273,26079,"Kalkaska County, Michigan",Kalkaska County, Michigan,32406,18116,93.8,0.9,44,4.9,2.2,79.7,21.2,NA,2.32,2.91,5.1,14.6,87.5,42324,89.9,18.2,7716,1,1.8,0.6,0.2,0.1,NA,NA,NA,76261,32904,60365,9.7,3.8,6.9,3.1,3.6,0,70,84.7,84.9 +1274,26081,"Kent County, Michigan",Kent County, Michigan,40637,658844,73.9,9.5,35.7,6.3,1.6,76.3,14.5,21.1,2.54,3.1,23.4,3.7,70.4,50437,92.3,39.6,254860,7.4,2.9,2,1.1,2.7,10.6,13.8,9,105864,41504,80390,5.2,3.8,4.9,2.1,2.4,0.4,82.3,90.6,91 +1275,26083,"Keweenaw County, Michigan",Keweenaw County, Michigan,38438,2106,96,0,56.7,3.2,2.6,85.2,36,NA,1.92,2.37,1.9,0.4,91.7,42859,97.5,43.6,1090,1.7,0.9,0,0.4,0.2,NA,NA,NA,88295,46593,53893,17,2.6,7.6,3.7,1.3,0.1,78.5,83.9,82.8 +1276,26085,"Lake County, Michigan",Lake County, Michigan,25230,12393,80.1,8.7,50.3,3.8,1.9,84.8,26.6,30.3,2.45,3.16,4.4,19.4,81.2,31729,82.6,12.5,4931,3.6,1.3,0.7,0.1,0.6,NA,NA,NA,61941,27369,49680,8.4,7.2,8,10.2,10,0.3,58.3,82.5,78 +1277,26087,"Lapeer County, Michigan",Lapeer County, Michigan,38137,88703,91.6,1.2,44.6,4.7,1.6,79.9,19.5,34.3,2.52,2.95,8.1,7.3,86,48049,92.3,19.8,34479,3.5,1.6,0.3,0.1,0.6,9.8,13.1,6.6,95711,38273,76228,8.1,4.7,5.4,1.8,2.6,0.4,77.3,88.1,87.6 +1278,26089,"Leelanau County, Michigan",Leelanau County, Michigan,42273,22607,90.4,0.4,55.3,3.7,3.2,84.3,33,23.5,2.36,2.77,4.6,2,90.6,42664,96.6,49.9,9439,2.6,2.8,0.1,0.4,0.3,NA,NA,NA,127724,53601,91943,7.6,3,4.1,2.2,2.8,0.2,85.9,89,91.6 +1279,26091,"Lenawee County, Michigan",Lenawee County, Michigan,34879,98823,89,2.3,42.2,5.1,2.1,79.3,19.9,NA,2.42,2.93,12.7,5.5,78.6,43700,91.4,22.3,38807,4.5,1.3,0.4,0.3,0.8,11.6,15.9,7.9,83678,33914,67013,6.8,5,5.6,3.9,3.2,0.1,75.1,87.8,88 +1280,26093,"Livingston County, Michigan",Livingston County, Michigan,47298,195143,94.1,0.5,43.8,4.9,1.8,79.4,19,NA,2.56,3.02,10.1,5.5,86.6,60982,96.2,39.2,75722,1.7,2.1,0.7,0.7,0.2,4.9,5.3,5.2,126515,49962,101315,6.6,3.3,3,2.1,1.4,0.1,85.5,91.6,92.2 +1281,26095,"Luce County, Michigan",Luce County, Michigan,29585,6325,77.6,8.2,44.6,4.6,2,83.4,23.1,NA,2.19,2.69,6,9.6,78.7,37125,92.7,19.3,2404,0.7,2.2,0.2,0,0.3,NA,NA,NA,69918,27631,54338,11.8,6.3,4.7,0,0,0,72.2,77.4,83.9 +1282,26097,"Mackinac County, Michigan",Mackinac County, Michigan,29685,10865,72,4.2,53.3,4,2.9,84.8,29,22.6,2.05,2.47,11.2,8.2,77.4,32474,92.2,23.5,5128,0.7,2.6,0.3,1.6,0.5,NA,NA,NA,74438,34862,58598,9.7,9.6,10.3,21,13.7,0.1,69,82.3,83.2 +1283,26099,"Macomb County, Michigan",Macomb County, Michigan,39015,877624,76.2,12.5,41.1,5.3,2.2,79.2,17.8,26.8,2.44,3.07,17.7,3.4,75,49832,90.8,27.2,356426,1.9,7.5,2,4.4,3.3,9.8,13.7,8.6,96605,39467,76399,5.4,5.2,5,2,2.8,0.4,79.8,89.3,92.5 +1284,26101,"Manistee County, Michigan",Manistee County, Michigan,31923,25247,89.3,3.4,50.3,3.9,2.7,83.1,27.4,NA,2.3,2.87,7.1,6.2,85.9,38022,90.3,23.4,10324,2.1,1.5,0.3,0.5,0.4,NA,NA,NA,81133,34636,60879,8.8,6.4,4.2,1.5,3.2,0.2,73.9,80.6,85.4 +1285,26103,"Marquette County, Michigan",Marquette County, Michigan,32536,66430,91.5,1.5,39.2,4.6,2.3,82.2,20,18.6,2.24,2.81,22.2,4.2,71.2,42986,95.5,35.8,27887,0.9,1.7,0.4,0.6,0.1,13.6,12.4,8.5,80432,34471,64675,8.9,4.6,3.7,2.5,1.7,0,80.2,86.4,83.8 +1286,26105,"Mason County, Michigan",Mason County, Michigan,32801,29177,92.3,1.1,47.2,4.6,2.6,80.1,25.6,19.9,2.32,2.86,14.1,8.6,78.1,39929,93.4,25,12426,2.2,1.3,0.7,0,0.6,NA,NA,NA,80155,34751,62296,8.4,4.5,6.1,1.7,3.2,0.3,75.6,85,84.1 +1287,26107,"Mecosta County, Michigan",Mecosta County, Michigan,29476,40321,90.9,2.3,40.6,5.2,1.6,80.4,20.2,23.9,2.33,2.84,11.8,14.9,75.9,39564,91.7,22.7,16312,1.7,2.2,0.5,0.1,0.3,19.2,22.7,9.3,70726,28744,57774,7.5,4.7,7.8,11.8,10.4,0.9,71.8,84.6,80.4 +1288,26109,"Menominee County, Michigan",Menominee County, Michigan,31562,23295,92.4,0.6,49.9,3.9,3.4,82.3,26.3,NA,2.29,2.95,12.1,6.8,80.4,43391,92.4,18,10011,0.5,2,0.3,0.1,0.5,NA,NA,NA,71229,32264,55688,10.5,5.6,5,3.4,2.7,0.1,68.6,77.3,82.6 +1289,26111,"Midland County, Michigan",Midland County, Michigan,40721,83641,90.8,1.4,41.8,5.4,2.5,78.8,19.8,24.4,2.38,2.92,13.3,7.2,78.2,52942,95,36.3,34608,1.6,1.9,1.1,0.1,0.5,10.9,13.3,9.1,102291,42734,77538,6.9,4.5,3.8,1.7,1.7,0.3,80.2,88.3,88.2 +1290,26113,"Missaukee County, Michigan",Missaukee County, Michigan,31279,15156,92.5,0.5,42.7,5.7,2.6,77.4,21.4,NA,2.61,3.11,3.5,13.4,83.7,39760,91.1,18,5750,1.4,1.8,0.2,0,0.5,NA,NA,NA,78686,30435,61868,7.5,7.1,9.2,10,8.9,0,68.4,83.5,84.2 +1291,26115,"Monroe County, Michigan",Monroe County, Michigan,39449,155001,90.9,2.2,42.6,5.1,1.9,78.9,19.3,26.6,2.46,3.01,11.2,7.6,81.2,52713,91.8,23.4,62509,1.9,1.8,0.6,0.5,0.4,11.1,14.4,7.3,96199,39303,75272,7.3,4.8,3.6,3.7,2,0.3,76.6,87.1,87.5 +1292,26117,"Montcalm County, Michigan",Montcalm County, Michigan,32294,67174,89,3.2,40.1,5.2,1.6,78.9,17.6,NA,2.67,3.19,8.6,14.2,82.2,41523,88.3,14.9,24153,2.1,1.6,0.7,0.1,0.6,12,15.8,8.9,76263,29442,64892,8.1,3.7,8.6,6.6,6.7,0.8,69.6,83.1,83 +1293,26119,"Montmorency County, Michigan",Montmorency County, Michigan,29681,9372,93.9,0.2,56.7,3.7,3.6,85.1,32.9,25.4,1.94,2.45,4.5,5.7,87.6,33646,89.4,16,4769,0.9,1.7,1.2,0.1,0.3,NA,NA,NA,61899,30306,47803,10.8,5.5,5.5,10.4,3.2,0,70.1,81.2,80.9 +1294,26121,"Muskegon County, Michigan",Muskegon County, Michigan,33698,175378,77.2,12.6,39.9,5.8,2.1,77.3,18,22.3,2.53,3.04,11.8,7.2,78.3,42096,92.5,21.4,67112,3.7,1,0.4,0.2,0.2,12.6,16.4,9.1,81923,32307,63495,7.6,6.7,4.8,2.3,2.8,0.3,71.1,86.6,86.5 +1295,26123,"Newaygo County, Michigan",Newaygo County, Michigan,32295,50414,89.9,0.7,42.8,5.4,2,77.9,20.2,NA,2.56,3.03,5.6,18.4,86.4,41762,89.7,18.4,19428,4.3,1.5,0.5,0.1,0.3,14.3,19.7,10.4,77086,30694,61931,7.7,4.2,6.9,6.5,6.6,0.2,72.5,83.9,82.7 +1296,26125,"Oakland County, Michigan",Oakland County, Michigan,49120,1272294,70.6,13,41.2,5.2,2.2,79.5,17.9,26,2.38,3.04,21.7,2.8,72.3,63583,94.9,50.2,528681,3.2,6.4,4.8,3,2.6,7.7,8.8,8.2,130332,55114,95296,4.7,4.5,3.9,1.6,2.2,0.5,85.8,92.1,93.6 +1297,26127,"Oceana County, Michigan",Oceana County, Michigan,31640,26788,88.4,0.9,43.9,5.1,1.9,78.3,21.8,NA,2.55,3.01,5.1,16.7,85.1,40011,90.6,21,10247,9.4,1.9,0.2,0.2,1.5,NA,NA,NA,79555,31577,63624,7.9,4.9,8.1,2.3,4.2,0.9,71.5,84.8,81.1 +1298,26129,"Ogemaw County, Michigan",Ogemaw County, Michigan,28643,20853,94,0.6,50.8,4.5,2.7,81.7,27.1,28.5,2.25,2.71,6.6,6.8,82.5,39004,89.7,15.9,9122,0.9,1.4,0.5,0.1,0.2,NA,NA,NA,68739,30529,51983,10.4,7.4,5.2,0.7,3.5,0.1,72.5,82.6,84.4 +1299,26131,"Ontonagon County, Michigan",Ontonagon County, Michigan,29845,5870,93.5,0.8,59.4,2.6,2.8,88.4,37.8,26.1,1.95,2.47,6.5,3.8,87.3,35410,94.1,16.7,2978,0.5,1.5,0.2,0.7,0.2,NA,NA,NA,64711,32741,51844,14.5,7.7,4.1,0,1.7,0.1,74.8,71.4,83.7 +1300,26133,"Osceola County, Michigan",Osceola County, Michigan,30693,23122,93.1,1.1,43.8,5.3,1.9,77.6,21.8,NA,2.5,2.98,5.5,15.4,83.7,40462,89.7,16.4,9072,1.4,2.5,0.4,0.3,0.6,NA,NA,NA,72359,29129,57050,10.2,6.6,9,17.2,11.4,0.2,67.8,84.1,79.8 +1301,26135,"Oscoda County, Michigan",Oscoda County, Michigan,28871,8338,94.2,0.4,52.1,5.3,3,80,28.5,26,2.27,2.87,4.2,11.1,86.7,33714,86.1,14.8,3648,1.9,4.7,0.4,0.1,0.4,NA,NA,NA,62776,27858,50581,10.7,8.6,13.2,17,19.3,0.5,64.4,76.5,78.7 +1302,26137,"Otsego County, Michigan",Otsego County, Michigan,35692,25352,93.7,0.9,44.5,5.1,2.2,79.1,21.7,NA,2.27,2.75,13.3,6.2,78,42349,93.9,25.8,10996,0.6,3.1,0.3,0.2,0.3,NA,NA,NA,84167,36269,67285,10.2,4.3,6.2,4.1,3.1,0,78.9,88.7,90.7 +1303,26139,"Ottawa County, Michigan",Ottawa County, Michigan,39523,298614,85.5,1.6,36.3,5.7,2.1,76.7,16.2,NA,2.62,3.08,17,5.4,78.5,52620,94.1,37.5,110019,5.7,1.9,1.9,0.3,1.5,8.2,7.1,6.5,110019,40682,87144,4.8,3,3.2,2.3,2,0.2,84,90.9,91.6 +1304,26141,"Presque Isle County, Michigan",Presque Isle County, Michigan,33605,13142,95.7,0.3,56.2,4,2.7,84.4,33.1,NA,2.05,2.56,3.6,5.2,89.7,41528,91.8,20.2,6316,1.1,3.1,0.3,0.3,0.7,NA,NA,NA,75785,36235,56713,12.3,5.8,5.6,6.9,7.4,0,68.2,78.5,82.9 +1305,26143,"Roscommon County, Michigan",Roscommon County, Michigan,32311,23639,93.7,0.6,57.4,3.6,3,85.5,33.8,24.7,2.04,2.53,4.2,8.4,84.3,39096,90.8,20.3,11475,0.8,0.9,0.4,0.1,0.7,NA,NA,NA,76109,37099,54106,11.2,5.2,4.6,0.9,2.1,0,73.1,81.5,87.4 +1306,26145,"Saginaw County, Michigan",Saginaw County, Michigan,32641,189210,71.7,18.9,41.1,5.6,2.6,78.5,19.9,NA,2.36,2.98,15.2,3.4,73.5,42541,91.1,23.4,77586,3,1.8,0.6,0.3,0.6,18.1,26.7,10.7,81912,33992,58347,6.6,6.3,4.1,1.5,1.6,0.4,72.9,86.5,88 +1307,26147,"St. Clair County, Michigan",St. Clair County, Michigan,36082,160089,91.6,2.3,44.3,4.9,2.2,79.5,19.8,28.7,2.38,2.88,10.9,6.5,80.5,46163,92.1,20.3,66618,1.5,1.5,0.4,0.3,0.4,11,14.7,7.9,88904,37100,69349,7.1,5.9,4.8,2.6,2.7,0.3,75.5,86.9,89.6 +1308,26149,"St. Joseph County, Michigan",St. Joseph County, Michigan,34397,60870,87.2,2.2,39.8,6.2,1.8,75.6,18.5,21,2.55,3.12,13.2,7.3,75.2,42091,86.3,17.1,23610,5.7,3.9,0.6,0.3,0.8,12,14.3,8.7,78907,31170,64707,7.1,4.8,9.6,9.5,7.1,0.4,70.1,84.5,86.6 +1309,26151,"Sanilac County, Michigan",Sanilac County, Michigan,32521,40574,93.8,0.4,45.3,5,2.3,78.8,22.6,NA,2.29,2.81,7.2,8.8,81.7,40147,90.7,16,17451,2.6,2.2,0.3,0.3,0.9,14,23.1,9.3,76203,32523,59074,7.8,5.4,8.1,13,11,0.2,67.9,82.5,83.5 +1310,26153,"Schoolcraft County, Michigan",Schoolcraft County, Michigan,31193,8093,84.3,0.6,52.1,4.4,3,82.3,28.2,NA,2.08,2.57,6.3,4.3,85.4,39375,89.7,20.7,3821,1,2.3,0.2,0.1,1.3,NA,NA,NA,75970,35744,57708,9,6.4,7.2,13.9,8.7,0,72.9,81,84 +1311,26155,"Shiawassee County, Michigan",Shiawassee County, Michigan,35877,68061,94.8,0.6,43.1,5.3,2.3,79.1,19.5,27.9,2.44,3,11.3,5.4,79.3,45440,92.7,19.5,27618,1.4,0.9,0.4,0.3,0.2,11.7,16.4,6.9,82060,34107,64464,7.6,3.9,4.5,2.6,2.6,0.1,73.9,86.7,86.7 +1312,26157,"Tuscola County, Michigan",Tuscola County, Michigan,32446,53071,93.6,1.1,44.6,5,2.2,79.7,21.5,NA,2.43,2.98,6.5,8.4,85.2,42891,92.2,15.5,21472,1.6,1.5,0.3,0.2,0.3,12.6,15.1,10.2,75231,31511,62847,7.3,5.8,4.8,2.5,1.9,0.2,70.9,82.2,82.5 +1313,26159,"Van Buren County, Michigan",Van Buren County, Michigan,34406,75681,81.9,3.5,41.2,5.7,1.9,76.8,19.4,NA,2.48,2.95,9.6,12.1,80.5,43902,88.8,22.9,30101,8.1,1.9,0.5,0.1,2.1,13.8,17.3,11.5,82494,33243,66902,6.5,3.8,7.4,4.9,4.5,0.4,76.5,86.9,87.9 +1314,26161,"Washtenaw County, Michigan",Washtenaw County, Michigan,42565,368394,69.9,11.6,34.8,4.6,1.5,81.6,15.3,23.4,2.34,2.96,30.9,3.9,61.6,57977,95.8,58.1,149256,3.9,5.8,6.3,2.3,2.8,13.8,12.5,5.9,122847,51746,87156,4.2,4,3.3,0.9,2,0.3,88.5,93.6,93.7 +1315,26163,"Wayne County, Michigan",Wayne County, Michigan,34243,1773767,50,37.2,37.8,6.3,1.9,76.3,16.1,25,2.53,3.35,20.8,1.8,64.5,45354,87.9,26.9,693446,4.2,3.8,1.5,5.2,3,20.1,29.7,13.7,83852,33956,59521,5.1,8.4,5.7,2.1,2.8,0.7,72.5,88,87.8 +1316,26165,"Wexford County, Michigan",Wexford County, Michigan,32876,33868,92.4,1,42.2,5.7,2.2,77,20.2,22.5,2.49,2.95,8.7,13.1,81.4,42334,90,21.2,13428,1.2,2.2,0.2,0.1,0.2,NA,NA,NA,80750,32302,63123,9.5,5.3,6.5,3.4,4.5,0.1,73,87.3,86.3 +1317,27001,"Aitkin County, Minnesota",Aitkin County, Minnesota,32177,15930,93.5,0.7,56.5,3.7,4,84.1,33.9,NA,2.26,2.85,6.6,9,85.3,41148,93.6,19,6935,0.6,1.2,0.1,0.8,0.1,NA,NA,NA,75979,35185,59498,10.5,5.9,5.5,2.3,3,0.1,71.7,81.1,83.3 +1318,27003,"Anoka County, Minnesota",Anoka County, Minnesota,48098,367095,77.2,8.3,38.8,6,1.3,76.2,15,26,2.67,3.17,14.5,3.3,80,58777,94.2,31.7,136171,3.4,2.5,3.4,4.1,2.4,6.6,8.2,7.5,116995,44418,98764,6.4,3.6,4.4,1.4,2.3,0.2,85.4,91.1,93.6 +1319,27005,"Becker County, Minnesota",Becker County, Minnesota,38309,35260,86.2,0.8,43.2,5.6,2.6,76.3,22.2,21.8,2.41,3.01,12.9,7.6,77.8,45618,93.3,27.5,14404,1.5,1.2,0.5,1.4,0.5,NA,NA,NA,97828,40834,71117,9.4,3.8,6.5,3.4,4.9,0.3,72.7,87.4,88 +1320,27007,"Beltrami County, Minnesota",Beltrami County, Minnesota,35118,46421,70.9,1.4,35.1,6.5,2.3,75,17,NA,2.48,2.99,16.8,10.3,69.5,47092,92.8,32.3,17908,0.9,1,0.5,4.1,0.2,16,19.3,10,87814,34429,67257,7.7,4.8,7.8,8.1,7.6,0.2,77.9,86.5,90.2 +1321,27009,"Benton County, Minnesota",Benton County, Minnesota,41379,41458,87.3,3.9,36.7,6.6,2.1,74.5,13.9,22.7,2.45,3.08,25.3,6.4,67.9,52174,92.3,24.5,16494,2,1.6,0.9,1.6,1.2,NA,NA,NA,89846,36935,71480,6.3,4.1,3.9,0.3,1.3,0.1,77.1,88.7,89.9 +1322,27011,"Big Stone County, Minnesota",Big Stone County, Minnesota,33026,5152,94.9,0.2,47.4,6.2,5.9,77.9,26.5,19.4,2.27,2.92,9.8,3.8,79.4,41745,93.3,21.3,2179,1.1,1.4,1,0.4,0.8,NA,NA,NA,84183,36923,65475,7.4,2.9,3.4,2.6,2.8,1,77.2,84.8,89 +1323,27013,"Blue Earth County, Minnesota",Blue Earth County, Minnesota,34278,69386,86.8,4.6,31.5,5.2,2,80.1,14.7,NA,2.4,2.91,28.2,4.1,61.8,49763,95,34.5,27183,3.2,1.4,2.4,2.2,1,16.3,12.8,7,91392,36299,72623,4.8,3.7,4.6,3.4,2.4,0,84.6,90.8,87.6 +1324,27015,"Brown County, Minnesota",Brown County, Minnesota,40509,25826,94.2,0.8,42.4,5.6,4,78,21.8,15.3,2.25,2.84,13.6,3.2,79.4,48541,92.9,24.2,10946,3.4,1.9,0.7,0.2,1.6,NA,NA,NA,84690,36580,68690,5.9,2.4,3.9,2,2.6,0,75.8,83.6,86.4 +1325,27017,"Carlton County, Minnesota",Carlton County, Minnesota,41818,36457,88,2.1,41.7,5.1,2.2,78,18.2,NA,2.4,2.93,11.2,5.7,79.4,52562,93.5,25.5,13972,0.9,1.9,0.3,1.3,0.4,NA,NA,NA,95960,37608,80042,7.9,3.8,4.8,1.4,2.5,0.2,73.1,87.6,85.9 +1326,27019,"Carver County, Minnesota",Carver County, Minnesota,57303,108622,87.8,1.5,38.9,6,1.6,74.3,13.8,NA,2.68,3.12,12.2,2.2,81.7,72306,96.3,50.5,40231,3.4,2.9,2.5,0.6,0.9,NA,NA,NA,154466,58254,123144,4.9,3,2.2,0.6,1.4,0.4,89.4,92.7,94.3 +1327,27021,"Cass County, Minnesota",Cass County, Minnesota,34842,30688,81.7,0.4,49.7,4.8,2.2,79.7,26.8,NA,2.37,2.89,6.1,8.4,84.9,40814,94.4,25.4,12768,1.2,1,0.7,1.8,0.3,NA,NA,NA,86129,36470,64937,10.2,5.6,7.1,9.9,7,0.3,74.9,86.6,86.1 +1328,27023,"Chippewa County, Minnesota",Chippewa County, Minnesota,36719,12388,85.2,0.9,41.8,6.2,3.2,76.4,21.4,NA,2.31,3.01,16.1,2.2,71.4,44403,90.1,19.6,5196,5.2,0.7,2,0.2,1.8,NA,NA,NA,83510,35205,69192,8.5,3.1,7.3,4.1,3.9,0,70.6,84.5,86.4 +1329,27025,"Chisago County, Minnesota",Chisago County, Minnesota,47620,57434,91.7,1.2,40.8,5.6,1.9,77.4,16.6,31.6,2.62,3.06,8.1,4.5,85.6,58406,95.6,24,21252,2.6,1,1,0.2,0.4,NA,NA,NA,113914,43265,98260,7.7,3.5,4,2.4,2.5,0.1,82.2,89.2,91.8 +1330,27027,"Clay County, Minnesota",Clay County, Minnesota,41767,65628,86.3,4.8,33.5,6.5,2.1,75.2,13.9,19.5,2.41,3.07,27.2,1.9,66.6,53270,95,39,25939,2.7,2.4,1.4,2.6,0.6,14.4,16.1,8.7,96841,38791,77664,5.4,3.3,3.6,0.7,1.8,0,82,88.9,88 +1331,27029,"Clearwater County, Minnesota",Clearwater County, Minnesota,35150,8579,84.5,0.2,41.8,6.1,3.1,75,20.9,NA,2.6,3.18,9.1,13,81.1,43567,88.5,18.3,3245,1.9,2.9,0.4,1.7,0.3,NA,NA,NA,82595,32682,64934,9.2,7.6,12.4,12.7,15.5,1.7,71.4,81.4,85.3 +1332,27031,"Cook County, Minnesota",Cook County, Minnesota,40363,5633,85.1,0.5,52.3,3.8,2.6,85,30.2,NA,2.06,2.57,10.3,2,79.6,43377,97.3,45.6,2700,1.9,2.6,0.3,1.6,0.6,NA,NA,NA,93449,45390,71643,7.9,2.6,5.8,8.3,7,0,84.1,83.2,92.1 +1333,27033,"Cottonwood County, Minnesota",Cottonwood County, Minnesota,35926,11458,82.8,1.8,41.3,6.3,3.7,74.8,22.6,NA,2.38,3.01,10.8,0.2,76.1,42427,92.4,22.9,4659,6.1,1.1,3.3,0,3.8,NA,NA,NA,83505,34105,68239,6.1,3.7,5.4,2.3,3.7,0,73.7,84.7,83.5 +1334,27035,"Crow Wing County, Minnesota",Crow Wing County, Minnesota,38321,67113,94.2,0.6,45.4,5,3,79.2,23.8,NA,2.29,2.83,15.6,4.2,77.4,46434,94.6,28.6,28778,0.9,1.3,0.6,0.2,0.3,9.7,12.2,8.5,92518,40308,71343,8.5,5.1,5.7,4,4.3,0.4,79.4,88.7,87.8 +1335,27037,"Dakota County, Minnesota",Dakota County, Minnesota,52699,442204,76,7.3,38.4,6.1,1.8,75.8,15.4,24.1,2.56,3.1,21.5,1.8,75.4,64523,95.5,44.6,171630,5.3,2.7,3.5,3.1,2.2,5.6,6.4,6,129420,50901,105212,6.2,3.4,3.8,2.5,2.5,0.3,88.1,92.3,93.8 +1336,27039,"Dodge County, Minnesota",Dodge County, Minnesota,48015,20962,91.3,1,38.5,6.3,1.7,74.5,15.3,24.8,2.59,3.02,6.4,5,87.7,57609,95,29.7,8018,5.6,1.4,0.3,0.3,0.6,NA,NA,NA,113969,43903,92943,5.8,2.5,5.4,2.4,3.5,0,80.4,89.3,90.5 +1337,27041,"Douglas County, Minnesota",Douglas County, Minnesota,41438,39354,95.2,0.5,44.3,5.7,2.9,78.5,23.9,NA,2.22,2.74,17.3,3.4,76.4,50536,96,29,17416,1.7,1,0.5,0,0.3,NA,NA,NA,99168,43543,77264,8.2,2.3,4,1.9,2.4,0.1,78.1,87.8,87.1 +1338,27043,"Faribault County, Minnesota",Faribault County, Minnesota,36424,13909,89.8,0.6,44.6,5.1,3.4,78.1,23.2,NA,2.21,2.71,10.5,0.6,78,43812,92,21.6,6170,6,0.8,0.5,0,1.2,NA,NA,NA,83306,36782,64391,8.1,3.7,5.3,2.4,5.1,0.3,73.2,84.6,84 +1339,27045,"Fillmore County, Minnesota",Fillmore County, Minnesota,40333,21346,95.3,0.6,42.3,5.7,3.8,75.5,21.8,25.9,2.42,2.95,9.1,2.9,82.4,48253,92.8,23.7,8626,1.5,3,0.5,0.2,1.2,NA,NA,NA,91634,37134,75225,7.1,2.9,7.8,11.3,9.6,0.3,76.9,82.3,85.2 +1340,27047,"Freeborn County, Minnesota",Freeborn County, Minnesota,37939,30752,84.9,1.3,43.9,5.2,3.9,78,22.8,20.5,2.34,2.94,13.1,1.9,79.3,47950,89.9,18.1,12885,5.3,0.9,2,0.1,1.6,NA,NA,NA,90460,38696,69012,8,3.7,5.7,2.2,2.1,0.3,73.4,83.7,84.9 +1341,27049,"Goodhue County, Minnesota",Goodhue County, Minnesota,43459,47844,90.3,1.6,42.3,5.5,2.7,77.9,20.1,24.7,2.38,2.97,17.3,5.4,78,51691,93.7,27.9,19631,2,0.8,0.5,0.4,0.8,NA,NA,NA,100638,42254,82749,8,3.5,5.2,4.9,2.7,0.1,78.5,86.8,90.8 +1342,27051,"Grant County, Minnesota",Grant County, Minnesota,35726,6108,94.1,0.5,43.7,5.6,2.8,76.7,23.2,23.4,2.39,2.9,9.6,2.9,79,44570,94.3,19.1,2521,2.4,1,0,0.4,0.3,NA,NA,NA,92164,38893,72957,7.7,3.3,4.3,1.1,4.2,0,78.8,88.8,86.6 +1343,27053,"Hennepin County, Minnesota",Hennepin County, Minnesota,51350,1268903,67.6,13.3,37.4,6,1.9,78.2,15.1,22.4,2.32,3.04,37.7,0.3,63,62655,94,53.3,534573,5.3,4.1,4.5,4.5,3.1,10,11.7,8.6,135302,57633,96339,4.7,3.9,4.5,1.8,2.8,0.4,87,92.3,92.2 +1344,27055,"Houston County, Minnesota",Houston County, Minnesota,43166,18768,94,0.4,45,5,3.2,78.4,23.2,NA,2.29,2.9,8.2,2.8,84.1,52942,94.4,28,8074,2.4,2,1,0,0.1,NA,NA,NA,95566,41820,77087,6.8,1.5,3.7,2,4,0,75.9,84.3,86.6 +1345,27057,"Hubbard County, Minnesota",Hubbard County, Minnesota,36137,21700,91.1,0.5,48.3,5.2,2.9,78.9,26.1,NA,2.41,2.93,9.2,8.9,82.6,44840,94.6,30.5,8885,1.3,1.9,0.5,1.1,0.3,NA,NA,NA,91194,38262,70622,10.3,4.6,5.2,3.4,3.5,0.4,77.7,84.3,86.8 +1346,27059,"Isanti County, Minnesota",Isanti County, Minnesota,43145,41934,92.5,1,40.1,5.8,1.8,76.8,16.8,NA,2.62,3.07,10.1,2.9,83.8,54257,92.3,19.6,15875,2.3,1.6,1.2,0.4,0.5,NA,NA,NA,101811,40123,86573,8,4.1,5.4,3,3.8,0.2,78.6,89.4,90.1 +1347,27061,"Itasca County, Minnesota",Itasca County, Minnesota,33850,45141,89.4,0.7,46.9,4.9,2.9,79.7,25.2,24.1,2.37,2.86,12.6,7.6,81.9,44759,94.7,25.1,18510,1,1.2,0.4,0.6,0.1,12.7,16.9,9,85747,36315,66380,9.8,5.9,5,2.2,3.2,0.1,75.6,84.8,86.9 +1348,27063,"Jackson County, Minnesota",Jackson County, Minnesota,40297,9964,92,0.6,44.5,5.9,4.2,77.9,23,NA,2.22,2.9,9.1,1.3,81.3,48138,93.9,24.9,4421,3.1,1.8,0.8,0.2,1.2,NA,NA,NA,87597,39494,69955,8.9,1.3,3.6,0.3,0.8,0.4,76.2,84.1,88.1 +1349,27065,"Kanabec County, Minnesota",Kanabec County, Minnesota,36043,16261,94.5,0.5,44.5,5.2,2.2,78.6,21.4,NA,2.47,2.94,6.2,12,83.8,45503,91.2,15.8,6475,1.3,1.1,0.7,0,0.2,NA,NA,NA,87243,35290,71915,9.8,5.1,5,3.6,5.3,0.4,69.7,81.7,83.9 +1350,27067,"Kandiyohi County, Minnesota",Kandiyohi County, Minnesota,38952,43757,81.1,5.6,39.8,6.6,2.8,75.4,20,NA,2.43,2.95,19.3,2.3,72.1,44929,90.8,27.1,17450,9.6,1.2,0.8,3.1,4,NA,NA,NA,93123,37618,75097,6.2,3.9,6.9,5.2,8.4,0.1,74.2,89.6,87.4 +1351,27069,"Kittson County, Minnesota",Kittson County, Minnesota,39248,4163,93.8,0.6,48.4,5,4.7,78.5,26.4,21,2.22,2.82,11.8,4.4,82.4,46997,95.9,28,1758,3.6,2.3,0.5,0.3,0.9,NA,NA,NA,87046,37697,69615,8,2.2,3.8,3.3,4,0,77.4,83.8,86.1 +1352,27071,"Koochiching County, Minnesota",Koochiching County, Minnesota,39178,11950,90.2,0.6,50.5,4.4,3.7,82.3,27.6,16.3,2.03,2.56,9,8,82,49132,93.5,20.3,5710,0.6,0.3,0.3,1.4,0,NA,NA,NA,85803,40221,69115,8.1,3,5,2.2,3.2,0,74.3,81.3,86.9 +1353,27073,"Lac qui Parle County, Minnesota",Lac qui Parle County, Minnesota,38153,6694,93.9,0.6,47.7,5.2,4.8,78.3,27.2,17.3,2.27,2.82,7,1.2,83,44143,95.2,22.1,2881,2.1,1.4,0.8,0.1,0.9,NA,NA,NA,91856,40282,71639,7.9,1.5,3.8,3.4,2.9,0.2,76.2,80.8,84.5 +1354,27075,"Lake County, Minnesota",Lake County, Minnesota,40791,10911,95.5,0.4,49.6,4.5,4.1,80.9,27.4,NA,2.12,2.61,10.1,3.3,84,49320,93.2,25.8,5030,1.3,0.4,0.3,0.7,0.2,NA,NA,NA,87480,40666,75621,7.9,2.3,4.9,0.7,3.5,0,79.2,82.2,85.7 +1355,27077,"Lake of the Woods County, Minnesota",Lake of the Woods County, Minnesota,36929,3800,90.7,0.3,50.8,5.4,2.3,81.2,25.6,18.4,2.25,2.91,7.7,14.5,84.3,50319,96.1,21.4,1665,1.3,1.5,0,0.4,0,NA,NA,NA,85860,39814,70091,9.6,1,4.4,0,5.5,0,72.3,82.8,87.7 +1356,27079,"Le Sueur County, Minnesota",Le Sueur County, Minnesota,45763,28936,91.6,0.9,41.4,5.7,1.8,76.8,18.4,NA,2.48,2.97,11.3,1.3,81,53833,95,25.4,11499,4.8,1.5,0.4,0,1.2,NA,NA,NA,107148,43236,90218,7.8,3.7,5.7,5,6.7,0.2,78.7,88.3,88.4 +1357,27081,"Lincoln County, Minnesota",Lincoln County, Minnesota,36892,5594,95.5,0.2,45,5.8,4.8,77,24.2,NA,2.22,2.86,8,1.1,82.1,46983,94.3,24.4,2435,1.6,0.5,1.6,0.1,0.4,NA,NA,NA,89386,38390,67715,7.8,1.7,5.3,2.5,2.3,0.2,76,83.2,88 +1358,27083,"Lyon County, Minnesota",Lyon County, Minnesota,39254,25498,83.5,2.5,37.3,7.4,2.3,74,17.1,NA,2.45,3.1,20.8,1.6,70.5,48451,91.9,28.6,10003,4.8,2.2,2.9,0.5,2.7,NA,NA,NA,92902,37201,72761,6.7,3,6.4,4.5,5.9,0.2,78.8,87.7,88.9 +1359,27085,"McLeod County, Minnesota",McLeod County, Minnesota,42475,36771,91.3,0.5,41.5,5.4,2.8,77.7,19.7,NA,2.42,3.03,16.3,4.9,77.8,52575,93.5,19.6,14971,4.3,1,0.5,0.2,0.9,NA,NA,NA,98060,41336,78468,6.8,2.6,5.2,0.9,3.4,0.3,80.1,86.1,87.5 +1360,27087,"Mahnomen County, Minnesota",Mahnomen County, Minnesota,31429,5371,45.3,0.2,35.2,7.9,2.5,68.9,17.5,20.5,2.83,3.44,10.6,8.6,72.5,41482,86.7,14.3,1871,0.7,1.7,0.6,7.9,0.9,NA,NA,NA,70590,25533,53925,5.8,9.2,12.3,8.7,11.6,0.4,60.8,82,83.6 +1361,27089,"Marshall County, Minnesota",Marshall County, Minnesota,43268,8961,93.2,0.3,43.2,5.6,3.5,76.6,22.6,23.6,2.36,2.98,7.7,10.2,85.2,51117,92.8,18.9,3740,3,1.7,0.4,0.4,0.6,NA,NA,NA,85400,36889,71701,7.2,2.3,3.9,1.5,1.8,0.1,73.5,82.1,86.4 +1362,27091,"Martin County, Minnesota",Martin County, Minnesota,38620,19864,93.1,0.8,44.5,5.6,4.5,77.4,24,17.6,2.2,2.8,16.5,2.4,72.4,46182,94.7,23.8,8840,3.3,1.3,1,0.3,1.1,NA,NA,NA,84513,37466,62969,8.8,3.8,4.5,3.5,4.4,0.1,74.7,81.3,85.8 +1363,27093,"Meeker County, Minnesota",Meeker County, Minnesota,40432,23422,94.4,0.2,42.3,5.7,2.7,76,20.8,NA,2.52,3.07,10.5,5.6,81,49730,93.7,20.4,9141,2.5,0.7,0.1,0.1,0.5,NA,NA,NA,92101,37014,75037,6.5,2.6,5.7,5.7,4.6,0.6,78.3,85.5,87.5 +1364,27095,"Mille Lacs County, Minnesota",Mille Lacs County, Minnesota,37105,26912,89.3,0.3,41.2,5.8,2.2,76.6,18.4,30.8,2.46,3.02,12.1,8.2,77.7,47098,91.3,17.6,10739,1.5,0.8,0.4,1.6,0.3,NA,NA,NA,87091,35500,71455,8.3,4.4,5.1,4.5,4,0.2,71.4,86.4,86.7 +1365,27097,"Morrison County, Minnesota",Morrison County, Minnesota,37290,34131,95.3,0.3,42.2,5.4,2.4,76.8,20.6,NA,2.42,2.92,9.5,5.1,80.9,47082,92.8,19,13860,1.4,1.5,0.9,0.1,0.2,NA,NA,NA,87320,36378,68640,8.9,3.5,4,0.9,1.8,0.4,74.3,82.9,84.6 +1366,27099,"Mower County, Minnesota",Mower County, Minnesota,41149,40069,78.9,3.5,38.9,6.5,2.6,74.4,18.4,20.2,2.52,3.03,15.5,2.2,76,46885,89.7,23.5,15570,9.1,2.2,3.3,1.5,5.1,NA,NA,NA,91617,35609,71495,7.7,3.4,6.1,3.6,5.7,0.4,73.4,88.8,87.7 +1367,27101,"Murray County, Minnesota",Murray County, Minnesota,39249,8119,91.2,0.6,46.6,5,4.2,78.3,26,20.8,2.22,2.72,6.3,1.3,81.8,46832,90.9,23.9,3601,4.1,0.9,1.1,0.2,1.3,NA,NA,NA,90524,40277,74475,7.7,2.1,4.5,2.5,3.4,0.2,71.5,83.6,82.3 +1368,27103,"Nicollet County, Minnesota",Nicollet County, Minnesota,40557,34350,87.5,3.5,37.8,5.4,2.4,78.4,17.2,NA,2.39,3,21.4,4.5,72.3,50792,95,35.7,12984,3,2.1,0.5,1.5,1.8,NA,NA,NA,109919,43268,80362,5.7,1.6,3.7,3.9,3.4,0,81.4,87.7,87.5 +1369,27105,"Nobles County, Minnesota",Nobles County, Minnesota,37008,22067,61,5.2,36.3,8.4,2.4,71.5,17.3,19.2,2.8,3.46,14.6,2.9,71.9,44792,77.8,17.7,7689,21.4,0.5,4.3,4.6,10.9,NA,NA,NA,83658,30310,65509,5.3,2.4,13.6,10.6,11.5,0.1,67,84.8,86.5 +1370,27107,"Norman County, Minnesota",Norman County, Minnesota,39850,6411,89.8,1.1,43.9,5.8,3.4,76.7,21.5,24.1,2.34,2.91,8.2,4.1,81.6,46926,93.4,20.9,2676,2.5,1,1.4,0.9,0.3,NA,NA,NA,87596,37681,69833,7.8,5.7,5.9,5.2,5.3,0.2,73.5,84,86.7 +1371,27109,"Olmsted County, Minnesota",Olmsted County, Minnesota,49738,163425,78.7,7.2,37.8,6.4,2.2,75.8,16.3,NA,2.41,2.99,23.6,2.5,70.7,60627,95,48.5,66629,4.3,3.4,5.1,3.9,2.9,7.9,7.7,7,128162,52059,93494,6,3.4,3.9,1.7,3.4,0.5,85.2,90.5,91.4 +1372,27111,"Otter Tail County, Minnesota",Otter Tail County, Minnesota,38209,60281,91.8,1,46.3,5.4,3.1,78.2,24.8,NA,2.34,2.91,13.7,4.5,79.2,47045,94,27.4,25181,2.8,1.2,0.2,0.6,0.8,8.9,9.4,9.1,90657,38723,70912,8.1,5.3,5.6,3.6,4.2,0.3,74.6,85.2,85.9 +1373,27113,"Pennington County, Minnesota",Pennington County, Minnesota,42395,13877,91,1.2,40.2,5.9,2.1,77.8,18.8,13.6,2.2,2.88,19.5,12,71.3,49911,94.6,19.3,6170,3.2,3.1,0.8,0.2,0.1,NA,NA,NA,90522,39863,72561,6.1,2.7,4,3.4,2.2,1.2,75.8,87,89.8 +1374,27115,"Pine County, Minnesota",Pine County, Minnesota,36559,29411,89.6,2.3,45.8,4.6,2.4,80.7,21.8,32.7,2.35,2.85,8.6,10.8,82.7,45391,91.4,16.3,11913,1.7,1.1,0.6,0.5,0.1,NA,NA,NA,82355,34104,69666,9.1,5.7,5.6,2.9,3.7,0.2,71.8,84.4,85.3 +1375,27117,"Pipestone County, Minnesota",Pipestone County, Minnesota,36711,9352,87.1,1.9,39.8,7.2,3.3,73,20.6,NA,2.31,3.01,8.9,1.6,81.5,43537,92.6,21.6,3971,4.5,0.7,0.7,0.4,0.9,NA,NA,NA,87296,36551,66073,7.6,3.2,6.4,0.9,2.7,0.4,73,85,85.7 +1376,27119,"Polk County, Minnesota",Polk County, Minnesota,39836,30905,87,2.2,39.5,6.3,2.7,75.3,18.9,18.7,2.38,3,19.1,5.1,72.1,49293,93.2,28.1,12448,3.5,1.7,0.2,1.3,1.1,NA,NA,NA,87199,36332,69136,6.9,3.4,4.9,5.7,6.9,0.2,75.8,87.2,89.2 +1377,27121,"Pope County, Minnesota",Pope County, Minnesota,40037,11363,94.6,0.6,45.6,5.2,3.6,78.6,25.1,22.2,2.24,2.75,10.4,2.3,82.7,48323,94.9,23.8,4987,1.3,1.8,0.6,0.1,0.2,NA,NA,NA,90462,40027,72205,9.1,0.9,3.4,1.3,2.3,0,76.5,85.6,86.1 +1378,27123,"Ramsey County, Minnesota",Ramsey County, Minnesota,43724,544438,60.7,12.2,35.9,6.4,2,76.8,15.4,22.5,2.41,3.2,37.6,1.4,61,54039,91.5,45.5,219075,5.4,3.1,8.6,4.1,4.6,12.4,17.6,9.1,110836,45193,81004,4.7,4.1,5.2,2.4,3.3,1,82.7,90.1,91.7 +1379,27125,"Red Lake County, Minnesota",Red Lake County, Minnesota,41847,3922,92.5,0.6,42.8,6,3.5,75.7,22.1,25,2.36,2.93,8.2,8.7,83.8,50234,95.4,17.6,1650,1.8,1.9,0.2,0.2,0.4,NA,NA,NA,88135,36616,77500,9.3,1.2,2.5,0,0.5,0,73.5,79.9,81.8 +1380,27127,"Redwood County, Minnesota",Redwood County, Minnesota,36179,15383,86.4,0.6,41.1,6.4,3.5,75.2,22.1,NA,2.44,3.06,10.2,3.7,79.7,45820,92.6,20.8,6156,1.7,0.8,2,0.7,0.8,NA,NA,NA,82811,33771,67024,5.8,2,6.9,8.5,7.1,0.5,74.7,85.3,83.8 +1381,27129,"Renville County, Minnesota",Renville County, Minnesota,37347,14587,87.5,0.9,42.1,5.6,3.3,76.5,21.5,20.5,2.38,2.99,10.1,2.1,79.4,47204,91.5,18.4,5965,5,0.9,0.2,0.2,0.6,NA,NA,NA,86499,36131,69086,6.9,2.1,4.2,1.2,2.1,0.4,71.7,83.1,83.4 +1382,27131,"Rice County, Minnesota",Rice County, Minnesota,38114,67389,80.3,6.5,37.1,5.5,1.9,78.4,16.4,22.5,2.54,3.14,19.3,4.2,75.9,50198,93,29.7,23345,7.9,1.7,0.7,4,6.2,9.3,10.6,7.5,104482,38276,82792,6.4,4.4,6.4,1.5,4,1.3,75.6,89.1,92 +1383,27133,"Rock County, Minnesota",Rock County, Minnesota,40139,9628,94.2,0.2,41.1,5.7,2.5,75.4,20,19.9,2.37,2.94,10.4,1.3,76,47485,93.3,26.3,3956,2.6,1.3,1.2,0.3,0.5,NA,NA,NA,91836,38201,70698,6.6,2.7,4.9,1.9,2.8,0,79,87.9,89.1 +1384,27135,"Roseau County, Minnesota",Roseau County, Minnesota,42149,15301,89.5,1,42.3,5.4,2.4,76,18.5,17.4,2.49,3.04,14.2,12.4,80.8,50308,93,20.5,6058,1.6,1.3,2,0.2,1.5,NA,NA,NA,88644,36987,73611,7.3,3.9,4.3,2.2,3.6,0,73.8,87.2,84.5 +1385,27137,"St. Louis County, Minnesota",St. Louis County, Minnesota,36463,200056,90.5,1.6,41.3,4.7,2.5,81.2,20.8,20.1,2.22,2.84,20.9,3.7,72,49481,95,32.5,86264,1.4,1.6,0.6,0.8,0.5,13.4,12.7,9.7,90610,39778,69455,7.2,4.3,3.6,1.6,1.8,0.1,76.7,87,87.6 +1386,27139,"Scott County, Minnesota",Scott County, Minnesota,54953,152957,78.6,5.2,37.3,6.1,1.3,73.6,12.3,NA,2.79,3.19,10.9,1.5,84.3,66961,95,43.1,54238,4.8,2.8,4.5,2.7,2.2,4.1,4.4,5.9,150088,53499,120247,4.9,2.9,3.4,1,1.9,0.2,89,93.1,94.4 +1387,27141,"Sherburne County, Minnesota",Sherburne County, Minnesota,50025,99178,87.8,3.7,36.9,6.5,1.5,74,12,NA,2.78,3.24,12.1,1.2,84.2,60882,94.4,28.1,34951,3.1,1.3,0.9,1.7,0.4,4.8,3.5,8.6,121697,44241,102965,6.5,3,3.7,2.1,1.8,0.5,85.2,91.4,93 +1388,27143,"Sibley County, Minnesota",Sibley County, Minnesota,41675,14933,89.4,1,42.2,5.8,3.1,77.2,19,NA,2.51,3.15,10.5,2.3,81.3,48916,92.5,18.6,5884,5.1,1.5,0.2,0.1,1.6,NA,NA,NA,95336,38862,76082,5.6,4.3,4.2,1.7,2,0.2,71.7,85,85.8 +1389,27145,"Stearns County, Minnesota",Stearns County, Minnesota,37925,159358,82.9,8.4,35,6.4,1.9,76.4,15.8,22.1,2.49,3.1,25.1,1.9,67.8,49968,92.8,28.6,60937,3.4,2.3,1.8,4.2,1.7,12.2,12.5,10,97399,37806,76447,6.6,4.2,4.6,3.5,2.9,0.3,79.1,88.3,89.2 +1390,27147,"Steele County, Minnesota",Steele County, Minnesota,43648,37413,86.9,3.5,40.2,5.4,3,75.4,18.7,19,2.45,3,14,4,79.9,53750,93.7,29.7,15001,4.5,1,0.6,1.2,1.8,NA,NA,NA,101912,41392,83448,7.2,2.4,3.6,3.2,2.3,0,78,88,87.7 +1391,27149,"Stevens County, Minnesota",Stevens County, Minnesota,38151,9686,83.1,1.8,33.6,6.1,2.6,77.6,16.7,13.6,2.4,3.07,18.1,2.8,66.7,50336,93.2,30.8,3835,9.7,0.3,1,1.3,3.2,NA,NA,NA,103377,40441,71060,3.5,1.3,4.9,3.2,3.8,0,75.5,86.8,89.5 +1392,27151,"Swift County, Minnesota",Swift County, Minnesota,38608,9787,90,0.7,43.4,5.6,4,76.6,23.5,NA,2.31,2.85,13.7,2.4,74.3,47537,94.5,23,4134,4.1,1.8,0.5,0.1,0.9,NA,NA,NA,84897,36519,62601,6,4.4,6.4,6.5,4,0.1,74.7,82.3,83 +1393,27153,"Todd County, Minnesota",Todd County, Minnesota,36091,25402,87.9,0.7,42.8,6.6,2.3,75.6,22.2,24.8,2.49,3.01,7.5,7,83.1,42165,88.9,15.2,10049,5.8,4,0.6,0.2,3.3,NA,NA,NA,79344,32283,63039,8.1,4.3,9.4,14.9,14.7,0.7,64.1,80.6,79.1 +1394,27155,"Traverse County, Minnesota",Traverse County, Minnesota,35981,3279,87,0.5,45.5,6.4,6.5,78.2,25.3,NA,2.25,3.01,11.5,2.4,79.8,45481,94.7,17.5,1410,3.2,2,0.5,2.3,0.6,NA,NA,NA,85746,38451,65931,7.4,3.4,3.2,1.2,1.2,0.3,68.2,79.9,81.1 +1395,27157,"Wabasha County, Minnesota",Wabasha County, Minnesota,42315,21519,95.4,0.4,44.8,5.7,2.6,77.9,22.8,24.8,2.33,2.82,10.6,6.4,81.6,50459,94.9,26.6,9129,2.8,1.1,0.3,0.6,1.3,NA,NA,NA,98579,42262,80133,7.4,2.1,3.9,1.8,3.8,0.2,75.5,85,84.5 +1396,27159,"Wadena County, Minnesota",Wadena County, Minnesota,34491,14135,91.3,0.7,40.1,6.5,3.9,74,20.1,NA,2.33,2.89,17.2,5.8,72.5,40664,91.4,17.5,5889,1.2,1.3,0,2.2,1.5,NA,NA,NA,72882,30037,56882,8.1,6.1,5.7,1.6,1.9,0.6,69.2,83.7,84.1 +1397,27161,"Waseca County, Minnesota",Waseca County, Minnesota,38209,18958,89.5,1.1,40.4,5.4,2.2,76.9,18.5,22.3,2.4,2.88,12.1,2.4,79.3,48750,92.9,20.9,7505,6.4,0.8,0.9,0,1,NA,NA,NA,93960,37199,75052,7.2,3.3,3.8,0.8,1.3,0.3,79.5,85.3,87.9 +1398,27163,"Washington County, Minnesota",Washington County, Minnesota,55005,272298,79.7,4.9,39.9,5.7,1.7,75.8,16.2,24.5,2.6,3.08,13.8,1.6,81.2,68746,96.3,48.9,103411,3.7,3.1,4.3,1.7,1.3,5,5.3,6.4,148315,56650,114457,5.8,3,3.4,1.4,2.3,0.3,88.5,92.1,94.1 +1399,27165,"Watonwan County, Minnesota",Watonwan County, Minnesota,37428,11169,78.9,0,40.6,7.5,3.7,74.4,20.2,22.8,2.55,3.08,13.7,4.7,78.2,43923,88.4,18.2,4314,23.8,0.6,0.4,0,5.4,NA,NA,NA,89633,35659,70593,6.3,5,12,13,15.9,0,68.7,84.4,82.7 +1400,27167,"Wilkin County, Minnesota",Wilkin County, Minnesota,41379,6413,92.6,0.2,42,6.3,4.7,77.5,19.1,NA,2.33,2.94,15.8,3.8,79.7,49570,93.4,21.5,2691,2.9,1.1,0,0,0.7,NA,NA,NA,84280,36057,69635,6.4,5,3.7,6.9,5.3,0.3,75.1,82.4,83.5 +1401,27169,"Winona County, Minnesota",Winona County, Minnesota,35183,49705,90.8,1.7,36.1,4.6,2.4,82.1,18.2,NA,2.29,2.97,25.5,3.3,68.8,46946,93.9,32.1,20288,2.2,0.9,1.3,0.9,0.6,13.4,11,11.8,89289,37447,70198,6.2,2.4,5.1,5.7,5.9,0.4,82.8,86.5,90.9 +1402,27171,"Wright County, Minnesota",Wright County, Minnesota,51491,145270,89.4,1.9,37.4,6.7,1.2,72.5,13.3,30.3,2.73,3.23,8.9,3.8,84.3,62572,94.9,34,52757,2.8,1.4,1.4,0.9,1,4.9,5.4,7.7,123045,44946,106666,6.4,2,4.5,4.5,3.9,0.2,84.8,91.6,92.1 +1403,27173,"Yellow Medicine County, Minnesota",Yellow Medicine County, Minnesota,39463,9509,88.8,0.7,42,5.7,2.8,76.9,21,NA,2.32,2.81,6.4,1.5,84.2,46910,92.5,19,3993,3.4,0.9,0.2,0.8,1.2,NA,NA,NA,92166,38668,71573,7.1,3.2,4.1,4.3,3.8,0.5,75.6,85.6,85.6 +1404,28001,"Adams County, Mississippi",Adams County, Mississippi,24661,29098,38.4,55.5,42.1,6,2.1,78.4,21.6,NA,2.35,3.09,13.7,13.1,66.5,36983,83.6,19.3,11573,1.5,0.2,0.1,0.1,0.4,28.2,39.4,22.1,58556,24717,40250,5.2,8.7,11.6,4.8,7.1,0.1,61.8,80.3,81.7 +1405,28003,"Alcorn County, Mississippi",Alcorn County, Mississippi,26586,34500,80.9,10.9,40.6,5.2,2.4,77.4,18.8,NA,2.36,2.97,17.9,16.1,65.4,38281,83.4,18.4,14281,1.8,0.4,0.3,0.6,0.1,17.4,19.6,15,69592,29456,49404,5.4,5.6,11.2,2.8,7.4,0.2,57.6,77.6,74.1 +1406,28005,"Amite County, Mississippi",Amite County, Mississippi,23694,12611,58.3,40.1,48.8,4.9,2.5,79.6,25.4,NA,2.13,2.93,2.1,37.6,83.2,40894,87,8,5862,1.1,0.2,0.1,0,0.1,NA,NA,NA,51253,24941,35385,4.7,4.6,11.7,2.9,8.4,0.3,45.9,81.2,65.8 +1407,28007,"Attala County, Mississippi",Attala County, Mississippi,26508,17685,52.3,45.4,39.6,6.1,1.7,74.8,19.4,33.9,2.68,3.42,6.9,18.8,76.6,34066,85.2,15.8,6467,1.6,0.4,0,0.2,0,NA,NA,NA,70667,28061,48098,6.5,6.2,9.1,0,3.5,0.3,57.8,84.4,78.6 +1408,28009,"Benton County, Mississippi",Benton County, Mississippi,24761,7592,60.8,34.2,43.9,4,1.1,79.3,21.3,NA,2.48,3.11,1.4,27,83.3,33830,80.9,12.1,3027,3.5,0.7,0.1,1.4,2.1,NA,NA,NA,55959,23870,42139,6.1,3.2,13.3,7.9,6.9,5.9,43.2,78.3,62.1 +1409,28011,"Bolivar County, Mississippi",Bolivar County, Mississippi,21186,30163,30.7,63.2,36.6,6.5,1.8,75.3,16.7,NA,2.4,3.04,19.1,7.4,61,35251,83.2,26.6,11907,2.2,0.1,0.6,0.4,0.9,33.7,45.5,24.2,62065,25359,37315,3.3,7.8,13.6,5.8,8.8,0.2,61.8,85.5,76.1 +1410,28013,"Calhoun County, Mississippi",Calhoun County, Mississippi,25782,13029,64.3,28.7,43.1,5.4,2.3,77.6,20.2,NA,2.23,2.86,7.5,14.1,73.1,36220,79,13.1,5696,3.7,0,0,0.1,0.9,NA,NA,NA,58792,25398,43942,4.1,3.3,10.7,8.4,4.7,0.6,55.4,82.9,77.4 +1411,28015,"Carroll County, Mississippi",Carroll County, Mississippi,27771,9828,63.2,34.5,47.7,4.7,3,82.3,24.5,NA,2.23,2.83,4.9,27.2,79.8,48380,80,18.5,4205,0.2,1.1,0,0,0,NA,NA,NA,67202,32822,55275,5.4,2.9,8.5,0,3.2,0,54.6,78.1,68.6 +1412,28017,"Chickasaw County, Mississippi",Chickasaw County, Mississippi,26468,16994,50.3,44.5,39,7.2,2.3,75.2,18.4,21.8,2.46,3.11,7.9,20.1,67.2,38536,80.7,12.4,6681,2.5,0.4,0.3,0,0.3,NA,NA,NA,54166,22365,43041,3.3,3.7,11,6.8,5.6,0.4,49.6,79.7,73 +1413,28019,"Choctaw County, Mississippi",Choctaw County, Mississippi,27394,8172,67.6,29.3,43,4.5,3.6,78.7,22.9,NA,2.31,2.88,4,19.4,80.3,38548,85.8,18.6,3450,1.9,0,0.4,0,0,NA,NA,NA,69483,28282,48321,5.8,8.9,11,18.7,6.8,0.7,66.7,80.1,79 +1414,28021,"Claiborne County, Mississippi",Claiborne County, Mississippi,18537,8908,10.9,86.2,33.8,6,2.3,78.2,18.9,NA,2.76,3.62,4.3,33.5,75.2,28367,83.7,20.6,2836,0.4,0.7,0,0,0,NA,NA,NA,53673,18619,34371,3.5,8.7,18.1,10.2,13.1,0,55.3,78.3,77.4 +1415,28023,"Clarke County, Mississippi",Clarke County, Mississippi,26527,15424,63.3,34.4,42.6,6,1.1,77.9,21.7,NA,2.45,2.97,2.7,27.6,84.1,37014,86.4,15.1,6246,0.9,1,0.5,0,0.2,NA,NA,NA,62727,26974,46054,6.2,7.9,12.7,0.9,9.5,1.5,59.8,86.2,77.7 +1416,28025,"Clay County, Mississippi",Clay County, Mississippi,27019,18462,37.9,60.1,40.1,5.9,3,77.4,19.4,NA,2.35,2.96,12.4,17.3,70.7,35000,82.8,18.2,7728,0.6,0,0.8,0.4,0.1,NA,NA,NA,57551,24734,39904,6.4,6.9,10.5,7.6,8.3,1.5,58,84.5,81.4 +1417,28027,"Coahoma County, Mississippi",Coahoma County, Mississippi,23590,20808,19.5,75.9,35.7,7.4,2,72.9,16.1,NA,2.38,3.09,22.5,7.1,52,31483,82,19,8463,2.1,0.3,0,0.1,1.3,36.3,48.4,18.2,54806,23098,36259,5.5,10,13.2,1.4,2.6,0,52.5,80.7,75.4 +1418,28029,"Copiah County, Mississippi",Copiah County, Mississippi,26761,27994,43.2,50.7,39.8,6.1,1.4,77.4,18.5,NA,2.72,3.45,7.5,26.9,74.1,39349,86.3,20.3,9906,2.3,0.4,0.5,0.1,0.5,23,38.4,13.5,77936,28574,47994,5.1,6.1,14,3.1,6.6,0,61.9,83,76.9 +1419,28031,"Covington County, Mississippi",Covington County, Mississippi,26211,18226,60.4,34.6,37.7,6.4,1.5,75.9,17.6,NA,2.53,3.12,4.7,31.5,76,40223,84.7,15.9,7079,1.2,0.2,0.6,0,0,NA,NA,NA,65573,26323,47001,7.2,4.5,11.2,7.9,3.1,0.3,54.6,86.2,62.5 +1420,28033,"DeSoto County, Mississippi",DeSoto County, Mississippi,40412,188598,59.5,32,37,5.8,1,74.8,13.3,NA,2.71,3.17,9.6,3.6,77.8,51127,91.4,28.3,69327,4,0.8,0.8,0.5,1.2,10,14.1,7.3,98245,36569,82980,7.3,3.1,8.3,4.5,5.3,0.5,79.6,92.7,91.6 +1421,28035,"Forrest County, Mississippi",Forrest County, Mississippi,27988,78027,57.2,35.8,31.8,6.3,1.5,77.2,13.6,21.2,2.48,3.12,25.1,9.3,57.1,37939,90.8,29.5,29722,2.2,0.5,1.1,0.2,0.8,21.5,26.8,14.8,74247,29525,52821,6.6,5.6,11,6.1,6.8,0.3,69.5,89.4,84.5 +1422,28037,"Franklin County, Mississippi",Franklin County, Mississippi,25294,7655,62.6,35,42.7,5.8,1.3,76.9,21.1,37.1,2.56,3.06,2,22,80,39361,86.8,18.1,2949,0,0,0,0,0,NA,NA,NA,62898,27379,45618,8.9,4.6,10.6,5.3,2.4,0,61.3,85.6,81.9 +1423,28039,"George County, Mississippi",George County, Mississippi,31744,24870,86.4,7.8,36.2,8.1,1.3,72.8,15.2,NA,2.63,3.07,3,17.1,83.6,42820,87.9,17.1,9195,2.3,0.6,0.3,0.3,1,NA,NA,NA,72483,26798,54822,8,7.7,13.1,5.1,5,0.3,63.6,86.4,80.5 +1424,28041,"Greene County, Mississippi",Greene County, Mississippi,28021,13595,71.7,24.8,40.5,5.7,1.7,81.1,14.5,NA,2.56,2.98,3.5,36.1,78,39591,80.6,11.9,3818,1.6,0.8,0.1,1,1.3,NA,NA,NA,70042,19275,55838,7.2,9.7,15.6,5,5.2,0,54.7,83.8,71.4 +1425,28043,"Grenada County, Mississippi",Grenada County, Mississippi,25198,21342,51.1,44.8,38.9,6.2,2.5,75.8,18.5,21.6,2.47,3.02,15.1,14,62.9,35789,84.5,23.7,8535,1.1,4.4,0.2,0.2,0,NA,NA,NA,70611,27886,47998,7.5,3.7,11.8,0,1.9,0,62.1,83.2,79.5 +1426,28045,"Hancock County, Mississippi",Hancock County, Mississippi,35116,46057,84.4,6.8,45.7,4.9,2.3,80.4,21.9,NA,2.3,2.79,9,11.2,78.7,45128,89.7,24.6,19911,3.3,1.9,1.4,0.5,0.4,13.3,19.6,12.1,91745,38730,67728,9.8,5.3,9.2,3.5,4.3,0.3,73.3,89.7,85.2 +1427,28047,"Harrison County, Mississippi",Harrison County, Mississippi,33143,209443,63.1,24.1,38.1,6.2,1.6,76.2,16.1,NA,2.53,3.13,22.7,7.1,60.6,41011,89.2,25.5,81214,3.7,1.8,2.1,0.4,1.6,17.4,23.8,11.9,77949,31586,57233,13.4,7.4,13.7,5.7,7.5,0.5,73.4,90.2,87.1 +1428,28049,"Hinds County, Mississippi",Hinds County, Mississippi,29359,222494,23.6,72.4,36.6,6.2,1.5,76.3,15.7,22.9,2.38,3.14,23.8,3.3,57.9,37389,88.5,31.1,89720,2.4,0.8,0.5,0.3,0.8,21.6,31.2,16.6,71220,29336,49966,5.8,7.2,12.8,4.5,6.1,0.6,68.9,88.2,88.3 +1429,28051,"Holmes County, Mississippi",Holmes County, Mississippi,17834,16491,14.2,82.4,35.8,6.4,1.8,75.2,16.2,NA,2.61,3.58,15.1,26.2,60.6,28498,82.4,13.7,6003,0.8,0.8,0.1,0,0.3,NA,NA,NA,55138,22044,29434,4.3,8.6,10.6,2.2,3.3,1.8,48.1,78.2,65.7 +1430,28053,"Humphreys County, Mississippi",Humphreys County, Mississippi,21409,7570,20.3,78.8,38.4,5.9,2.1,74.5,18.4,25.8,2.49,3.22,14.4,8.8,59.7,27536,76.9,19.4,3003,1.7,0.1,0.1,0,0,NA,NA,NA,58836,24442,32976,3.9,12.4,14.4,13.8,9.5,0.3,52.4,80.3,65.2 +1431,28055,"Issaquena County, Mississippi",Issaquena County, Mississippi,17609,1095,26.6,70.1,49.5,0,2.3,93.4,19.5,NA,1.95,3.04,21,20.2,63.3,33500,67.3,4.4,376,0,0.5,0,0,0,NA,NA,NA,39443,13843,29271,4.9,8.6,12.2,NA,21.2,0,36.7,74.7,48.1 +1432,28057,"Itawamba County, Mississippi",Itawamba County, Mississippi,34066,23942,89.6,7.8,39.4,4.9,1.9,78.7,17.7,NA,2.48,2.93,3.4,20,79.3,42098,85.2,14.8,9224,1.7,0.1,0,0,0,NA,NA,NA,95997,39701,59508,6.5,2,9.9,1.5,3.2,1.1,60.2,85,79.8 +1433,28059,"Jackson County, Mississippi",Jackson County, Mississippi,34308,144437,68.3,20.5,39.7,5.6,1.7,77,16.9,NA,2.51,3.1,14,8.1,72,45003,88.8,24.9,57027,4.9,1.2,1.9,0.5,1.6,14.1,17.3,9.2,85693,34116,64756,10.4,6,12.6,3.2,7.3,0.2,74.2,90.3,87.8 +1434,28061,"Jasper County, Mississippi",Jasper County, Mississippi,25270,16211,45.2,53.2,42.4,5.9,2.3,77.2,21.3,NA,2.52,3.28,3.1,31,83.2,41278,89.6,13,6390,0.3,0.2,0.1,0,0,NA,NA,NA,59344,24538,47157,6.6,3.5,9.9,6.3,6,0,52.6,82.3,60.1 +1435,28063,"Jefferson County, Mississippi",Jefferson County, Mississippi,22662,7127,13.2,81.2,43,5.2,2.5,78.8,19.3,NA,2.83,3.56,8.8,34.8,78.8,31839,80.8,19.9,2372,1.4,0.3,0,0,0,NA,NA,NA,53294,20430,36207,4.3,5,8.7,2.9,3,0,63.5,82.6,87.2 +1436,28065,"Jefferson Davis County, Mississippi",Jefferson Davis County, Mississippi,21474,11183,38.1,60.2,45.7,5.3,1.6,80.1,23.9,NA,2.52,3.3,3.9,25.8,81.7,30494,87.6,13.5,4383,0.2,0.3,0,0,0,NA,NA,NA,56805,24065,37183,6.6,7.3,11.1,0,6.4,0,55.2,79.6,75.3 +1437,28067,"Jones County, Mississippi",Jones County, Mississippi,27810,66839,65.4,28.7,37.6,6.6,2.4,74.7,17.4,25.2,2.65,3.21,9.7,21,73.8,38055,87.1,20,24600,3.7,0.4,0.3,0.5,1.2,20.8,32.1,11.8,73758,27896,51143,6,3.5,12.6,5.8,7.5,0.6,58.2,86.7,71.6 +1438,28069,"Kemper County, Mississippi",Kemper County, Mississippi,24909,8855,33.7,60.4,40.7,5.9,2,81.8,21.4,NA,2.49,3.04,9.1,21.4,77.6,31250,79.6,17.8,3209,1.1,0.3,0.3,2,0.3,NA,NA,NA,56293,22637,43595,6.8,12.3,14.6,40.8,16.1,0,51,80,71.6 +1439,28071,"Lafayette County, Mississippi",Lafayette County, Mississippi,27355,56920,69.8,23.1,30.9,5,1.4,81.7,13.3,NA,2.77,3.44,20.2,9.6,63.2,44262,91.9,44.3,18510,1.3,2.1,0.7,0.4,0.4,18.7,15.5,5.6,99327,34960,64334,4.7,1.8,10.3,3.7,4.9,0,79,90.7,90.1 +1440,28073,"Lamar County, Mississippi",Lamar County, Mississippi,36091,65081,72.8,21.6,37.5,6,1,75.4,14.7,NA,2.58,3,19.5,11.4,68.1,46997,91.4,33.2,25053,2.2,0.5,0.9,0.2,0.7,16.1,22,10,97646,38615,69106,7.4,4.7,12.8,7,5.6,0.1,77.1,93.2,88.6 +1441,28075,"Lauderdale County, Mississippi",Lauderdale County, Mississippi,27383,71984,51.6,42,39.5,6,1.9,76.5,18.2,NA,2.41,3.05,20.5,15.1,63.2,38034,85.2,21.7,28553,2,0.4,1,0.5,0.6,25.1,38.2,17.5,70625,28464,50033,8.2,5.2,10.2,3.4,3.1,1,63.2,85.9,82.9 +1442,28077,"Lawrence County, Mississippi",Lawrence County, Mississippi,25745,11883,64.3,31.8,40.7,6.3,1.9,74.5,18.1,NA,2.74,3.53,3.1,26,81.7,36708,82.1,12.7,4323,1.9,0.9,0.1,0.5,0,NA,NA,NA,65806,26276,43368,4.9,12.3,12.9,0,5,0.9,54.6,78.6,68.5 +1443,28079,"Leake County, Mississippi",Leake County, Mississippi,25853,21288,46.7,39.1,40,6.4,1.9,76.6,18,32.2,2.82,3.46,6.9,23.9,75.9,38610,82.2,17.7,7384,3.7,0.9,0.1,3.1,1.8,NA,NA,NA,69847,26895,48418,7.4,6.6,16.1,7.9,11.5,0.4,51,83.8,73.7 +1444,28081,"Lee County, Mississippi",Lee County, Mississippi,33532,83138,63.4,29.9,37.7,6.4,1.3,74.9,15.4,21.4,2.58,3.16,15,9.7,70.2,43388,87.8,28.7,31823,2.4,0.9,1.3,0.3,0.9,13.8,19.7,10.8,86064,33713,67144,5.7,4.8,11,3.1,8.5,0.4,67,88.1,82.9 +1445,28083,"Leflore County, Mississippi",Leflore County, Mississippi,21462,27432,21.4,74.5,34.5,7.6,1.6,72.3,15.1,NA,2.64,3.51,23.9,5.2,54.1,30376,82.8,20,9973,1.1,0.4,0.5,0.6,0.1,31.9,45,22.1,58150,22303,33188,2.5,10.7,14.1,3.6,2.6,0,58,66.8,59.6 +1446,28085,"Lincoln County, Mississippi",Lincoln County, Mississippi,29726,34830,67.8,30.3,41.2,5.7,1.2,76.8,17.3,28.6,2.63,3.36,7.8,23.6,73.8,37785,87.1,18.4,13026,0.7,1.2,0,0.1,0.4,21.3,27.9,22.5,68516,26925,48316,5,2.9,13.7,4.1,4.6,2.8,59.2,83.2,82.5 +1447,28087,"Lowndes County, Mississippi",Lowndes County, Mississippi,31032,58187,50.2,44,37,6.4,1.7,76.2,16.9,20.6,2.48,3.2,16,9.9,62.3,42890,88.1,26.6,22829,1.8,1,0.7,0.1,0.2,16.9,24.6,14,74538,30771,54460,8.5,6.6,10.8,0.5,3.3,0,63.5,87.3,85.1 +1448,28089,"Madison County, Mississippi",Madison County, Mississippi,42821,110303,55.5,37.3,38.5,6.1,1.6,75.5,14.9,NA,2.51,3.15,18.5,4.4,71.4,52176,92.2,48.9,43097,3.3,1.5,1.5,0.6,1.4,11,16.1,10,119928,47771,78794,4.7,4,8.4,2.7,3.8,0.2,78.4,93.2,92.2 +1449,28091,"Marion County, Mississippi",Marion County, Mississippi,25996,24303,63.9,32.1,40.7,5.9,2.1,76.6,18.8,35,2.56,3.19,5.7,22.6,78.2,34298,82.5,12.5,9199,2.8,0.9,0.1,0,0,NA,NA,NA,67117,26281,42320,6.4,8.8,14.1,4.5,5.5,0.4,62.8,86.3,79.9 +1450,28093,"Marshall County, Mississippi",Marshall County, Mississippi,27749,33899,47.2,43.7,41.8,5.7,1.7,79.2,18.6,NA,2.5,2.97,4.7,21.9,76.7,41583,81.6,14.5,12798,5.8,0.9,0.1,0.1,0.7,22.8,36.8,16.2,73205,27639,51875,5.1,5.1,11.7,1.4,2.6,0,56.1,84.6,78.9 +1451,28095,"Monroe County, Mississippi",Monroe County, Mississippi,28749,33928,67.3,30.2,41.6,5.6,2,77.4,19.9,23.4,2.44,2.97,8.5,17.7,76.7,41753,85.3,16.4,13673,1.1,0.1,0.5,0.1,0.4,16.7,18.2,15.3,69070,28411,51231,7.3,5.7,9,0.6,2.1,0.5,57.3,83.3,84.4 +1452,28097,"Montgomery County, Mississippi",Montgomery County, Mississippi,26455,9708,52.3,45.2,42.4,4,1.9,77.4,22.4,25.6,2.53,3.37,10.4,19.6,72.1,35185,81.4,20.6,3787,0.3,0.8,0.1,0,0,NA,NA,NA,62379,26387,45057,5.7,5.1,10.8,2.2,5.1,0.3,51.8,80.2,73.4 +1453,28099,"Neshoba County, Mississippi",Neshoba County, Mississippi,25769,28927,57.8,21.4,37.7,7.2,1.9,72.5,16.7,25.6,2.76,3.33,7.2,22,75.3,36707,82.2,16.3,10285,0.6,0.7,0.7,9.2,0.8,25.1,38.2,12.8,67191,24950,53087,6.4,7.8,13,2.8,7.8,0.2,55.8,84.4,78.3 +1454,28101,"Newton County, Mississippi",Newton County, Mississippi,28069,21151,58.9,31.8,37.8,6.4,2.1,75.8,17.2,NA,2.64,3.39,5.8,24,78.9,39474,85.9,17.5,7697,1.1,0.2,0.7,3.4,0.5,NA,NA,NA,74698,29039,50426,7.4,3.1,13.3,9.4,14.3,0,53.3,83.5,69.3 +1455,28103,"Noxubee County, Mississippi",Noxubee County, Mississippi,20736,10136,25.4,73.8,39.9,7.3,2.3,74.9,17.6,NA,2.62,3.45,8.2,24,75.8,30905,79.9,11.1,3786,1.2,1.1,0,0.1,0.4,NA,NA,NA,48133,19838,38814,3.8,7.4,20,14.7,17.1,0,54.7,80.1,68.6 +1456,28105,"Oktibbeha County, Mississippi",Oktibbeha County, Mississippi,23920,51473,55.8,36.2,25.5,4.8,1.4,82.5,11.9,19.8,2.15,2.84,37.3,9.8,47.5,42589,91,45.8,21300,1.8,1.9,1.7,0.8,0.6,28.6,20.7,12.5,69056,28906,43482,4.9,5.9,8.1,2,4.4,0,76,92.3,83.7 +1457,28107,"Panola County, Mississippi",Panola County, Mississippi,26675,32965,47,48.1,39.7,6.6,1.9,75.2,17.1,NA,2.63,3.38,7.6,22.6,68.8,35740,83.7,15.5,12382,1,0.1,0.1,0.4,0,24.1,29.4,17.3,62656,24616,43990,4.9,8.4,13.7,7.2,6.4,0.6,57.7,79.3,75.2 +1458,28109,"Pearl River County, Mississippi",Pearl River County, Mississippi,27923,56781,80.4,12.3,41.1,5.6,1.9,77.2,19.3,35.9,2.58,3.17,7.4,17.6,82.9,39107,87.8,16,21489,3.2,0.9,0.1,0.1,0.3,16.4,19.8,15.4,71898,28399,56535,7.8,5.4,13.1,6.3,7,0.4,66.6,84.9,83.1 +1459,28111,"Perry County, Mississippi",Perry County, Mississippi,26861,11459,77.6,15.8,42.9,5.2,1.3,77.9,19,NA,2.49,3.22,5.3,28.9,80.1,37257,88.7,11.4,4552,1.7,0.4,5.8,0.1,0,NA,NA,NA,61862,25950,50435,8.3,4.5,14.8,2.5,6.1,0,56.8,85.7,74.8 +1460,28113,"Pike County, Mississippi",Pike County, Mississippi,22553,39930,42,54.1,37.1,6.6,1.5,74.2,17.5,27.3,2.54,3.52,13,23.9,66.9,35956,83,15.9,15226,0.8,0.6,0.3,0.1,0.1,27.5,38.9,26.7,57646,23094,41578,6,4.9,13.7,7.1,9.1,0.8,57.9,85.3,75.6 +1461,28115,"Pontotoc County, Mississippi",Pontotoc County, Mississippi,33386,31312,75.2,14.8,35.7,6.8,1.6,73.7,15.2,27.2,2.66,3.25,4.9,25.8,70.6,40968,78.9,17.7,11682,5.9,0.9,0,0,3.3,NA,NA,NA,69978,27217,52741,5.8,2.4,12,3.2,4.5,0.8,61.9,85.2,73.5 +1462,28117,"Prentiss County, Mississippi",Prentiss County, Mississippi,29791,24999,80.1,11.4,37.9,5.9,1.6,77.7,17.4,25,2.55,3.13,7.2,15.6,78.9,41015,83.9,18.6,9363,0.4,1,1.5,0.1,0.1,NA,NA,NA,72927,28978,51466,5.2,3,8.5,2.8,3.4,0.1,61.2,84.2,78.7 +1463,28119,"Quitman County, Mississippi",Quitman County, Mississippi,21719,5908,25,72.2,41,6.1,1.3,77,18.2,NA,2.17,2.75,10.9,15.6,61.9,31298,76.8,15.2,2653,0.3,0.2,0.2,0.1,0,NA,NA,NA,47613,20438,32131,6,13.1,12.8,0,1.4,0,48.5,82.1,66.7 +1464,28121,"Rankin County, Mississippi",Rankin County, Mississippi,40272,158218,72.1,21.6,39.4,5.5,1.8,77.4,16.3,26.4,2.56,3.13,10.9,11.9,77.6,50455,90.3,32.8,59624,3.8,1.5,0.9,0.5,0.6,10,13.6,8,97152,37662,77454,7.4,3.6,9.2,4.6,5.1,0.4,79.8,91.8,91.5 +1465,28123,"Scott County, Mississippi",Scott County, Mississippi,25280,27754,50.3,33.5,37.2,8.3,1,72,15.9,NA,2.84,3.34,5.6,32.5,71.9,37461,78.7,12.1,9668,8.7,0.2,0.6,0.1,2.3,20.7,30.4,12,63183,23915,48492,5.7,4.7,11.9,5.3,6.8,0,55.4,87.7,74.5 +1466,28125,"Sharkey County, Mississippi",Sharkey County, Mississippi,22609,3848,25.6,73.7,36.6,5.6,1,75,18.8,NA,2.65,3.25,10.4,19.7,62.9,33351,81,15.4,1400,0.5,0,0,0.1,0.5,NA,NA,NA,58845,23081,35741,3.4,11.4,14.2,6,9.4,0,55.4,78.9,56.5 +1467,28127,"Simpson County, Mississippi",Simpson County, Mississippi,29887,25817,61.2,35.5,41,5.9,2.5,76.7,18.7,NA,2.64,3.08,5.5,24.3,80.5,39076,81.7,16.5,9573,1.5,1,0.2,0.1,0.2,NA,NA,NA,77692,29599,54111,6,5.5,11.7,2.7,5.8,0.2,58.8,83,77.1 +1468,28129,"Smith County, Mississippi",Smith County, Mississippi,27145,14193,73.8,24.1,42.9,6.3,2.3,77,20.7,29.4,2.6,3.27,3.6,29.7,86.3,43925,82.3,14,5397,3.6,0.2,0.2,0,2.9,NA,NA,NA,63988,25965,51396,4.7,4.2,14.3,7.9,10.1,0,49.9,83.3,57.9 +1469,28131,"Stone County, Mississippi",Stone County, Mississippi,27888,18515,76.6,18,39.3,5.2,2.1,78.5,17.4,36.9,2.69,3.13,4.8,21.1,80,40429,88,14.6,6616,1.2,0.8,0.4,0,0,NA,NA,NA,73281,27173,59307,7.3,9,12.3,1.1,4.1,0.4,69.3,91.4,78.9 +1470,28133,"Sunflower County, Mississippi",Sunflower County, Mississippi,21954,25328,23.4,73,37.6,5.5,1.7,78.8,14.8,19.1,2.7,3.48,18.7,5.8,56.3,32685,75.8,16.9,8058,2.2,0.1,0.1,0.1,1,29.9,44.7,29.2,55026,19429,40265,3.7,10.9,11.4,4.2,3.2,1.6,58.1,79.8,70.4 +1471,28135,"Tallahatchie County, Mississippi",Tallahatchie County, Mississippi,23278,12363,36.2,62.1,38.4,4.8,1.5,79.8,17.1,NA,2.76,3.58,5.7,25,66.9,34991,81.1,11.9,4322,0.4,0.3,0,0.1,0,NA,NA,NA,55647,22998,37383,5.1,10.6,16.4,0,8.7,0.3,56.6,80.2,66.8 +1472,28137,"Tate County, Mississippi",Tate County, Mississippi,31749,28135,66.5,29.9,38.5,5.8,1.8,77.3,16.5,NA,2.47,2.91,7.2,23.2,72.9,43441,84.5,20.9,10720,1.4,0.2,0.3,0,0.1,NA,NA,NA,76186,29748,63995,5.6,6.3,12.5,0.9,6.6,0.7,69.1,86.4,83.7 +1473,28139,"Tippah County, Mississippi",Tippah County, Mississippi,27665,21621,76,14.7,39.7,5.8,1.2,76.3,17,24.5,2.66,3.13,4.4,18.8,76.2,37680,81.8,16.4,7896,4.4,0.1,0,0.2,1.3,NA,NA,NA,70578,29459,51141,5.7,5.8,12.4,3.3,3.8,0.3,61.2,84.3,80.4 +1474,28141,"Tishomingo County, Mississippi",Tishomingo County, Mississippi,29493,18738,91.6,1.2,43.5,5.3,2.1,78.5,20.9,23.7,2.13,2.75,8.8,14.5,77.6,45035,83.3,16.4,8633,3.8,0.3,0,0,2.6,NA,NA,NA,64019,28582,46257,6.3,1.8,11.2,4.2,5.1,0.1,57.5,84.3,74.2 +1475,28143,"Tunica County, Mississippi",Tunica County, Mississippi,27394,9586,18.2,79.6,34.7,8.3,0.4,71.7,13.9,NA,2.64,3.64,30.8,22.4,40.8,33792,81.9,16.1,3600,3.7,0,0,0,0.4,NA,NA,NA,56787,22574,38402,3.3,12.3,13.1,0,0.8,1.3,45.8,87.4,83.6 +1476,28145,"Union County, Mississippi",Union County, Mississippi,30687,28009,76.9,16.1,38.4,6.5,1.9,74.7,16.5,NA,2.77,3.35,6.9,19.2,74.8,39346,78.6,17.1,10000,3.7,0,0.2,0,0.5,NA,NA,NA,76400,28173,56807,6.1,3.9,11.4,9.2,7.2,0,61.6,86.5,77.6 +1477,28147,"Walthall County, Mississippi",Walthall County, Mississippi,26986,13864,53.1,40.8,41.4,5.6,2.4,77.4,20.3,NA,2.54,3.29,3.4,27.3,79.2,45909,80,13.2,5400,1.8,0.4,0.1,0.7,0.1,NA,NA,NA,68770,28082,45444,3.7,3.3,8.1,2,1.5,0,60.2,81.3,78.3 +1478,28149,"Warren County, Mississippi",Warren County, Mississippi,30192,43623,46.7,49,40.3,6.1,1.5,76.2,18.1,21.9,2.56,3.25,17.3,14.8,71.2,41699,88.1,26.5,16816,3.1,2.2,0.3,0.2,1,20.3,32.9,12,81976,33217,56648,6.3,5.5,10.6,2.1,2.5,0,67.8,90.8,80.6 +1479,28151,"Washington County, Mississippi",Washington County, Mississippi,23808,43674,24.3,72.2,38.3,6.7,1.7,74.5,17.6,19.2,2.49,3.35,19.1,8.4,56.8,36846,79.2,20.5,17227,2.9,1.6,0.1,0.1,0.3,28.8,42.3,22.1,58434,24162,40117,4.3,8.4,12.2,3,3.6,0.9,56.8,75.8,55.3 +1480,28153,"Wayne County, Mississippi",Wayne County, Mississippi,25486,19699,56.7,37.1,39.1,6.5,1.7,75.2,17.7,NA,2.63,3.42,2.1,26.1,88.3,29997,84,16.7,7446,2.3,0,0.1,0,1.6,NA,NA,NA,63668,26336,36791,4.1,7.8,16.4,12.2,18,1.8,57.3,83.6,80.1 +1481,28155,"Webster County, Mississippi",Webster County, Mississippi,32429,9942,79,18.6,40.3,6.3,1.5,75.8,18.7,NA,2.4,2.94,7.5,19.7,78,42798,84.2,20.1,4101,0.1,0.4,0.6,0,0.6,NA,NA,NA,67874,28447,59964,5.6,4.8,12.3,29.7,12.3,0,55.1,85.2,80.6 +1482,28157,"Wilkinson County, Mississippi",Wilkinson County, Mississippi,24554,8376,28.2,67.2,39.1,4.3,1.5,79.4,18.9,NA,2.1,3.08,9.7,22.6,79,37390,87.5,11.6,3436,0.2,0.3,0,0,0,NA,NA,NA,53217,22017,35930,5.2,7.7,14.6,0,2.6,0.1,54.5,82.2,73.1 +1483,28159,"Winston County, Mississippi",Winston County, Mississippi,24545,17609,49.7,47.2,42.3,5.5,2.8,77.8,21.1,NA,2.43,3.14,10.8,15.1,69.7,36076,83.6,18.6,7070,0.6,0,0.2,0.9,0.3,NA,NA,NA,68306,28856,49071,6.4,7.4,11.7,2.6,5.9,0,48.8,84.1,76.1 +1484,28161,"Yalobusha County, Mississippi",Yalobusha County, Mississippi,24073,12439,58.9,36.7,42.4,6.2,1.5,78.2,21.4,NA,2.42,3.09,5.4,22.6,70.3,35266,84.2,12.3,5037,1.6,0.7,0.4,0.1,1,NA,NA,NA,59840,24974,49171,7.5,6.4,12.5,1.2,0.4,0,49.4,83,76.1 +1485,28163,"Yazoo County, Mississippi",Yazoo County, Mississippi,22962,26837,39.3,58.1,38.4,5.5,1.9,78.3,14,26.9,2.45,3.16,16.9,20.3,55.3,28247,74.7,13.3,8892,2,0.1,0,0,0.6,31.4,44.8,19.1,56767,19469,40974,6.3,9.1,13.4,6.6,7.3,0.6,53.5,81.9,73.5 +1486,29001,"Adair County, Missouri",Adair County, Missouri,27914,25224,88.9,4.2,29.8,5.6,1.7,81.4,15.2,NA,2.6,3.24,19.7,5,60.6,41924,92.7,35,8911,2.3,4.6,1.9,0,3.3,NA,NA,NA,91227,33713,56583,4.5,4,8.2,5.5,5.1,0.5,75.4,87.5,81.9 +1487,29003,"Andrew County, Missouri",Andrew County, Missouri,37458,18086,93.8,0.9,42.1,5.4,3.1,77.4,20.6,NA,2.57,3.11,8.2,6.9,77,49386,94,26.9,6975,1.1,0.9,0.9,0,0,NA,NA,NA,89386,36351,74007,8.1,3.8,6,1.9,4.8,0,72.7,86.6,82.1 +1488,29005,"Atchison County, Missouri",Atchison County, Missouri,31817,5216,94.3,0.4,47.7,4.5,3.8,79.1,25.2,21.8,2.23,2.76,9.2,2.7,73.6,37901,91.8,22,2295,1.8,0.8,0.3,0,0.3,NA,NA,NA,76140,33891,59260,9.1,2.5,12,6.8,9.9,0,66.2,86.9,84.4 +1489,29007,"Audrain County, Missouri",Audrain County, Missouri,31961,24688,89.1,4.7,40.3,6.2,2.5,77.2,18.6,NA,2.6,3.28,9,7.2,72.7,40432,88.4,16.1,8991,2.3,1.6,1.4,0.1,0.6,NA,NA,NA,71849,28068,56232,7.6,4,14.5,21,20.4,1.4,70,83.8,84.2 +1490,29009,"Barry County, Missouri",Barry County, Missouri,32039,34831,81.9,0.3,43,5.9,2.9,77.1,21.9,23.4,2.59,3.06,9.5,15.6,74.9,37658,85.2,13.4,13360,5.5,1,1.6,0.1,1.1,16.7,25,11.3,80282,31473,56611,9,3.4,12.9,4.3,8.1,1,63.6,84.8,81.8 +1491,29011,"Barton County, Missouri",Barton County, Missouri,23568,11685,92.1,0.2,40.6,5.7,2.3,76.4,20.8,24.5,2.61,3.16,6.7,10.1,69.6,36875,86.1,18,4425,0.9,2.9,0.1,0,0,NA,NA,NA,65483,25518,49503,6.2,4.2,10.9,10,8,0.9,65.2,82.4,81.9 +1492,29013,"Bates County, Missouri",Bates County, Missouri,30193,16121,93.2,2.1,40.8,5.7,2.4,76.6,19.2,NA,2.64,3.17,8,11.1,72.3,40588,89,15.3,5975,1.2,1.8,0.4,0.1,0.7,NA,NA,NA,73202,28444,57914,7.8,6.5,10.8,6.1,5.6,0.5,66.9,82.9,80.8 +1493,29015,"Benton County, Missouri",Benton County, Missouri,25968,19887,93.1,0.9,54.4,4.1,3.2,82.9,31.1,NA,2.4,2.99,5.8,15.5,83.7,38303,89.1,15.2,8166,0.7,1.4,0.1,0,0.4,NA,NA,NA,68388,30994,52200,12.7,3.8,9.6,6.9,9.7,0.5,69,78.4,80.8 +1494,29017,"Bollinger County, Missouri",Bollinger County, Missouri,26891,10591,94.5,0.6,44.3,5.5,2.3,78.1,20.7,NA,2.67,3.35,2.8,13.5,80.1,34341,86.2,14.2,3887,0.2,0.1,0.1,0,0,NA,NA,NA,65633,26681,57286,8.3,5.5,8.8,8.7,5.2,0,52.4,84.2,79.9 +1495,29019,"Boone County, Missouri",Boone County, Missouri,37535,185874,77.9,9.5,32.2,5.5,1.4,79.7,13.1,NA,2.35,2.95,29.8,3.6,58.1,50758,94.6,51,75084,3.8,2.6,3.5,1.4,1.7,17.1,14.8,8.7,95070,38945,69913,5.3,2.9,6.3,5.4,4,0.4,85.2,92.7,90.3 +1496,29021,"Buchanan County, Missouri",Buchanan County, Missouri,32197,83855,82.3,5.7,38.9,6,2,77.6,17.1,17.5,2.41,3.05,18.1,3.7,64.9,42493,89.8,23.3,33398,4.6,1.1,0.9,0.8,1.9,16.9,22.9,9.6,80717,32930,59423,7.7,4.4,12.1,4.3,4.9,0,67.5,88,84 +1497,29023,"Butler County, Missouri",Butler County, Missouri,27337,42166,87.4,4.6,40.5,6.4,1.7,76.7,19.3,19.5,2.5,3.14,11.5,10.6,65,34215,84.5,15.2,16490,1.6,0.8,0.6,0.1,0.2,20.3,25.3,15.5,66403,27108,49213,10,4.5,13.3,5.8,9,0,59.1,83,82.2 +1498,29025,"Caldwell County, Missouri",Caldwell County, Missouri,33873,8890,93.1,1.2,42.7,5.4,2.5,76.3,20,NA,2.42,2.95,7.7,11.4,81,42189,90.8,18.4,3591,0.8,1.7,0.1,0,1,NA,NA,NA,77596,31963,62520,10.2,4.7,10.7,8.1,5.1,0.3,67,84,81.6 +1499,29027,"Callaway County, Missouri",Callaway County, Missouri,34999,44541,89.3,3.4,39.3,5.4,1.6,79.2,17.4,NA,2.52,3.01,11.1,12,76.3,44173,90.7,25.4,16203,1.7,0.9,0.1,0.1,0.2,NA,NA,NA,88969,32920,72645,8,5.2,8.5,1.8,6.1,0,77.9,89.6,89.7 +1500,29029,"Camden County, Missouri",Camden County, Missouri,31669,43416,93.7,0.9,53,4.5,2.5,82.6,28.9,22.7,2.5,3.03,15.3,8,83.1,36876,92.4,24.5,17170,3.3,1.9,0.3,0,0.3,NA,NA,NA,87539,37111,62927,10.4,3.8,11.6,4.3,7.7,0.2,76,87.3,83.1 +1501,29031,"Cape Girardeau County, Missouri",Cape Girardeau County, Missouri,34199,82180,85.4,8.1,37,5.7,2,78.5,17.2,19.5,2.41,3,20.5,4.8,66,44493,92.8,33.9,32544,2.2,1.7,1,0.4,0.9,14.1,15.6,10.2,88767,35924,68912,6.8,2.7,7.1,1.9,3.4,0.2,73.6,89.6,89.6 +1502,29033,"Carroll County, Missouri",Carroll County, Missouri,30723,8459,94.3,1.5,43.7,4.9,3.5,77.9,22,NA,2.43,2.96,4.6,6.8,72.6,40429,89.7,20.2,3443,0.9,1,0.1,0,0.3,NA,NA,NA,79090,33666,61712,6.5,5,7.5,5.1,5.5,0.6,67.6,80.8,78.3 +1503,29035,"Carter County, Missouri",Carter County, Missouri,28531,5269,93,0.6,39.6,6.6,0.9,75.8,20.1,NA,2.66,3.28,10.6,19.2,64.1,32472,85.2,13.3,1965,2.3,0.1,0.3,0,0.4,NA,NA,NA,65018,27115,45083,11.8,2.2,14.2,0,7.4,0.6,54.3,81.5,81.4 +1504,29037,"Cass County, Missouri",Cass County, Missouri,43465,109393,85.6,4.5,40.1,5.7,2.1,76.3,17.5,NA,2.56,3,9.7,4.4,75.9,53567,93.7,28.8,42311,2.2,1.2,0.9,0.2,0.4,6.5,9.1,5.1,105071,41075,87413,8.5,4.5,7.8,7.3,5.3,0.1,82.1,90.5,91.1 +1505,29039,"Cedar County, Missouri",Cedar County, Missouri,24858,14440,93.8,0.4,44.5,7,1.6,75.8,23.6,NA,2.51,3.3,7.4,14.7,73.9,35080,88.1,17.8,5636,0.8,0.7,0,0,0,NA,NA,NA,74308,30047,45577,10.7,2.8,14.9,15.1,12.6,1.4,67.3,84.6,81.1 +1506,29041,"Chariton County, Missouri",Chariton County, Missouri,31280,7406,93.4,2.7,45.2,6.2,3.4,76.8,25,NA,2.7,3.36,6.9,7.3,80.9,38155,91.3,19.4,2655,0.5,2,0,0,0.2,NA,NA,NA,76981,29562,63307,9.3,3.5,7.4,18.5,6.4,0,69.4,76.5,82.3 +1507,29043,"Christian County, Missouri",Christian County, Missouri,40260,91229,92.3,0.8,39.3,6.1,1.5,74.7,16.3,NA,2.65,3.06,10.4,3.2,76,49306,93.3,32.6,34256,3.5,2.3,0.5,0.1,1.2,8.7,10.6,8.2,102125,38535,81245,8,3.3,8.1,8.8,5.2,0.2,80.5,90.5,91.2 +1508,29045,"Clark County, Missouri",Clark County, Missouri,28361,6680,95.7,0.4,43.5,6,2.8,76.3,21,NA,2.9,3.75,6.8,10.3,78.5,36095,90,12.3,2265,1.3,0.4,0.7,0,0,NA,NA,NA,70553,26904,51458,8,5,11,2.8,3.2,0.5,63,79.4,72.4 +1509,29047,"Clay County, Missouri",Clay County, Missouri,45026,255566,80.1,6.8,37.6,6.1,1.5,76.2,14.9,NA,2.5,3.05,20.8,1.6,68.9,54330,94.4,36,101008,4.6,1.7,2,1.2,1.1,8.5,11.6,7.8,105515,42336,86150,7.4,3.7,7.3,4.2,4.7,0.2,82.3,91.4,90.9 +1510,29049,"Clinton County, Missouri",Clinton County, Missouri,39574,21259,93.2,0.7,42.1,5.4,2.8,77,18.4,NA,2.53,3.18,10.2,2.7,76.1,46844,93.7,22.7,8238,2.1,0.6,0.5,0.1,0.3,NA,NA,NA,88767,36216,70625,8.9,3.7,9.3,3,3.9,0,70.3,87.1,85.8 +1511,29051,"Cole County, Missouri",Cole County, Missouri,40846,76924,81,11.2,39.7,5.8,1.9,77.8,17.5,NA,2.36,3.03,23.2,2.3,67.4,47120,93.6,37.5,30746,2.6,1.1,0.9,0.8,0.8,9.3,12.6,7.1,91246,37325,73273,8.1,2.6,6.7,2.7,3,0.1,78.4,90.8,87.9 +1512,29053,"Cooper County, Missouri",Cooper County, Missouri,36403,16835,88.6,5.6,39.9,6.2,2.4,77.5,19.1,NA,2.51,3.06,7.6,5.4,78.2,42377,90.7,24,6169,1.4,1.4,0.8,0.4,0.5,NA,NA,NA,79256,29695,67548,8.4,4,8.7,11,8.4,0.2,75.2,84.1,86.7 +1513,29055,"Crawford County, Missouri",Crawford County, Missouri,30733,22890,93.9,0.6,42.3,5.8,2.3,77.7,20.7,NA,2.37,2.87,8.8,13.3,72.4,40292,84.9,12.8,9468,1.1,0.6,0.1,0,0.1,NA,NA,NA,77661,31502,56345,9.5,5.4,13.3,8.1,8.1,0,67.4,80.3,78.4 +1514,29057,"Dade County, Missouri",Dade County, Missouri,27458,7627,93.5,0.4,46.7,5,3.2,79.1,24.5,24.6,2.44,3.02,4.7,12.2,76.4,34717,91,15.2,3038,0.4,1,0.7,0.1,0.1,NA,NA,NA,70733,29523,49899,8,3.1,10.7,5.2,4,2,59.7,81.4,81.1 +1515,29059,"Dallas County, Missouri",Dallas County, Missouri,27943,17344,95.2,0.2,42.5,6.6,1.3,75.9,20.8,34.4,2.59,3.02,5.3,15.3,76.1,38928,90.3,14.8,6621,1.2,2.4,0,0.5,1.3,NA,NA,NA,68856,27078,53177,9.6,2.1,16.2,13.3,16,0.7,68.9,85.7,78.3 +1516,29061,"Daviess County, Missouri",Daviess County, Missouri,30602,8449,96,0.9,40.6,6.8,2.2,75.2,21.2,NA,2.7,3.28,6.9,10.3,77.7,40100,85.7,18.4,3071,1.3,4.9,0.1,0,0.4,NA,NA,NA,81647,30925,60665,9,1.5,15.3,20.6,18.9,0.3,65.8,79.9,78.6 +1517,29063,"DeKalb County, Missouri",DeKalb County, Missouri,35860,11176,88.3,6.6,42.3,4.6,2.1,81.2,18.7,NA,2.38,3.03,14,6.2,72,47226,88.9,14.8,3775,0.1,1.7,0.7,0,0,NA,NA,NA,80382,27229,69093,7.8,2.3,8.6,16.1,8,0.5,62.9,82.4,80.2 +1518,29065,"Dent County, Missouri",Dent County, Missouri,28407,14506,92.2,0.6,43.8,5.7,2.9,77.4,21.8,21.9,2.52,3.21,9.7,18.6,76.8,37899,85.6,18.1,5675,1.1,0.5,0.5,0.2,0,NA,NA,NA,66341,27470,54306,12,3.8,12.2,2,8,0.2,65.9,77.6,76.7 +1519,29067,"Douglas County, Missouri",Douglas County, Missouri,27477,11850,92.8,0.9,46.6,5.4,3,77.2,25,NA,2.5,3.03,4.1,13.4,79.3,39275,83.6,15.5,4688,0.3,0.2,0.3,0,0.1,NA,NA,NA,72916,29926,49828,10.9,5.5,11.3,9.4,6.9,1.6,62.8,78.4,78.5 +1520,29069,"Dunklin County, Missouri",Dunklin County, Missouri,27496,27795,79,7.9,39.5,6.7,2.3,74.1,18.5,NA,2.42,2.99,12.6,7.6,61.8,37295,80,12.6,11165,6.9,0.7,0.1,0.1,0.5,21.4,26.8,12.2,66097,26121,47368,6.4,4.8,16.1,10.6,9,0.3,61.1,84,86.3 +1521,29071,"Franklin County, Missouri",Franklin County, Missouri,38815,105316,89.8,0.8,41.4,5.8,1.8,77.4,18.5,28.3,2.47,2.95,11.3,8.5,76.4,48167,91,23,42267,0.9,1.7,0.4,0,0.2,8.2,9.7,7,90460,36524,71973,8,3.9,7.7,4,3.8,0.3,77.2,87.3,89.6 +1522,29073,"Gasconade County, Missouri",Gasconade County, Missouri,32338,14774,95.5,0.9,46.3,5,2.9,79.7,22.9,NA,2.41,2.85,8.3,8.5,81.1,39115,89.9,18.6,6037,1,0.9,0.2,0.1,0.6,NA,NA,NA,85449,35247,65096,8,1.9,7.2,5.5,5,0,72.8,80.7,83.3 +1523,29075,"Gentry County, Missouri",Gentry County, Missouri,32690,6224,96.1,0.4,40.5,6.9,2.4,74.8,18.7,NA,2.51,3.24,10.2,8.9,74.8,39043,88.4,20.5,2402,0.2,2.7,0.5,0,1,NA,NA,NA,75900,29984,57458,7.8,2.8,13.2,14.4,14.4,0,63.3,81.8,81.3 +1524,29077,"Greene County, Missouri",Greene County, Missouri,33644,301121,86.7,2.9,36.4,5.6,2.1,79.1,16.9,NA,2.21,2.85,23,2.6,56.9,43355,93.3,32.4,131708,2.7,1.9,1.4,0.6,0.7,14.4,14.9,10.3,80453,35189,57488,6.7,3.3,11.5,5,8.3,0.7,77.2,89,84.9 +1525,29079,"Grundy County, Missouri",Grundy County, Missouri,28236,9822,93.6,0.5,39.7,7.3,3.3,74.4,21.7,17,2.48,3.27,13.6,5.7,69.3,39414,85.4,15.9,3828,0.9,3.3,0.7,0,1.2,NA,NA,NA,76823,30705,53839,7.2,3.1,17,21.5,16.3,1.5,64.1,78.2,76.3 +1526,29081,"Harrison County, Missouri",Harrison County, Missouri,28385,8198,96,0.8,40.9,6.7,3.6,74.9,22.3,NA,2.62,3.25,11.9,7.7,73.1,35434,90.7,17.6,3064,0.7,1.1,0.1,0.8,0.5,NA,NA,NA,63860,25701,53364,5.9,3.2,7.7,1.5,5.3,0,66.5,75,81.3 +1527,29083,"Henry County, Missouri",Henry County, Missouri,30316,22194,93,0.7,44.1,5.8,2.6,77.7,22.3,NA,2.37,2.94,11.3,10.5,73.9,38837,90.1,16.1,9248,1.6,0.7,0.2,0.1,0.3,NA,NA,NA,76598,32566,56621,10.3,4.8,10.9,6.8,6.2,0.3,68.4,84.6,84.8 +1528,29085,"Hickory County, Missouri",Hickory County, Missouri,20521,8501,95,0.1,55.2,4,4.9,82.5,32.4,NA,2.42,3.37,3.3,26.8,84.8,29203,88,12,3457,0.2,0.9,0.2,0,0.1,NA,NA,NA,47120,21208,35084,12,13.8,10.3,15,8.9,0,54.5,72.1,67.2 +1529,29087,"Holt County, Missouri",Holt County, Missouri,32759,4254,94.8,0.8,47.8,5.1,5.5,79.7,25.8,NA,2.41,2.98,6.7,8.2,78.4,39682,92.4,20.5,1722,1.1,0.5,0.2,0,0,NA,NA,NA,80729,34933,58516,7.3,2.2,9.5,8.7,3.9,0.1,63.8,84.8,78.9 +1530,29089,"Howard County, Missouri",Howard County, Missouri,33321,10141,87.5,5.3,38.3,5.7,2.1,77.9,19.9,NA,2.69,3.27,8.1,11.8,80.3,41688,89.6,28,3469,1.4,0.9,1,0,0.1,NA,NA,NA,83267,30241,62628,6.1,3.1,8.2,6,5.4,1.5,73.8,83.9,84.5 +1531,29091,"Howell County, Missouri",Howell County, Missouri,27605,40168,93.2,0.4,40.1,6,2.3,75.7,19.9,NA,2.47,3.04,10,12.9,68.7,36213,85.9,17.5,15997,2,1,0.8,0,0.2,21.4,25,16.9,64950,26493,49814,9.3,5,14.2,5.6,8.5,0.3,70,82.1,82.4 +1532,29093,"Iron County, Missouri",Iron County, Missouri,27148,9482,92.7,0.8,45.3,5,3.1,78.9,22.4,NA,2.4,2.91,8.8,12.6,76.3,36473,85.9,18.3,3803,1,0.3,0.5,0,0.1,NA,NA,NA,64673,26755,51161,8.1,3.6,11,9.4,5.7,0,66.8,78.8,82.3 +1533,29095,"Jackson County, Missouri",Jackson County, Missouri,39902,717021,62.7,22.5,36.9,6.2,1.9,76.5,15.5,23.4,2.33,3.1,26.1,0.8,58.8,49219,91.7,33.5,302726,6.4,1.5,1.5,1.1,1.9,13.8,19.4,10.4,89895,38344,67178,6.6,4.5,11.3,7.4,7.4,0.8,76.6,90.1,89.7 +1534,29097,"Jasper County, Missouri",Jasper County, Missouri,30581,123532,85.2,1.8,36.6,6.5,1.7,75.2,15.8,NA,2.51,3.09,16.3,5.4,63.2,39617,88.8,25.1,48367,5.3,0.9,1.1,0.4,1.2,18.4,25.6,11.8,75406,29914,57525,8,3.4,12.8,5.7,7.1,0.8,72.7,90.1,88.9 +1535,29099,"Jefferson County, Missouri",Jefferson County, Missouri,40328,228227,90,1.1,40.2,5.6,1.5,77.2,16.1,NA,2.6,3.06,8.9,8.6,81.4,50761,91.5,23.6,87025,1.9,1.8,0.9,0.3,0.4,8.6,10.8,8.4,96337,37869,80522,7.9,3.4,7.3,2.3,3.9,0.5,78.7,89.6,90.8 +1536,29101,"Johnson County, Missouri",Johnson County, Missouri,34830,54331,86.2,3.7,31.3,6.3,1.5,77.9,12.9,23.8,2.43,2.97,17.7,8.7,63.9,45394,93.1,29.1,20680,3.4,1.1,1.4,0.3,0.4,11.9,10.4,7.4,82729,32093,67123,13.4,4.1,9.5,6.7,6.8,0,81.9,91.4,89.4 +1537,29103,"Knox County, Missouri",Knox County, Missouri,24969,3760,95.3,0.9,39.8,8,1.9,75.3,21,NA,3,4.06,3.5,10,85.9,36728,82.9,16.9,1214,1.1,0.8,0,0,0,NA,NA,NA,67196,26225,53333,10.5,4.4,24.4,67.9,38.5,0.7,58.8,68.5,65.6 +1538,29105,"Laclede County, Missouri",Laclede County, Missouri,29297,36245,91.5,0.7,39.6,6.6,1.9,75.2,18,NA,2.49,3,9.9,14.7,70.1,37300,85.8,15.7,14453,2.3,1.5,1,0.1,0.4,18.6,25.5,14.8,68851,28202,50825,8.9,5.1,11.2,8.1,5.8,0.5,65.9,86.1,77.4 +1539,29107,"Lafayette County, Missouri",Lafayette County, Missouri,39071,32974,91.6,1.7,40.9,5.5,2,76.9,18.9,NA,2.6,3.1,9.6,5,76.5,46419,90.8,24.4,12438,2.1,1.8,0.6,0,0,NA,NA,NA,91942,35510,79091,8.7,2.3,9,8.4,8.9,0.6,74.6,85,84.4 +1540,29109,"Lawrence County, Missouri",Lawrence County, Missouri,29624,38392,89.2,0.3,39,6.6,2.2,74.5,18.1,NA,2.57,3.15,9.5,10.7,72.8,40567,85.5,16.6,14694,4.7,2,1.2,0,1.2,16.5,24.7,9.9,71034,27516,55849,8.3,4.4,15.3,6.5,9.6,0.1,65.6,86.2,84.2 +1541,29111,"Lewis County, Missouri",Lewis County, Missouri,28224,9945,92.2,3,38.2,5,2.9,78.5,18.9,23.2,2.83,3.91,9.9,10,77,40647,87.5,16.5,3216,0.4,0.7,0,0,0,NA,NA,NA,68625,26018,52340,8.1,6.5,10.6,1.4,4.7,0.3,64.8,78.4,72.1 +1542,29113,"Lincoln County, Missouri",Lincoln County, Missouri,41169,61636,92.6,1.9,37.5,6.8,1.4,74.7,14.3,32.4,2.72,3.12,7.6,14.7,78.3,50605,91.1,18.4,22420,2,1.5,0.7,0,0.6,10.7,11.9,12.8,95743,35401,85276,7.5,2.5,9,5.8,8.2,0.3,79.3,90.4,91.5 +1543,29115,"Linn County, Missouri",Linn County, Missouri,36273,11850,95.1,0.7,42.4,5.5,2.2,76.3,21.2,NA,2.43,3.03,8.8,5.9,78.7,41586,91.5,20.1,4804,0.8,1.1,0.4,0.1,0.2,NA,NA,NA,81761,33769,61975,7.3,2.8,9.8,14.1,11.2,0,66.4,84.2,77.3 +1544,29117,"Livingston County, Missouri",Livingston County, Missouri,35937,14330,92.1,3,39.9,5.3,3,78,19.9,18.9,2.35,2.92,10.4,4.5,68.5,41216,88,18.3,5523,0.8,0.9,0.4,0,0.2,NA,NA,NA,80131,31414,60148,6.6,2.2,10.7,6,10.4,0,65.5,81.5,76.1 +1545,29119,"McDonald County, Missouri",McDonald County, Missouri,27843,23492,72,1.9,38.1,6.5,1,74.4,15.8,NA,2.74,3.21,10.2,24.5,67.8,35623,81.3,13.4,8512,8.1,1.4,2.7,1.6,4,NA,NA,NA,66339,24491,48145,7.7,6.5,20.4,13.1,13.2,2.9,56.3,79.8,77.4 +1546,29121,"Macon County, Missouri",Macon County, Missouri,32836,15163,92.3,2.4,42.9,5.3,2.7,76.5,21.9,NA,2.51,3.19,10.3,9.8,76.1,39357,91.7,18.5,5947,0.9,1.8,0.2,0.1,0.1,NA,NA,NA,70099,29099,58318,6.8,3.7,12.6,25.2,14,2,71.1,81,78.7 +1547,29123,"Madison County, Missouri",Madison County, Missouri,29705,12665,94.2,0.4,41.4,5,1.6,76.5,19,NA,2.7,3.18,8.6,11.9,75.4,35376,88.1,15.3,4604,2.2,1.2,0.5,0,0.2,NA,NA,NA,79585,30380,58435,9.1,6.9,13.6,14.2,11.2,0.4,67.5,84.3,84.3 +1548,29125,"Maries County, Missouri",Maries County, Missouri,32139,8435,93.5,0.2,45.4,4.8,1.7,79.7,22.2,NA,2.36,2.98,7.7,16.4,77.9,39497,86.1,16,3536,0.8,1,0,0,0.9,NA,NA,NA,74425,31622,61359,12.3,4.2,8.5,11.9,9.6,0,65.1,81.4,77.4 +1549,29127,"Marion County, Missouri",Marion County, Missouri,35180,28493,89.6,5.2,39.4,6.9,2.5,76.3,18.7,17.9,2.41,2.98,15.7,3.1,69.8,41274,90.4,25.7,11253,0.6,0.5,0.3,0,0.3,NA,NA,NA,77702,30958,63908,7.8,3.5,7.9,0.6,1.4,0,71.5,86.1,88.8 +1550,29129,"Mercer County, Missouri",Mercer County, Missouri,30017,3501,92.7,0.3,40.8,7.1,2.9,75.9,21.7,24.3,2.66,3.33,9.8,4,79.1,41080,90.6,17.9,1288,4.2,0.8,1.2,0,2.3,NA,NA,NA,68290,26940,60357,6.9,2.6,10.1,7.2,5.5,1.3,71.7,79.2,80.6 +1551,29131,"Miller County, Missouri",Miller County, Missouri,31734,25081,95.2,1.2,40.8,6,2.2,76.5,19.5,28.2,2.47,3.16,12.3,10.5,76.1,40535,89.5,21,10034,3,2.6,0.5,0.3,0.9,NA,NA,NA,74505,30290,55172,8.9,5.1,10.9,5.3,6.3,0,72.8,83.1,84 +1552,29133,"Mississippi County, Missouri",Mississippi County, Missouri,21422,12079,71.9,22.7,42.2,5.1,1.7,77.7,18.3,NA,2.34,2.88,18.8,7.9,60.9,37034,81.9,14.1,4559,2.1,0.3,0.2,0,0.9,NA,NA,NA,58113,22547,46258,5,4,11.1,1.4,4.1,0,59.5,81.1,86.9 +1553,29135,"Moniteau County, Missouri",Moniteau County, Missouri,37238,15303,91.1,2.4,38,6.4,2.5,75,16.4,NA,2.44,3.06,8.9,8,77.8,42958,86.5,17.2,5774,4.2,3.4,0.8,0.1,1.4,NA,NA,NA,78901,29379,65161,7.8,2,16.1,24,23.1,0.9,73.3,80.8,79.6 +1554,29137,"Monroe County, Missouri",Monroe County, Missouri,32017,8672,92.9,4,45.8,5.3,3,78,24.7,NA,2.45,3.29,7.5,15.8,75,40547,89.9,17.4,3461,0.6,1.8,0,0.3,0.8,NA,NA,NA,64338,27776,48299,10.7,1.6,11.5,20.9,15.4,1.2,63,79.3,80.2 +1555,29139,"Montgomery County, Missouri",Montgomery County, Missouri,33085,11422,93.3,1.9,43.8,5.8,2,77.4,20.4,28.1,2.43,2.95,7.7,10.4,73.3,43066,88.5,16.5,4589,1.2,2.3,0.5,0.1,0.1,NA,NA,NA,73885,29876,61042,10.4,2.8,10,2.7,5.1,1.7,71.6,82.5,80.7 +1556,29141,"Morgan County, Missouri",Morgan County, Missouri,28797,21430,93.4,0.2,45.4,6.5,2.6,77,23.6,26.7,2.56,3.29,7.6,15.7,79.7,37134,80.1,14.9,8198,0.5,5.6,0.8,0,1.4,NA,NA,NA,75808,30589,49663,9.3,3.4,24.6,35.8,32.2,2.3,65.1,77.3,76.2 +1557,29143,"New Madrid County, Missouri",New Madrid County, Missouri,30817,16041,76.5,12.7,41.8,6.2,3,76.3,19.6,20.8,2.31,2.83,14.1,9.8,63.6,37509,83.4,13.3,6796,3.7,0.6,0.2,0,0.1,NA,NA,NA,68154,28435,49237,7.4,3.2,12.7,3.7,3.5,0.5,59.8,84.6,86.2 +1558,29145,"Newton County, Missouri",Newton County, Missouri,32935,59490,82.2,0.9,40.2,6,1.9,76.1,18.7,NA,2.64,3.11,7.9,11.9,76.8,41034,89.3,23,22084,4.1,1.6,1.3,0.2,1.2,13.4,17.3,8.5,86775,32855,64583,8.7,4.8,13.2,6.4,8,0.5,71.1,88.7,85.9 +1559,29147,"Nodaway County, Missouri",Nodaway County, Missouri,28354,20959,93.1,2,33.9,5,2.8,83,17.3,NA,2.16,2.79,21.5,5,62.3,45877,94.2,25.6,8389,1.6,1.1,1.1,0,1.5,NA,NA,NA,71121,28894,55970,5.5,2.6,8.2,8.3,5.7,0.3,72.1,85.5,83.7 +1560,29149,"Oregon County, Missouri",Oregon County, Missouri,23621,8704,93.7,0.1,44.6,5.8,2.5,76.9,22.8,NA,2.55,2.99,3.5,16.1,76.7,34193,86.9,14.4,3360,0.9,0,0.6,1.1,0,NA,NA,NA,58556,23220,44259,8.4,4.1,18.2,12,13.8,0,67.4,82.7,74.9 +1561,29151,"Osage County, Missouri",Osage County, Missouri,40596,13379,97.8,0.2,40.8,5.4,2.2,76.9,17.8,NA,2.54,3.09,8.8,6.2,81.2,48339,92,24.8,5173,0.6,0.6,0,0,0.1,NA,NA,NA,104002,41107,75355,6.7,1.8,4.9,1.5,3.1,0,74.4,85.6,83.2 +1562,29153,"Ozark County, Missouri",Ozark County, Missouri,23968,8773,94.2,0.4,51.9,4.1,4.1,81.3,29,30.3,2.43,2.94,3,18.7,80.4,32387,83.3,12.4,3583,1.7,1.2,0.3,0.1,0.4,NA,NA,NA,69410,29824,42329,10.2,4.1,16.3,12,10.6,0.8,65.8,75.9,78.6 +1563,29155,"Pemiscot County, Missouri",Pemiscot County, Missouri,23515,15232,66.3,24.9,38.9,6.9,2.3,74,17.8,NA,2.41,3.02,16.1,7.8,57.7,36300,83.3,12.8,6231,1.5,1.9,0,0.1,0.1,NA,NA,NA,63715,26073,40748,7,9.8,13,3.3,3.3,1.2,50.3,82.2,81.8 +1564,29157,"Perry County, Missouri",Perry County, Missouri,32877,18947,94.5,0.8,41.6,5.4,2.3,77.1,19.3,21.4,2.54,3.11,9.3,8.4,77.6,40717,87.9,22.1,7323,1.6,2.6,1.1,0,0.6,NA,NA,NA,82644,32616,63356,8.5,4.2,6.4,3.9,4.5,0,68.3,82.5,83.7 +1565,29159,"Pettis County, Missouri",Pettis County, Missouri,31956,43205,85.7,2.5,37.9,6.9,1.9,74.8,17.1,19.4,2.5,3.1,13.2,4.7,70.1,40466,87.2,18.6,16937,5,4.5,0.8,0,2.3,13.4,14.7,11.6,78089,30954,60232,9.4,3.8,11.9,10,8.8,1.2,73.8,86.5,88.6 +1566,29161,"Phelps County, Missouri",Phelps County, Missouri,30060,44948,87.1,2,36.2,5.3,2,78.8,16.8,NA,2.37,2.93,23.6,7.6,61.9,42546,91.6,31.5,17644,1.4,1.3,3.5,0.8,1.2,17.2,14.3,11,72483,29191,55427,9.2,3.7,8.8,5.9,5,0.5,77.5,87.5,88.4 +1567,29163,"Pike County, Missouri",Pike County, Missouri,33763,17623,89.4,4.8,39.7,5.7,2,77,18.8,NA,2.46,2.98,12.3,12.8,73.3,44193,87.3,16.6,6451,1.5,0.6,0.7,0.7,1.6,NA,NA,NA,74695,27443,57572,7,3.8,9,7.6,5.4,0.4,61.6,83.8,84.5 +1568,29165,"Platte County, Missouri",Platte County, Missouri,47724,108751,79.7,7.6,38.7,5.8,1.5,76.6,15.7,NA,2.49,3.04,25.6,0.4,67,58028,96.7,45.6,43316,4.5,2.5,2.4,1.8,1.2,6.8,8.3,9,122134,49273,95748,8.3,3.5,5.9,2.9,3.4,0.2,86.6,94.5,92.8 +1569,29167,"Polk County, Missouri",Polk County, Missouri,28666,32109,93,0.8,38.9,6.2,2.6,76.5,18.1,27.8,2.56,3.02,11.2,9.4,71.3,40635,88.8,21,11957,1.3,2.2,0.7,0.1,0.8,17.9,22.6,13.2,73323,28199,56686,8.2,3.4,14.5,12.1,14.9,0.3,71.5,86,80.9 +1570,29169,"Pulaski County, Missouri",Pulaski County, Missouri,31897,53850,72.7,10.5,27.5,6.7,1.3,78.1,9.6,19.4,2.68,3.32,14.9,9.9,59.4,44239,94.1,27.9,16434,4.9,3.2,3.5,0.3,1,12.8,15.5,17.5,78175,29250,66435,17.2,4.4,10.4,2.6,4,0,81,90.2,84.8 +1571,29171,"Putnam County, Missouri",Putnam County, Missouri,34286,4675,96.4,0.1,45.6,6.2,3.4,77.6,25.1,NA,2.45,3.18,6.1,12.4,81.2,42200,93.9,19.3,1874,1.3,1.5,0,0,0.8,NA,NA,NA,72634,33208,56875,9.3,4.4,10.9,17.8,16,0,62.5,77.5,76.5 +1572,29173,"Ralls County, Missouri",Ralls County, Missouri,32920,10394,93.4,1.9,45.8,5.2,2.1,79.1,22.8,23,2.6,3.07,5.4,14.4,86.1,41759,91.1,17.5,3959,0.3,0.9,0.2,0,0,NA,NA,NA,79625,31075,62054,9.3,2.5,5.7,5.6,4.8,0,74.4,85.2,89.2 +1573,29175,"Randolph County, Missouri",Randolph County, Missouri,32112,24524,88.9,5,40.1,5.8,1.7,77.9,17.1,NA,2.44,3.03,11.2,11.6,70.4,38715,89.8,17.1,9252,1.1,1.3,0.4,0.1,0.2,NA,NA,NA,69996,27268,55310,7.2,4.3,10.6,12.7,8.9,0,69.6,83.6,83.3 +1574,29177,"Ray County, Missouri",Ray County, Missouri,37523,23149,93.2,1.2,42.2,5.5,1.8,77.2,18.8,NA,2.53,2.98,10.5,4.2,77.5,47852,90.2,15,9046,2,1,0.5,0,0.3,NA,NA,NA,92398,38179,72152,8.8,2,9.7,4.4,7.7,1,72.1,86.7,82.7 +1575,29179,"Reynolds County, Missouri",Reynolds County, Missouri,27811,6058,91.8,1.5,46.1,4.6,2.3,80.9,23.3,26.5,2.53,3.12,4.9,16.7,80.7,35975,80.6,15.4,2312,0.7,0.8,0.1,0,0,NA,NA,NA,59796,26576,44357,8.9,11.3,13.4,4.9,5.7,0.9,65.2,74,77.6 +1576,29181,"Ripley County, Missouri",Ripley County, Missouri,22305,10755,93.7,0.2,41.4,6.5,1.7,76.6,20.2,34.6,2.64,3.26,5.6,18.3,78.9,34195,83.7,12.9,4030,0.8,0.6,0.8,0.1,0,NA,NA,NA,58240,23691,43898,9.4,4.8,16.5,5.7,8.4,0.2,64.8,77.6,81.7 +1577,29183,"St. Charles County, Missouri",St. Charles County, Missouri,50056,409830,85,5.1,39.6,5.5,1.7,77.2,16.4,NA,2.54,3.04,14,2.6,80.7,61515,95.5,42.4,158682,2.4,2,1.9,0.4,0.5,4.7,5.2,5.3,127112,49859,102912,6.8,2.6,4.3,2.7,2.9,0.2,89.1,92.4,94.4 +1578,29185,"St. Clair County, Missouri",St. Clair County, Missouri,27408,9451,93.6,0.8,47.2,5.4,3.1,79,25.8,NA,2.26,2.89,6.8,19.8,75.7,33801,87.9,13.7,4090,0.3,1.5,0.2,0,0,NA,NA,NA,60329,26548,46731,9.3,2.2,12.7,12.2,11.1,0,64.2,83.4,80.2 +1579,29186,"Ste. Genevieve County, Missouri",Ste. Genevieve County, Missouri,32909,18551,94.2,1.6,43.2,5.6,2,78.4,20.8,NA,2.54,3.09,8.4,8.7,81.6,41718,92.7,18.4,7113,1,0.6,0,0,0.3,NA,NA,NA,85768,34056,61310,6.5,4.1,4.7,4,1.7,0.9,66.6,85.9,84.1 +1580,29187,"St. Francois County, Missouri",St. Francois County, Missouri,27769,66864,91.3,3,39.2,5.2,1.8,78.9,16.9,NA,2.54,3.06,17.7,10,69.1,39660,86.7,16,24113,0.8,0.6,0.3,0.1,0,17,18.4,13.1,73573,27266,54813,8,4.9,11.8,1.9,5,0,67.1,88.5,85.3 +1581,29189,"St. Louis County, Missouri",St. Louis County, Missouri,44153,996618,63,24.2,40.2,5.7,2.4,77.9,18.7,23.3,2.36,3,22.2,0.2,69,55226,94.4,46.9,414739,2.8,4.1,3.2,1.1,1.5,9.6,13.1,7.7,121117,51085,81340,6.1,3.9,5.8,3,3.6,0.4,82.7,90,92.4 +1582,29195,"Saline County, Missouri",Saline County, Missouri,30229,23177,79.8,4.7,35.4,5.6,2.6,78.1,17.4,16.9,2.7,3.43,13.7,6.2,70.8,40118,87.6,26,8008,6.8,0.2,1.1,0.1,2.4,NA,NA,NA,74941,28530,56566,5.4,2.8,7.8,1.1,6.3,0.3,71.9,84.8,86 +1583,29197,"Schuyler County, Missouri",Schuyler County, Missouri,30323,4044,94.6,0.1,38.8,8,2.4,72.4,18.9,28,3.2,4.21,9.2,10.1,79,37859,93.7,10.6,1251,1,4.9,0.2,0.1,2.1,NA,NA,NA,65975,23774,56023,6,4,14.7,16.7,21.3,0.1,62.4,75.1,67.3 +1584,29199,"Scotland County, Missouri",Scotland County, Missouri,35204,4698,96.7,0.1,36.3,7.7,3.3,70.2,19,19.2,3,3.69,5.4,7.3,83,40620,78.4,14.5,1543,0.5,9.5,1.4,0,0.3,NA,NA,NA,86058,30417,67568,6.2,1,33.9,61,45.4,4.7,70.7,78.7,79.5 +1585,29201,"Scott County, Missouri",Scott County, Missouri,31801,37967,82.5,11.2,39.4,6.4,2,75.8,18.4,NA,2.47,3.02,10.6,10.8,68.8,40585,86.4,21.7,15163,3.5,1.1,0.5,0,0.1,14.5,19.3,12.7,78589,32341,58847,6.4,3,11.8,3.9,3.4,0.6,67.5,85.8,86.2 +1586,29203,"Shannon County, Missouri",Shannon County, Missouri,26555,7137,92.7,0.2,45.5,5.8,0.9,77.8,22.6,NA,2.51,2.95,4.7,10.2,83.2,37231,86.6,14.6,2802,1.9,0.4,0.8,0,0.5,NA,NA,NA,62622,25451,59000,10,2,11.3,12.3,8.4,0,60.8,77.4,78.8 +1587,29205,"Shelby County, Missouri",Shelby County, Missouri,30930,6011,94.4,1.2,43.6,6.4,1.8,76.2,21.7,21,2.44,3.06,10.5,7.3,75,37454,90,18,2374,0.9,0.1,0.3,0,0,NA,NA,NA,68661,28270,52127,8.1,1.1,10,1.6,5.9,0,67.4,83.4,81.6 +1588,29207,"Stoddard County, Missouri",Stoddard County, Missouri,28960,28547,93.8,1,41.9,6,2.4,77.7,20.4,NA,2.47,3.02,10.1,8.9,70.7,39598,82.4,16.4,11393,1.6,0.5,0.3,0.1,0.1,NA,NA,NA,67216,27411,54067,9.6,4,11.8,7.4,7.7,0.9,59.2,83.4,85 +1589,29209,"Stone County, Missouri",Stone County, Missouri,29932,31697,94.3,0.3,54.4,4.1,3.6,83.2,31.3,27.9,2.38,2.83,7.8,11,83.7,35378,91.8,23,13161,1.4,1.1,0.4,0,0.1,NA,NA,NA,78728,33582,61323,11.1,6.5,9.4,5.5,5.3,0.5,76.6,89,88 +1590,29211,"Sullivan County, Missouri",Sullivan County, Missouri,30150,5903,83.4,2.5,44.2,6,3.2,78,20.5,NA,2.82,3.82,8.7,10.7,73.8,40598,85.8,14.7,2040,12.7,1.4,1,0.2,5.7,NA,NA,NA,68319,27916,55500,6.7,2.2,8.6,0,1.1,0.2,63,81.1,76.5 +1591,29213,"Taney County, Missouri",Taney County, Missouri,28513,56382,86.9,1.7,42,5.1,2.5,79,22.3,23.5,2.47,2.99,25,12.4,66.9,34531,90.7,25.4,22145,5,1.6,0.9,0.2,0.8,14.4,19.8,9.2,78210,31125,58258,9,4.2,14.8,10.3,6.7,0.2,76.5,88.2,88.7 +1592,29215,"Texas County, Missouri",Texas County, Missouri,26753,24956,90.1,2.2,42.8,5.6,2.5,78.4,20.9,25.9,2.47,3.03,7.5,14.1,76.5,35325,85.6,15.8,9532,1.4,1.1,0.5,0.1,0.3,NA,NA,NA,60833,24570,48055,12,4.9,15.7,8,10.8,1.7,66.5,82.3,80.2 +1593,29217,"Vernon County, Missouri",Vernon County, Missouri,29118,19713,94.6,0.8,41.7,5.9,1.5,76.1,20.4,NA,2.44,3.12,9.4,9.8,72.6,36513,88.2,18,7815,1.1,4.2,0.9,0,1.5,NA,NA,NA,66354,26360,54519,5.5,2.7,15.6,17.6,19.9,0.3,66.5,81.1,83.7 +1594,29219,"Warren County, Missouri",Warren County, Missouri,35961,36467,90.1,2.1,40.8,5.5,1.4,76.5,17.9,NA,2.7,3.11,6.9,10.7,82.4,47287,89.2,19.6,13414,1.9,1.7,0.2,0.1,0.6,NA,NA,NA,97919,36403,77989,9.6,3.6,8.2,12.2,9,0.3,76.8,89.9,90.3 +1595,29221,"Washington County, Missouri",Washington County, Missouri,27934,23483,92.3,1.9,40.2,5.5,1.8,76.7,17.4,NA,2.54,3.03,5.3,26.2,76.3,37431,83.2,12.4,8864,1.3,2.1,0.4,0,0.1,NA,NA,NA,75326,28855,51886,8.5,3.5,11.4,3.9,4,0.4,58.7,81.5,79.5 +1596,29223,"Wayne County, Missouri",Wayne County, Missouri,24099,10942,93.6,0.4,48.2,4.4,3,79.7,24.3,33.5,2.39,3.11,4.9,15.2,76,32813,80.7,11,4503,0.5,1.1,0,0,0,NA,NA,NA,57999,24091,43393,8.7,8.1,13.9,19.7,10.1,0,62.4,75.7,79.1 +1597,29225,"Webster County, Missouri",Webster County, Missouri,33572,39868,92.5,1.1,36.9,7.1,1.5,72.5,15.7,NA,2.83,3.26,8.4,10.4,76.6,41703,88.5,18.6,13751,0.9,2.4,0.6,0.6,0.7,16.1,24.5,10.7,83200,29530,69731,10.2,4.2,13.4,19.2,19.1,0.1,71.6,84.9,80.2 +1598,29227,"Worth County, Missouri",Worth County, Missouri,25313,1956,96.8,0.1,49,5.5,2.6,79.2,25.6,NA,2.41,3.28,10.3,5.3,77.8,33849,93.8,17.6,798,0.6,0.1,0,0,0,NA,NA,NA,67906,32793,46167,9.3,1.3,10.6,10.9,5.4,0,61.8,78.7,81.6 +1599,29229,"Wright County, Missouri",Wright County, Missouri,24681,18722,93.2,0.2,41.2,6.9,2.1,73.8,19.8,27.4,2.66,3.19,8,12,77.6,36668,82.8,14.3,6964,0.4,2.9,0.3,0,0.3,NA,NA,NA,59814,23682,47304,11.9,3.6,15.7,23,17.2,0.3,62.7,85.6,76.5 +1600,29510,"St. Louis city, Missouri",St. Louis city, Missouri,37275,293109,45.7,43.1,36.6,5.8,1.6,81.4,14.9,22.2,1.96,2.91,50.4,0.4,45.4,47416,90.5,40.2,144450,3.1,3,2.4,1.3,1.8,19.8,26.9,17.8,78097,38947,55279,5.9,4.6,9.3,3.5,3.7,0.7,71.8,87,85.7 +1601,30001,"Beaverhead County, Montana",Beaverhead County, Montana,31197,9590,92.3,0.6,43.4,5,2.4,82.6,23.7,NA,2.21,2.88,11,17.3,67.3,38459,93,35.5,4121,1.6,1.5,0.9,0,0,NA,NA,NA,75421,34683,58072,9,2.6,5.6,4.4,3.4,0,79.7,80.5,87.2 +1602,30003,"Big Horn County, Montana",Big Horn County, Montana,28354,12963,28.7,0,32.3,7,1,67.6,13.7,NA,3.46,4.3,13.4,15.5,68.2,40582,88.5,20.9,3691,2.6,0.2,0,31.7,0.6,NA,NA,NA,70442,22453,56680,5,12.4,18.5,8.1,11.3,3.3,63.9,79.3,81.2 +1603,30005,"Blaine County, Montana",Blaine County, Montana,31213,6997,44.3,0.4,33.9,7.6,1.6,70.6,16.4,15.9,2.96,3.65,8.7,6.3,63.2,43697,90.6,25.8,2297,2.6,2.7,0,5.6,0.3,NA,NA,NA,78155,27817,65050,6,14.3,17.2,21.5,16.4,2.6,67.4,77,83.3 +1604,30007,"Broadwater County, Montana",Broadwater County, Montana,37032,7310,90.2,0.4,46.2,4.9,0.6,80.9,23.6,NA,2.51,2.97,2.8,11.3,82.2,50365,91,26.3,2888,1.2,1.6,1.1,0,0,NA,NA,NA,84945,38093,63636,10.9,3.8,6.6,5.4,5.5,0,73,80.1,82.1 +1605,30009,"Carbon County, Montana",Carbon County, Montana,34013,10877,93,0.5,50.5,3.7,1.9,82.6,27.2,NA,2.28,2.89,9.1,11.3,74.1,38406,96.7,30.3,4716,2,1.5,0.7,0.1,0.1,NA,NA,NA,94240,42734,71017,8.7,5,7.5,4.4,6,0.1,74.9,88.4,84.6 +1606,30011,"Carter County, Montana",Carter County, Montana,29343,1361,92.2,0.1,56.7,6.6,4,82.4,30.1,NA,2.23,2.95,5,27.2,61.6,33482,93.3,20.3,599,0,0,0,0,0,NA,NA,NA,64908,29865,52171,8.7,5,8.9,7.3,10.3,0,77.3,72.1,86 +1607,30013,"Cascade County, Montana",Cascade County, Montana,37420,84601,84.7,1.5,38.3,5.9,2.5,77.5,19.3,NA,2.34,2.97,18.6,7.3,70.2,44533,93.9,28.7,34909,1.8,2.6,0.9,0.4,0.6,13.2,17,10.1,85695,36562,66203,13.3,2.9,6.7,4.1,4.4,0.3,76.6,86.6,87.4 +1608,30015,"Chouteau County, Montana",Chouteau County, Montana,31892,5888,78.3,0.1,42.9,6.4,2.9,76.8,22.5,NA,2.61,3.47,5.2,16.4,65.9,39337,92.3,22.6,2212,0.5,0.7,0.2,0,0,NA,NA,NA,79363,31978,56927,8.5,3.5,5.9,1,2.1,0.3,69.5,79,72.4 +1609,30017,"Custer County, Montana",Custer County, Montana,33921,11938,91.2,0.4,42.6,5,2.2,80.1,20.4,NA,2.28,2.87,17.6,9.5,68.5,41553,94.7,29.8,5044,1.1,2,1.3,1.3,0.4,NA,NA,NA,83970,35864,63585,9.1,1.9,7.6,7.2,7,0,80.6,85.1,85.8 +1610,30019,"Daniels County, Montana",Daniels County, Montana,37764,1524,89.6,0.3,48.7,2.4,3,79.9,28.9,12.9,2.09,2.99,8.4,3.8,80.4,40025,96.7,27.5,716,0,1.5,0,0,0,NA,NA,NA,72275,35113,58000,10.6,1.8,2.3,11.6,2.4,0,72.8,77.4,86.5 +1611,30021,"Dawson County, Montana",Dawson County, Montana,36603,8874,93.3,0,43.5,5.1,2,78.9,20.7,NA,2.28,2.87,11.3,12.9,72.4,44548,94.3,25.5,3710,0.1,0.3,0.3,0,0.1,NA,NA,NA,84201,36998,70953,8.3,3.9,5.4,0.6,4.1,0.4,78.2,84.6,87.1 +1612,30023,"Deer Lodge County, Montana",Deer Lodge County, Montana,32415,9512,90.6,0.3,49.6,3.5,2.6,87.6,25.5,21.2,1.91,2.64,15.5,3.6,69.5,38582,92.8,22.3,4560,0.9,0.5,2.1,0,0,NA,NA,NA,64237,32758,49533,12.7,5.3,6.8,7.6,7.6,1,63.1,77.3,79.1 +1613,30025,"Fallon County, Montana",Fallon County, Montana,43343,2817,92.8,0,37.2,7,3.4,74.7,20.2,NA,2.39,3.13,10.2,15.4,69.8,55332,97,16.5,1145,1,0.2,0,0,0,NA,NA,NA,100253,42214,72284,2.1,0,8.4,16.4,16.8,0,74.5,90.5,86.6 +1614,30027,"Fergus County, Montana",Fergus County, Montana,35004,11581,93.2,0.6,45.3,5.3,2.1,79.3,24.7,NA,2.16,2.68,10.8,13.7,66,38044,94.2,23.8,5200,3.3,1.4,0.1,0.8,0.7,NA,NA,NA,76413,34970,59731,12.2,3.7,15.1,34.9,15.5,3.1,71.3,77.1,86.4 +1615,30029,"Flathead County, Montana",Flathead County, Montana,36287,108445,91.4,0.3,42.1,5.4,1.7,78.2,20.8,NA,2.46,3.04,12.7,9.5,74,43561,95.6,36,43568,1.8,2.1,0.9,0.3,0.2,9.6,10.2,9.8,94808,39403,71327,9.4,2.9,9.1,4.8,5.8,0.2,81.2,88.6,90 +1616,30031,"Gallatin County, Montana",Gallatin County, Montana,41405,122194,89.7,0.5,33.8,4.8,1.2,80.8,13.3,18.8,2.35,2.89,25.6,5.7,61.5,53658,97.2,53.1,50031,3.3,1.9,1,0.4,0.6,10.2,7.7,5.3,124551,51148,87454,5.4,1.8,7.3,6.6,4.7,0.3,90.2,93.1,92.3 +1617,30033,"Garfield County, Montana",Garfield County, Montana,32552,938,97.8,1,43.9,7.8,3.8,76.4,27.6,NA,2.28,2.9,2.9,21.6,70.3,42143,96.4,21.3,407,0,0,0,0,0,NA,NA,NA,83601,35206,61750,6,0,10.9,25.8,18.8,0,73.7,80.3,91.2 +1618,30035,"Glacier County, Montana",Glacier County, Montana,23833,13713,30.5,0.2,34.2,7.6,1.4,70.3,12.8,NA,3.14,3.74,13.9,14,64.9,37843,85.6,18.1,4174,1.5,1.1,0.2,4.2,1.6,NA,NA,NA,63713,22605,45129,7,9.7,29.3,39.7,29.1,3.2,65.5,81.8,84.1 +1619,30037,"Golden Valley County, Montana",Golden Valley County, Montana,30441,840,91.5,0.7,54.8,4.8,2.3,85.5,28.2,34,2.26,2.93,0,20.2,80.7,30602,89.1,19,362,0.6,0.6,0,0.6,0.3,NA,NA,NA,70791,33523,57353,11.8,1.8,15.2,13.6,16.7,2.5,63.5,70.2,74.3 +1620,30039,"Granite County, Montana",Granite County, Montana,30557,3419,92.7,0.7,53.9,4.5,1.2,84.9,30.9,NA,2.41,2.97,6.8,8.4,76.4,35747,93,31.2,1375,0.9,0,0,0,0,NA,NA,NA,80224,36922,54646,11.1,5.6,7.9,8.6,11.5,0,76,77.2,83.5 +1621,30041,"Hill County, Montana",Hill County, Montana,32335,16260,68.8,0.3,34,8.6,1.6,71.6,15.9,13.6,2.54,3.2,9.2,13.3,66.8,40420,91.2,25.6,6226,1.2,0.5,0.1,1.6,0.9,NA,NA,NA,74611,29497,55313,6.2,4.2,8.7,4,4.7,0,70.6,84.1,81 +1622,30043,"Jefferson County, Montana",Jefferson County, Montana,38790,12501,92.8,0.1,47.3,4.4,0.7,79.8,22.8,NA,2.5,2.87,3.7,10.2,83.1,44682,94,32.7,4890,2.5,0.7,1,0.3,0.3,NA,NA,NA,107580,43037,76576,11.2,2.6,5.1,0,2.6,0.6,84.5,88.3,89.4 +1623,30045,"Judith Basin County, Montana",Judith Basin County, Montana,33788,2053,91.7,0,50.9,4,1.4,77.8,28.3,NA,2.26,2.95,2.3,10,75.3,36522,94.1,28.3,907,2.5,0.4,0.1,0.1,0.3,NA,NA,NA,87541,38715,55417,9.3,0.9,6.4,2.7,1.5,0,75.6,81.6,85 +1624,30047,"Lake County, Montana",Lake County, Montana,31210,32073,65.6,0.2,43.8,5.1,1.7,77.4,23.6,21.8,2.6,3.18,11,10.6,73.8,38980,93,30.5,12175,3.3,2.3,0.8,2.5,0.6,17.7,22.7,12,84874,33786,61965,10.3,6.2,14.1,17.9,14,0.3,78.2,83.6,83.1 +1625,30049,"Lewis and Clark County, Montana",Lewis and Clark County, Montana,41172,72580,91.5,0.6,41.3,5.4,1.5,78.6,19.9,17.5,2.31,2.93,20.6,9.5,69.7,51226,94.9,42.8,30655,1.6,2.7,0.8,0.2,0.3,8.7,7.9,8.9,100531,43263,74543,10.4,2.8,6.2,4.3,5.6,0.4,82.6,88.7,88.9 +1626,30051,"Liberty County, Montana",Liberty County, Montana,34414,1968,95.9,0,37.5,8.4,6.3,70.5,20.6,NA,2.71,3.76,17.8,10.7,64.2,42727,81.1,27.3,685,0.1,8.6,0,1,1,NA,NA,NA,80330,32500,53264,8.5,0.3,4.4,0,2.1,0.8,64.8,71.4,69.8 +1627,30053,"Lincoln County, Montana",Lincoln County, Montana,28806,20656,91.6,0.1,52.6,4.4,2.4,82,29.7,NA,2.3,2.83,7.5,16.6,79,37168,91.9,18,8858,2.8,2.4,0.3,0.1,0.7,NA,NA,NA,66504,29864,47018,13.2,5.5,14.2,10.4,14.6,0.5,76.6,78.6,86.9 +1628,30055,"McCone County, Montana",McCone County, Montana,40630,1818,91.3,0,52.4,5.5,3.6,81.1,28.7,NA,2.17,2.93,4.8,11.6,86.1,44777,96.5,21.4,818,0.7,0.4,0,0,0,NA,NA,NA,85543,38749,71842,8.5,3.2,5.8,1.4,4.2,0,76.2,86.8,82 +1629,30057,"Madison County, Montana",Madison County, Montana,35375,8975,92.6,0,54.1,3.8,2,84.3,30.6,NA,2.36,2.9,5.5,8.6,80.6,38750,95.4,34.3,3703,4.9,0.5,0.4,0.1,0.2,NA,NA,NA,85732,39413,67420,10.4,1.8,7.4,7.9,6.9,0.4,81.1,81,87 +1630,30059,"Meagher County, Montana",Meagher County, Montana,29959,1979,94.3,0.9,59.9,2.9,3.6,88,34.5,NA,2.17,2.52,0.2,20.1,82.4,37349,95.5,28.5,897,1.4,0.4,0,0,0,NA,NA,NA,74368,34766,56215,11.5,0.1,3.3,29.9,6.6,0,82.4,68.8,80.5 +1631,30061,"Mineral County, Montana",Mineral County, Montana,32765,4796,92.7,0.7,50.1,6.5,2.5,79.2,28.1,NA,2.22,2.7,5.2,17.1,80.3,40044,93.3,26.6,2132,3.4,2.3,0.2,0.2,0,NA,NA,NA,83707,37583,61117,13.7,4.7,8.3,2.7,4.6,0,80.8,80.3,80 +1632,30063,"Missoula County, Montana",Missoula County, Montana,37926,119639,87.6,0.6,37,4.6,1.7,81.6,16.6,NA,2.26,2.9,28.4,8.8,59.7,46572,96.6,45.9,51642,2.3,2.8,1.4,0.4,0.4,10.9,8,7.6,97840,43142,71246,8.5,4.1,6.4,0.3,3.1,0.2,84.6,90,92.4 +1633,30065,"Musselshell County, Montana",Musselshell County, Montana,32065,5068,88.3,0,51.3,4.1,1.9,80.4,28.8,NA,2.35,2.9,2,18.3,82.5,36490,90.4,21.9,2131,0.8,2.3,0,0.5,0.3,NA,NA,NA,81413,35879,59010,12.9,4,9,24.2,17,0.8,73.6,73,82.4 +1634,30067,"Park County, Montana",Park County, Montana,40043,17484,92.1,0.2,46.2,4.7,2.1,83,24.2,24.6,2.08,2.68,13.8,8.7,69.6,45144,96.7,38.1,8257,2.3,1.5,0.1,0,0.7,NA,NA,NA,95941,45894,66607,10.7,2.1,8.5,4,5.3,0.8,84,83,88.1 +1635,30069,"Petroleum County, Montana",Petroleum County, Montana,34554,401,99.3,0,51.5,4,2,86.8,27.9,14.2,2.01,2.49,0,23,77,40000,98.8,27.1,200,0,0,0,0,0,NA,NA,NA,79305,39877,59318,17.8,1,6.2,0,5.3,0,71,78,84 +1636,30071,"Phillips County, Montana",Phillips County, Montana,34987,4224,83.3,0.4,44.9,6.3,3.6,76.5,23.7,NA,2.32,2.88,3,15.3,74.8,43537,95.3,20.6,1769,0,0.2,0.1,0.3,0,NA,NA,NA,79818,34241,58156,9.7,4,7.5,0,0.2,0,71.9,82.4,88 +1637,30073,"Pondera County, Montana",Pondera County, Montana,29757,6012,79.3,0,41.2,6.5,2.5,76.5,21.6,NA,2.59,3.25,11.5,8.7,66.7,33874,86.8,19.5,2240,1.6,5.9,0,1.1,0.1,NA,NA,NA,72053,28921,53500,8.3,4.9,7.6,2.7,3.1,0.2,72.1,80.3,80.2 +1638,30075,"Powder River County, Montana",Powder River County, Montana,36094,1762,88.5,0,48.6,5.2,5.6,81.6,31.6,NA,2.4,2.85,2.8,18.7,77.6,46875,89.5,25.2,713,0.7,1.4,0,0,0,NA,NA,NA,96304,41750,68009,8.5,0.4,5.6,0,0,1.1,79.4,75.9,78.1 +1639,30077,"Powell County, Montana",Powell County, Montana,23476,7029,88.1,1.2,43.3,3.4,1.5,85.3,20.9,NA,2.29,2.74,9.5,14.8,69.5,31030,93.1,19,2348,0.2,1.8,2.6,0,0,NA,NA,NA,80486,30316,63432,13.2,2.7,7.6,22,12.6,0.9,66.6,74.7,78.4 +1640,30079,"Prairie County, Montana",Prairie County, Montana,23306,1251,89.8,0,49.1,4.1,2.6,78.4,33.9,NA,2.35,3.12,1.5,16.5,76.3,40000,88.5,20,520,0.6,1.3,0,0,0,NA,NA,NA,67490,29068,45192,9,1.5,5.7,0,0,0,72.1,77.1,77.1 +1641,30081,"Ravalli County, Montana",Ravalli County, Montana,34281,45807,90.7,0.4,48.9,4.3,2.4,81.2,26.5,25.3,2.42,2.91,9,8.3,78.6,40763,93.3,29.8,18779,3,2.7,0.5,0.2,0.1,NA,NA,NA,93574,39767,71323,11.6,2.5,8.8,7.4,7.7,0.8,81.6,86.3,88 +1642,30083,"Richland County, Montana",Richland County, Montana,34186,11329,90.6,0.2,38,5.9,0.9,74.7,17.2,NA,2.51,3.3,15.3,16.1,69.8,46544,96.2,19.4,4500,1.7,1,1.7,0.2,0.5,NA,NA,NA,93356,37672,69578,6,1,6.1,2.9,4.4,0,74.1,87.1,85.6 +1643,30085,"Roosevelt County, Montana",Roosevelt County, Montana,31345,10665,33.2,0.1,30.5,8.4,1.3,66.6,11.9,NA,3.48,4.99,7.2,9.5,68.6,42122,91.8,19.9,2988,0.3,0.3,0.1,1.5,0,NA,NA,NA,64512,21143,53125,6.7,9.2,29.6,32.3,29.4,4.4,58.9,72.5,68.6 +1644,30087,"Rosebud County, Montana",Rosebud County, Montana,31419,8236,54.3,0.2,36.7,7.5,1.5,71.1,16.7,15.2,2.65,3.46,12.7,15.8,66.3,40845,91.4,18.9,3069,1.9,1.6,0.4,7.3,0,NA,NA,NA,71671,28291,56430,11.6,9.4,15,32,19.8,0.5,63.7,72.8,75.3 +1645,30089,"Sanders County, Montana",Sanders County, Montana,28320,12936,89.8,0.5,54.6,3.8,2.8,82.7,32.4,NA,2.33,2.88,4,16.5,80,30473,92.2,21.6,5453,3,3,0.7,0.3,0.4,NA,NA,NA,71302,31554,54035,14,4.6,13.4,11.1,15.8,0.3,75.1,78.7,85.1 +1646,30091,"Sheridan County, Montana",Sheridan County, Montana,33460,3677,92.2,0,44.7,7.5,3.9,78.5,22.8,14.2,2.43,3.22,8.2,12.1,76.6,42337,91.5,24.7,1470,0.3,0.3,0.9,0.1,0,NA,NA,NA,94455,41202,63654,6.2,1.7,9.6,24.2,14.4,0,77.4,82.9,86.5 +1647,30093,"Silver Bow County, Montana",Silver Bow County, Montana,32070,35589,90.9,0.1,40.3,5.6,1.8,79.4,19.2,16.2,2.24,3.13,16.5,6.3,70.5,42190,94,27.7,15347,0.8,1.5,0.7,0.6,0.7,NA,NA,NA,77994,34925,57504,9.7,3.7,6.6,3.9,1.6,0,75.1,85.9,85 +1648,30095,"Stillwater County, Montana",Stillwater County, Montana,39426,9052,93.3,0.1,47.4,4.2,2.1,78.9,25,28.5,2.31,2.87,4.3,11.2,80.8,50430,93.1,29.8,3869,0.3,1.2,0.3,0.3,0.1,NA,NA,NA,111489,48923,81503,11.6,3.1,4.6,1.4,2.4,0,77.7,82.9,84.8 +1649,30097,"Sweet Grass County, Montana",Sweet Grass County, Montana,36040,3713,90.6,1.3,44,5.3,4.3,79.6,23.4,23.7,2.46,3.18,9.7,11.4,76.2,44327,96.4,23.1,1497,3.4,1.9,0.1,0.9,0,NA,NA,NA,94999,39756,69426,9.7,1.3,9.2,1.4,7.5,0.2,80.8,82.8,87.8 +1650,30099,"Teton County, Montana",Teton County, Montana,33777,6291,92.1,0.4,43,6.5,3.7,75,23.2,NA,2.43,3.13,7.5,7.1,74.9,36087,90.9,25.9,2452,1.1,2.8,0.3,0,0.8,NA,NA,NA,80657,31794,67766,7.7,1.7,5.5,1.7,3.3,0.8,76.4,84.2,84.1 +1651,30101,"Toole County, Montana",Toole County, Montana,31102,5028,84.9,1.8,38.8,5.9,1.5,79.8,17.4,NA,2.38,3.18,13.7,11,64.6,39514,86.2,21.5,1823,3.5,4.3,0.3,0.6,0.2,NA,NA,NA,77412,29977,53693,12.8,3.5,7.6,0,7.3,0,75.8,84.6,88 +1652,30103,"Treasure County, Montana",Treasure County, Montana,40156,761,93.7,0,53.4,3.7,2.9,84.2,22.6,NA,1.99,2.4,4.2,9.2,66.5,41942,94.9,32.8,382,1.6,0.3,2.6,0,0,NA,NA,NA,94624,45882,73036,9.4,0.3,5.4,2.9,0.8,0,76.2,86.1,75.9 +1653,30105,"Valley County, Montana",Valley County, Montana,32212,7540,84.9,0.6,43.2,5.5,2,77.5,24.3,15.2,2.5,3.21,12.9,5.5,77.7,37273,94.7,21.5,2958,1.4,0.9,0.1,0.4,0.2,NA,NA,NA,77051,31869,64515,8.2,3.2,6.4,2.8,3,0,73.9,82.2,84.4 +1654,30107,"Wheatland County, Montana",Wheatland County, Montana,29037,2049,95.7,1.3,47.3,3,2.1,78.1,28.9,NA,2.25,2.79,2,8,76.2,36333,92.6,17.8,865,0,0.5,0,0,0,NA,NA,NA,61451,27719,47054,10.1,1.1,17.7,55.1,25.1,0,69.5,78.4,77.3 +1655,30109,"Wibaux County, Montana",Wibaux County, Montana,39375,1148,93.6,0.9,44.2,5,1,72,23.7,NA,2.41,3.07,2.1,21.8,75,48103,97.3,25.8,468,3.6,0,0.2,0,0.9,NA,NA,NA,83737,34671,64792,10.2,0,6.3,7.4,4.9,0,78.4,78.2,88 +1656,30111,"Yellowstone County, Montana",Yellowstone County, Montana,40152,167340,86.8,0.9,38.7,5.7,2.3,76.8,17.8,18.6,2.37,2.96,18.4,9.8,69.3,47924,95.3,33.9,69272,1.9,1.4,0.8,0.8,0.5,10.2,12.3,8.3,102308,42894,74400,9.4,3.4,6.9,4.3,5.2,0.1,82.2,90,90.9 +1657,31001,"Adams County, Nebraska",Adams County, Nebraska,34508,31034,85.2,1.4,38.8,6.5,2.4,75.9,18.5,NA,2.31,2.85,16.2,4.9,68.7,45000,91.9,28.8,12900,7.7,0.7,0.8,0.1,3.1,NA,NA,NA,87748,36480,65680,6.8,1.7,5.4,2.1,2.7,0.2,79,87.3,88.2 +1658,31003,"Antelope County, Nebraska",Antelope County, Nebraska,35310,6302,94.9,0.9,42.7,6.6,3.6,75.5,24,16.8,2.32,2.94,4.1,4.5,75.6,43510,93.1,19.9,2687,2.7,0.9,0.3,0.1,0.6,NA,NA,NA,78983,34013,63750,6.7,1.5,6,2.2,5,0,71.8,81,82.6 +1659,31005,"Arthur County, Nebraska",Arthur County, Nebraska,34167,540,92.6,0,40.5,6.3,2.4,65.2,19.3,NA,2.93,3.7,0,9.2,74.5,38750,97.9,32.7,184,5.4,0,0,0,0,NA,NA,NA,87350,31870,67500,6.8,0,8.3,4.9,9,0,71.2,84.2,87 +1660,31007,"Banner County, Nebraska",Banner County, Nebraska,41739,657,92.7,0,56.6,6.7,1.8,81.6,28.8,NA,2.55,2.89,2.7,7.8,75.6,42171,90.5,32.6,258,12,0.8,2.3,0,10.5,NA,NA,NA,87378,36650,71250,12.1,4.9,6.4,0,2.5,0,73.6,82.6,83.3 +1661,31009,"Blaine County, Nebraska",Blaine County, Nebraska,31827,385,100,0,56.8,5.7,7,80.5,34,NA,2.01,2.56,0,15.1,71.4,36406,96,25.6,192,0,0,0.5,0,0,NA,NA,NA,83284,41319,61250,13.9,1.3,5.7,0,0,0,70.3,75.5,81.3 +1662,31011,"Boone County, Nebraska",Boone County, Nebraska,36687,5366,95.2,0,43.2,5.9,3.9,75.9,23.5,NA,2.39,2.9,7.8,1.5,79.2,42698,93.8,18.9,2202,1.8,0.4,0.2,1,0.5,NA,NA,NA,89450,36659,71367,6.7,0.9,4.8,0,5.3,0,70.9,83.3,82 +1663,31013,"Box Butte County, Nebraska",Box Butte County, Nebraska,40489,10754,84.7,3.4,40.7,5.2,1.7,74.8,20.2,NA,2.33,2.89,12.8,5.3,75.5,48793,92.4,20.1,4537,4.5,0.9,1.3,0,1.3,NA,NA,NA,78395,33834,68778,7.4,1.3,7.9,5.4,6.8,0,80.1,89.5,92.2 +1664,31015,"Boyd County, Nebraska",Boyd County, Nebraska,31054,1704,92.3,0.3,54.9,4,2.3,81.1,33.8,NA,2.14,2.66,1.1,5.6,83,34464,95.7,19.6,784,1.5,1.1,0,0,0.3,NA,NA,NA,77634,36652,58984,10.5,3.3,9.1,0,3.7,0.2,73.7,81.4,88.3 +1665,31017,"Brown County, Nebraska",Brown County, Nebraska,30984,2739,89.2,0.1,45.9,6.3,4,79.3,27.2,NA,2.24,3.16,10.9,4.7,73.8,35327,92.3,21.2,1208,2.3,1.5,0.9,0,1.3,NA,NA,NA,82657,37034,51538,7.5,0.4,6.5,3.5,6.5,0,78,83.3,84.4 +1666,31019,"Buffalo County, Nebraska",Buffalo County, Nebraska,36591,50323,87.8,0.9,34.6,6,2.1,77,16,NA,2.45,3.03,21.2,5.1,65.2,49949,93.5,34.6,19662,7.1,1.4,1.1,0.2,1.3,11,9.7,9.4,93211,37873,74570,6.4,2.5,7.5,2.3,5.7,0.5,77.4,90.5,90.8 +1667,31021,"Burt County, Nebraska",Burt County, Nebraska,36517,6730,91.6,0.4,44.8,5.1,3.4,77.1,24.5,NA,2.31,2.89,9.6,2.9,77.2,41357,92.2,25.7,2867,2,0.5,0,0.3,0.2,NA,NA,NA,81148,35034,57303,7.8,2.8,8.4,1.4,3.1,1.2,68.8,83.4,83.6 +1668,31023,"Butler County, Nebraska",Butler County, Nebraska,42714,8413,90.8,0.3,42.7,5.7,3,76.2,20.4,NA,2.34,2.96,8.2,4.8,80.3,53074,91.8,25.2,3538,2.9,2,0.9,0.6,1.6,NA,NA,NA,105747,44445,82603,6.7,1.4,6,4.5,4.7,0.2,71.3,82.6,86.1 +1669,31025,"Cass County, Nebraska",Cass County, Nebraska,42918,26963,92.3,0.2,41,5.5,1.9,76.4,18.3,29.1,2.53,3,6.3,3.7,83.8,54046,95.8,31.9,10561,1.8,1.2,1,0,0.4,NA,NA,NA,109350,43087,88255,11.5,1.9,5.1,3.9,6.9,0.1,83.4,88.4,90.1 +1670,31027,"Cedar County, Nebraska",Cedar County, Nebraska,39085,8344,95.9,0.2,41.9,6.3,3.6,74.4,21.9,NA,2.4,2.99,6.8,2.8,78.7,47016,96.1,25,3419,2.3,0.5,0.3,0.2,0.3,NA,NA,NA,91700,37749,73977,7.7,1.3,6.6,0.5,6.7,0,69.8,79.8,80.5 +1671,31029,"Chase County, Nebraska",Chase County, Nebraska,37833,3639,85.9,0.4,41.8,6.3,2.9,74.9,23.9,NA,2.48,3.05,3,4.5,77.5,42024,88.5,24.1,1437,11.3,0.1,1,0,1.9,NA,NA,NA,90078,36913,62782,4.9,1.9,9.5,5,1.9,1.9,73.8,87.3,87.3 +1672,31031,"Cherry County, Nebraska",Cherry County, Nebraska,34044,5468,85.6,1,43.5,5.9,4.2,76.3,22,NA,2.41,2.89,10.7,9,62,37656,97.4,24.2,2229,2.4,0.8,1.1,0.6,0,NA,NA,NA,80202,33287,63750,5.6,0.5,8,2.1,10.9,0,76,83.7,83.6 +1673,31033,"Cheyenne County, Nebraska",Cheyenne County, Nebraska,35554,9478,92,2.1,42,5.8,2.6,77.3,21.4,15.5,2.15,2.79,17.3,4.4,66.9,40721,92.9,22.1,4351,2.4,0.8,0.3,0,0,NA,NA,NA,76923,34946,57594,7.7,2.4,5.9,3.8,3,1.8,75.6,88.5,91.4 +1674,31035,"Clay County, Nebraska",Clay County, Nebraska,39575,6084,90.9,0.7,40.1,6.4,2,75.3,20.6,NA,2.42,2.89,7.3,2.3,80.6,47385,94.1,22.9,2475,4.5,1.4,0,0,0.6,NA,NA,NA,94153,38344,75938,7.1,1.2,7.9,7,8.9,0,76.6,85.5,86.6 +1675,31037,"Colfax County, Nebraska",Colfax County, Nebraska,44437,10541,51.7,3.4,35,8,1.8,69.5,13.5,NA,2.87,3.23,7.4,11.3,76.1,49493,76.7,14.1,3639,32.8,1.4,0.5,5.1,23.6,NA,NA,NA,99488,32757,79720,6.5,1.6,11.3,7.7,3.2,4.7,55.4,83.2,87.9 +1676,31039,"Cuming County, Nebraska",Cuming County, Nebraska,41123,8976,86.9,0.4,40.8,7.7,3,75.1,21.3,16.8,2.35,2.99,8.6,2.8,71.3,46146,92.1,24.8,3782,7.3,0.6,0.4,1.3,3.5,NA,NA,NA,88653,37753,70708,5.7,2.1,8.6,4.6,4.8,0,71.2,84.8,81.1 +1677,31041,"Custer County, Nebraska",Custer County, Nebraska,36260,10544,94,0.5,42.3,6.7,3,75.8,22.3,17.5,2.34,2.89,8.5,2,70.9,46834,94,25.6,4456,3.9,0.6,0.1,0,2,NA,NA,NA,88008,37311,66310,6.7,3.3,7.2,2.1,5.3,0.1,70.2,82,81.6 +1678,31043,"Dakota County, Nebraska",Dakota County, Nebraska,37961,21331,47.7,8.1,32.1,8.4,1.8,70.7,13,14.1,2.9,3.49,22.3,9,64.6,43054,81.1,15.1,7299,23.4,0.5,4,7.3,11.6,NA,NA,NA,85144,29781,71655,4.7,4.3,7.8,2.8,2.2,1.5,69.7,88.4,83.3 +1679,31045,"Dawes County, Nebraska",Dawes County, Nebraska,27025,8212,88.6,1.4,35.2,5.4,4.2,82,19.4,NA,2.18,2.86,15.3,7.4,65.7,40539,95.7,35.2,3381,3.1,1,1.2,1,2.8,NA,NA,NA,70382,29623,54381,4.8,1.6,10.1,3.3,8.1,1.4,71.1,85.2,83.1 +1680,31047,"Dawson County, Nebraska",Dawson County, Nebraska,37998,24020,62,7,35.8,7.8,1.9,72.2,16.4,NA,2.64,3.18,15.1,8,64.7,43852,77.8,17.5,8982,26.2,0.6,1,4.3,12.3,NA,NA,NA,86799,37634,65383,5.1,1.3,11.5,6.1,8.5,1.7,66.1,86.2,83.2 +1681,31049,"Deuel County, Nebraska",Deuel County, Nebraska,32083,1865,90.3,0,50.7,6.3,4.4,80.4,26.4,26.3,2.25,2.78,2.9,2.4,82.7,42643,91.3,22.5,825,4.1,0.4,0.2,0,0.2,NA,NA,NA,91302,40271,61438,11.3,3.7,10.6,3.8,2.6,0,73,81.3,85.6 +1682,31051,"Dixon County, Nebraska",Dixon County, Nebraska,36981,5561,83.7,0.3,42.1,6.2,1.9,75,21.2,22.6,2.45,3.09,5.5,3.9,77.3,41512,84.3,23.7,2237,8.8,0.2,0.1,0.3,4,NA,NA,NA,96634,39214,69156,9,1.8,8.9,8.4,8.9,0.2,62.3,83.9,82.4 +1683,31053,"Dodge County, Nebraska",Dodge County, Nebraska,40024,37146,86,0.5,38.9,6.4,3.1,74.9,19,18.6,2.43,3.01,14.4,3.4,66.8,46853,89.2,21.5,14863,9.8,0.9,0.4,0.9,1.9,NA,NA,NA,85422,34866,71294,8.4,2.5,6.2,2.1,2,0.3,76.5,87.8,88.2 +1684,31055,"Douglas County, Nebraska",Douglas County, Nebraska,43808,585461,70.8,10.6,35.5,7,1.4,74.5,13.8,20,2.44,3.14,27.4,0.9,61.7,53967,91.5,42.2,235080,8.6,2.9,2.3,1.4,2.8,11.2,13.5,8.7,111694,45178,79081,6.3,3.2,8.7,5,6.1,0.9,81.2,90.6,91.5 +1685,31057,"Dundy County, Nebraska",Dundy County, Nebraska,37058,1811,96.1,0.3,45.6,7.3,4.7,79.5,24.7,NA,2.2,3.02,6.8,3.9,76.9,48388,95.2,23.3,804,2.9,0.4,0,0,0,NA,NA,NA,80081,37387,56563,4.7,0.4,5.2,4.1,3.1,0,65.8,77.1,83.5 +1686,31059,"Fillmore County, Nebraska",Fillmore County, Nebraska,37162,5551,94.8,0.3,46.3,6,4.6,80.4,23.8,20.6,2.26,2.86,7.8,1.5,80.1,41664,94.7,21.9,2382,1.4,1.1,0,0,0.2,NA,NA,NA,105116,43413,76354,7.3,0.7,4.2,1.5,1.3,0.2,74.1,81.2,81.2 +1687,31061,"Franklin County, Nebraska",Franklin County, Nebraska,32377,2868,94.3,0.2,49,5.5,6.2,79.7,27.9,18.8,2.17,2.7,2.6,2.9,79.5,37548,94.2,20,1290,2,1.1,0,0.5,0.2,NA,NA,NA,83438,37400,57692,7.1,3.2,6.7,0.9,4.9,0,68.9,80.9,81.2 +1688,31063,"Frontier County, Nebraska",Frontier County, Nebraska,36531,2562,93.2,1.2,42.8,5.4,4.6,78.9,25.4,NA,2.32,2.88,7.5,3.6,71.9,45859,92.9,26.1,1053,3,1.7,0,0.2,0.7,NA,NA,NA,75783,32184,68207,6.3,4,7.2,7.5,7.4,1.2,68.7,84,73.2 +1689,31065,"Furnas County, Nebraska",Furnas County, Nebraska,35013,4605,94.6,0.3,46.4,5.7,3.5,78,25.5,16.5,2.25,2.85,6.9,1.9,76.9,43623,90.6,22.3,2006,4.2,0.6,0.1,0.2,0.6,NA,NA,NA,74885,33112,60625,7.9,1.3,6.4,0,2.3,0,66,81,74.9 +1690,31067,"Gage County, Nebraska",Gage County, Nebraska,34438,21646,94.8,1,42.8,5.4,3.5,77.1,21.9,22,2.3,2.87,11.7,1,72.3,44841,92.8,22.1,9162,2.4,1.8,0.3,0.1,0.1,NA,NA,NA,82250,35827,64426,7.4,1.6,5.2,1.7,2.7,0.3,70,81.4,86.2 +1691,31069,"Garden County, Nebraska",Garden County, Nebraska,29203,1620,94.8,0.1,54.1,3,4.4,82.1,31.9,10.7,1.92,2.71,2.5,7,78.4,32153,95.2,20.7,827,1.9,0.4,0.5,0,0.5,NA,NA,NA,62118,31288,44777,12,1.4,9.2,0,20.2,0,75.7,84.3,82.8 +1692,31071,"Garfield County, Nebraska",Garfield County, Nebraska,30125,1797,97.4,0.4,45,4.8,4.4,78.4,27.6,NA,2.31,2.74,4,7.2,74.4,41722,95.4,32.7,750,0,0,0.7,0,0,NA,NA,NA,82834,35332,68611,8.3,0.8,5.5,0,6.1,0,75.6,86.7,82.3 +1693,31073,"Gosper County, Nebraska",Gosper County, Nebraska,36420,1929,95,0,49.2,4.6,2.2,81.1,25.2,NA,2.44,2.95,2.6,5,82.1,48990,95.5,28.8,777,2.8,0.3,0,0,0,NA,NA,NA,89464,38340,79145,7.3,1,11.5,12.4,10.5,0.2,77.7,91.1,83.5 +1694,31075,"Grant County, Nebraska",Grant County, Nebraska,30511,695,94.5,0.3,37.8,7.2,2.4,76.5,20.6,NA,2.29,3.15,3.1,8.5,68.5,37604,92.6,29.4,295,1.4,0,0,2.7,0,NA,NA,NA,81805,34449,69063,4.1,0.7,8.6,11.1,3.4,0,66.1,91.2,80.7 +1695,31077,"Greeley County, Nebraska",Greeley County, Nebraska,32431,2211,92.8,0.6,44.5,6.2,5.4,76.5,25.8,18.8,2.32,2.96,5.5,3.9,82.3,44107,93.5,18.4,941,0.5,0.2,0,0.1,0.2,NA,NA,NA,71584,31028,58894,11.4,1.6,4.5,4,1.8,0.5,65.4,81.2,85.2 +1696,31079,"Hall County, Nebraska",Hall County, Nebraska,38170,62431,68.2,3.6,36,7.5,2,72.4,15.4,17.6,2.52,3.1,24.1,4.4,63.2,45806,84.7,21.1,24406,23,0.6,0.7,2.3,8.4,11.8,15.1,11.2,87509,34636,67549,5.7,2.7,12.4,6.8,7.1,0.8,69.6,87.7,87.9 +1697,31081,"Hamilton County, Nebraska",Hamilton County, Nebraska,39919,9438,93.5,0.2,41.3,6.2,2.6,75.4,20.5,20.9,2.66,3.12,4.1,1.8,83,47835,97.1,29.6,3499,1.9,0.1,0.1,0,0,NA,NA,NA,97863,37482,79884,7.5,2.4,5.8,4.8,2.7,0,83.5,88.4,91.8 +1698,31083,"Harlan County, Nebraska",Harlan County, Nebraska,34760,3006,94.1,0.2,47.1,5.8,3.6,76.7,26.9,NA,2.46,3.17,3.3,4.5,84.8,50690,92.5,24.2,1200,3.1,0.3,0.8,0,1.8,NA,NA,NA,96144,39947,70536,8.5,0.7,8.4,3.9,6,0.5,73,84.6,79.9 +1699,31085,"Hayes County, Nebraska",Hayes County, Nebraska,33056,854,92.7,0,48.7,5.6,4.9,78,25.9,NA,2.39,3.07,0,10.6,71.1,35417,94.7,15.9,357,5.3,0,0.6,0.3,1.7,NA,NA,NA,79177,36639,60313,11.4,0.3,5.5,0,6.8,0,67.2,83.8,80.7 +1700,31087,"Hitchcock County, Nebraska",Hitchcock County, Nebraska,30948,2601,95.1,0.1,44.7,6.2,4.1,76,26.1,20.2,2.28,2.95,2.9,6.4,79.1,35612,93.2,19.8,1125,1.2,0.2,0.5,0,0,NA,NA,NA,70098,31032,52016,9.4,2.5,7.2,14.3,6.6,0,66,78.4,76.4 +1701,31089,"Holt County, Nebraska",Holt County, Nebraska,36138,10093,93.7,0.3,41.8,6.5,3.5,74.8,22.5,NA,2.45,3.08,7.6,5.3,72.8,40878,93,27,4064,4.7,0.8,0.3,0,1.6,NA,NA,NA,88396,36251,67225,7.1,1.5,7,3.3,3.5,0,72.2,82.1,82.9 +1702,31091,"Hooker County, Nebraska",Hooker County, Nebraska,33750,613,87.1,1.8,44.8,4.1,10.4,84,27.6,NA,1.79,3.05,6.1,2.2,59.9,45461,93.7,20.7,314,1.6,0,0,0,0,NA,NA,NA,61851,33363,45854,4.6,4.8,8.3,3,1,0,63.4,73.2,71.3 +1703,31093,"Howard County, Nebraska",Howard County, Nebraska,38162,6492,93.4,0.5,42.3,6.8,3.6,74.6,22.2,NA,2.58,3.12,5.3,3.3,74.1,44193,95.2,23,2494,2.2,0.5,0,0,0.5,NA,NA,NA,87091,35045,74508,7.7,3.2,7,0,8.1,2.6,69.6,81.3,81.3 +1704,31095,"Jefferson County, Nebraska",Jefferson County, Nebraska,36719,7155,93.4,0.6,44.7,5.8,3.4,77.2,24.7,18.8,2.26,2.97,12.3,1.6,72.2,43831,93.1,19.7,3114,4.8,1.5,0,0,1.5,NA,NA,NA,73820,31576,60568,7.1,1.3,7.7,7.2,4,0.5,70.2,78,79.1 +1705,31097,"Johnson County, Nebraska",Johnson County, Nebraska,35770,5263,79.9,4.7,40.1,4.8,2.4,80.5,18.4,NA,2.46,3.09,7.5,2.6,68.5,42415,88.4,19,1750,7,0.1,0.6,0.2,1.8,NA,NA,NA,73510,25942,59457,6.8,1.7,5,2,1,0,73.8,83.3,84.6 +1706,31099,"Kearney County, Nebraska",Kearney County, Nebraska,43193,6697,93.1,0,40.3,6.1,3,74.7,20.1,21.5,2.43,3,4.5,4.5,78.4,48202,94,32.9,2730,2.6,0.9,0.2,0,0.2,NA,NA,NA,104859,41967,79167,6.8,1.2,5.2,2.5,4.6,0,74.8,88.2,88 +1707,31101,"Keith County, Nebraska",Keith County, Nebraska,34640,8239,88.3,1.3,49,4.6,4.2,79.3,27.6,NA,2.07,2.72,12.9,6.6,70.8,43954,90.8,21.3,3946,4.9,0.7,0.8,0,2.9,NA,NA,NA,75280,35660,58132,8.3,1.7,6.9,6.4,2.8,0.1,73.5,83,85.9 +1708,31103,"Keya Paha County, Nebraska",Keya Paha County, Nebraska,31719,939,93.8,0.1,49,4.8,4,75,24.8,NA,2.87,3.4,0,8.9,80.1,43625,96.8,25.7,327,0.9,3.1,0,0,0,NA,NA,NA,84909,33388,60313,6.4,0.6,6.3,12.5,4.2,0,77.1,75.2,84.1 +1709,31105,"Kimball County, Nebraska",Kimball County, Nebraska,33432,3348,87.1,1.3,48.5,4,4.6,80.6,27.2,NA,2.14,2.75,4.2,9.7,71.9,37500,89.2,14.3,1531,3.2,0.3,0,2.1,2.7,NA,NA,NA,74329,33603,59438,5.7,0.2,16.8,10.2,10.4,0,71.2,83.5,85 +1710,31107,"Knox County, Nebraska",Knox County, Nebraska,32508,8362,86.1,0.6,44.5,5.9,3.4,76,25.4,20.1,2.54,3.17,6.1,2.8,78.6,41530,92.7,19.7,3235,2.8,1,0.6,1,0.2,NA,NA,NA,79345,32687,64821,8.2,3.1,6.1,3.3,5.5,0.4,68.6,80.4,83 +1711,31109,"Lancaster County, Nebraska",Lancaster County, Nebraska,38427,323673,82.3,3.8,34.3,5.9,1.6,77.4,14.9,NA,2.35,3.01,31.2,1.5,58.8,50181,93.5,41.1,132162,5.4,3.5,3.3,1.3,2.4,11.7,11.6,7.6,99064,40663,72625,5.8,2.7,6.3,3.7,3.7,0.6,84.2,91.7,92.2 +1712,31111,"Lincoln County, Nebraska",Lincoln County, Nebraska,35291,34122,89.5,0.8,42.4,5.6,2.5,76.9,20.5,15,2.29,2.87,12.9,7,64.2,43270,93.4,20.4,14585,4.4,1.2,0.5,0,1,NA,NA,NA,78527,34117,64342,8.8,2,7.8,0.7,5.4,0,70.5,88,88.1 +1713,31113,"Logan County, Nebraska",Logan County, Nebraska,38000,812,90.1,1.6,44.8,6.2,2.2,72.3,21.1,NA,2.61,3.1,0.3,6.4,78.5,42778,98.2,26.7,311,3.9,2.3,0,0,0,NA,NA,NA,104642,38059,71650,6.6,0.9,6.9,0,5.2,0,78.5,80.7,85.2 +1714,31115,"Loup County, Nebraska",Loup County, Nebraska,29625,564,86.2,0,47.1,4.4,1.1,78.9,27,23.8,2.27,2.95,0,14.1,66.3,35357,100,26,249,4,0,0,0,0,NA,NA,NA,66439,32676,60156,7.9,0,12.1,0,6.6,0,77.9,85.9,85.9 +1715,31117,"McPherson County, Nebraska",McPherson County, Nebraska,30179,463,99.4,0,46.6,2.8,1.5,79.5,21.6,NA,2.36,2.73,0,2,73,28409,96.4,24.4,196,1,1,0,0,0,NA,NA,NA,80734,34279,61316,6.5,0,3.7,0,0,1,71.4,88.8,93.9 +1716,31119,"Madison County, Nebraska",Madison County, Nebraska,36803,35535,81.4,0.9,37.1,7,3.1,74.6,17,14,2.44,3.18,21.5,3.8,67.5,45950,92.2,23.5,14152,9.7,1.3,1.1,0.1,3.6,NA,NA,NA,88101,35734,64637,5.9,2.2,8.2,9.8,7.8,0.8,71.2,86.7,84.2 +1717,31121,"Merrick County, Nebraska",Merrick County, Nebraska,35340,7696,92.6,0.1,42.8,5.7,2.8,77.2,21.2,NA,2.35,2.96,5.8,3.2,80.6,44868,92.4,17.6,3210,3.2,1.4,0.5,0.1,0.4,NA,NA,NA,80526,34539,62849,7.9,0.7,7.8,3.9,4.3,0.1,70,83.9,86.2 +1718,31123,"Morrill County, Nebraska",Morrill County, Nebraska,31529,4544,85.3,0.1,41.3,6.3,3,77.6,21.3,NA,2.34,3.02,5.1,6.8,78,39594,90.9,21.8,1890,7.5,3.1,0.8,0,2.3,NA,NA,NA,78536,33101,59773,7.5,3.6,6,0,0.8,0,68.9,77.8,80.1 +1719,31125,"Nance County, Nebraska",Nance County, Nebraska,32909,3342,95.1,0.3,43.6,5.5,3.1,76.6,21,26.8,2.39,3.02,6.3,0.7,78.7,40000,92.6,18.4,1346,1.9,1.2,0,0,0.6,NA,NA,NA,81309,32738,65438,7.1,3,6.5,8.9,2.6,0,72.5,81.9,82.8 +1720,31127,"Nemaha County, Nebraska",Nemaha County, Nebraska,31224,7035,90.3,1.2,39,5.7,2.6,77.9,20.6,NA,2.32,3.04,13.4,2,70.6,42668,89.4,29.2,2812,4.7,0.6,0.6,0.6,2.5,NA,NA,NA,88735,36578,60132,7.6,5.2,10.3,7.6,5.7,0,72.8,82.7,81.3 +1721,31129,"Nuckolls County, Nebraska",Nuckolls County, Nebraska,36763,4089,94.3,0.2,50.5,4.8,2.5,81.3,28.3,18.7,2.2,2.83,5.9,2.4,81.5,41488,92.1,26.6,1819,1.4,0.3,0.5,0.1,0,NA,NA,NA,90509,40215,70201,9.4,1.2,11.1,4.5,15.9,0.8,73.1,81.1,83.9 +1722,31131,"Otoe County, Nebraska",Otoe County, Nebraska,41115,16075,88.3,0.8,41.8,5.6,3.2,75.8,20.4,NA,2.47,3.1,7.8,3.3,80.2,52127,93.5,27.2,6423,4.5,1,0.3,0.3,2.7,NA,NA,NA,100837,41885,81430,8.2,2.3,5.4,2.6,2,0,78.9,86.6,92.1 +1723,31133,"Pawnee County, Nebraska",Pawnee County, Nebraska,30686,2539,95.4,0.2,47.1,6.9,3.6,75.9,28.4,20.1,2.33,3.05,3.2,2.6,80.9,38641,87.9,20.4,1077,1.1,4.3,0,0.6,0.7,NA,NA,NA,68894,29935,54926,8.3,2.1,9.2,0,10.6,0,59.4,74.2,77.9 +1724,31135,"Perkins County, Nebraska",Perkins County, Nebraska,35654,2835,91.7,0,41,5.3,4.9,75.2,23.4,14.6,2.41,3.03,6.8,4.8,77.7,41164,92.7,25.7,1162,2.9,0.5,0,0,1.2,NA,NA,NA,85470,36539,67500,9.5,1.5,5.7,0.5,3.4,0.5,75,84,88 +1725,31137,"Phelps County, Nebraska",Phelps County, Nebraska,35800,8983,92.8,0.8,40.7,6.4,3.7,75.8,20.6,14.6,2.29,2.97,15,3.8,69.9,45400,92.1,26.7,3819,4.5,1.1,0,0.1,2.7,NA,NA,NA,90370,39646,65988,8.1,0.8,5.8,3.2,4.1,0.5,73,85.4,83.3 +1726,31139,"Pierce County, Nebraska",Pierce County, Nebraska,36189,7312,95.3,0.4,39.7,7.1,2.1,74.6,19.6,21.3,2.52,3.05,3.6,3.3,78.5,44837,94.4,22.9,2859,1.4,0.3,0.2,0,1,NA,NA,NA,88305,35469,75938,6.8,2.3,6.2,3.1,3,1,73.3,83.2,86.8 +1727,31141,"Platte County, Nebraska",Platte County, Nebraska,41394,34358,79.6,0.8,38.4,6.8,2.7,73.3,17.8,NA,2.53,3.19,14.3,5,72.5,45918,89.8,24.1,13398,16,0.7,0.3,0.3,4,NA,NA,NA,92116,37137,72335,5.4,2.5,6.9,1.1,2.6,1.3,76,85,87.3 +1728,31143,"Polk County, Nebraska",Polk County, Nebraska,37111,5209,92.2,0.1,43.7,5.1,3.7,77.7,23.1,NA,2.49,3.09,5.7,2.9,81.6,49100,93.3,18.6,2058,3.7,0.8,0.7,0.5,0.5,NA,NA,NA,89903,36569,71771,8.2,1.2,7.4,10.1,7.7,0.2,74.9,85.9,85.4 +1729,31145,"Red Willow County, Nebraska",Red Willow County, Nebraska,34747,10611,90.2,0.8,41.2,6.2,3.9,77.9,21,11.9,2.32,3.15,11.3,4.5,73.2,41216,95.3,26,4442,2.2,0.2,0.5,0.3,0.8,NA,NA,NA,83794,36390,60000,6.1,1.3,10.7,7.3,7,0,76.2,84.4,84.3 +1730,31147,"Richardson County, Nebraska",Richardson County, Nebraska,32889,7797,91.6,1.2,45.9,5.1,4.1,78.3,24.4,19.6,2.15,2.79,5.9,1.3,74.5,40179,91.7,22.4,3563,1.1,0.3,0,0.2,0.2,NA,NA,NA,77469,35481,55578,6.7,2.8,7.9,14.1,5.5,0.1,67.2,75.7,82 +1731,31149,"Rock County, Nebraska",Rock County, Nebraska,36827,1335,98.5,0.1,45.2,5.9,4,77.5,25.6,NA,2.21,2.68,2.6,5.7,75.8,42240,94.3,29,582,1.9,1,0,0,0.7,NA,NA,NA,84098,35740,57500,3.5,0.6,6.4,15.1,5.9,0,82.1,85.7,79.2 +1732,31151,"Saline County, Nebraska",Saline County, Nebraska,37025,14642,72.8,0.5,37.4,6.7,2.4,74.2,15.5,NA,2.7,3.2,10.8,4.6,73.6,47858,79.8,20.1,5166,19.5,1.8,1.1,0,3.9,NA,NA,NA,90911,33299,77027,6.2,2.2,9.7,3.7,8.2,0,71.8,84.3,82.9 +1733,31153,"Sarpy County, Nebraska",Sarpy County, Nebraska,49988,194051,81.7,4.1,35.5,6.7,1.3,73.3,12.5,21,2.66,3.15,19.6,0.9,70.6,60551,95.7,41.9,72661,6.6,1.9,2.2,0.6,1.2,5.2,5.2,6.3,121934,46140,101402,12.8,2.1,4.7,2,2.3,0.5,88.9,93,94.8 +1734,31155,"Saunders County, Nebraska",Saunders County, Nebraska,43860,22761,94.1,0.7,40.4,6.2,2.4,75.1,18.2,NA,2.55,3.09,7.6,2.6,81.7,52990,96.1,30.3,8820,0.9,1.1,0.7,0,0,NA,NA,NA,106904,41922,89395,7.7,1.9,4.2,1.4,1.7,0.3,80.9,88.2,91.2 +1735,31157,"Scotts Bluff County, Nebraska",Scotts Bluff County, Nebraska,35815,35937,79.7,0.6,39.8,6.3,3.4,75.7,20.4,NA,2.33,2.98,16.1,4.6,68.3,43142,89.5,25.9,15093,12.4,0.7,0.9,0.3,1.8,NA,NA,NA,78307,34209,60960,7.1,3.3,9.8,4.7,6.3,0.5,68.9,80.6,82.9 +1736,31159,"Seward County, Nebraska",Seward County, Nebraska,38831,17636,95.2,0.7,37.6,5.5,2.6,76.5,17.8,20.6,2.46,2.9,12.8,1.4,72.1,52463,94.9,31.6,6645,3,1,0.7,0,0.3,NA,NA,NA,99411,38045,81122,6.6,1.4,5,2.9,5.3,0.1,80,87.1,88.9 +1737,31161,"Sheridan County, Nebraska",Sheridan County, Nebraska,31836,5058,82.1,0.6,46.6,6.1,4.9,78.6,27.2,NA,2.31,2.74,5.3,7.8,69.8,39577,90,21.7,2122,2.7,1.4,1.5,0.8,0.5,NA,NA,NA,83528,37162,56900,9.8,1.4,11.9,10.3,9.9,0.7,71.4,77.9,83.4 +1738,31163,"Sherman County, Nebraska",Sherman County, Nebraska,35590,2974,93.9,0.6,47.9,5.8,3.7,78.1,27.5,NA,2.26,2.88,3.9,7,76.4,41793,91.3,18.8,1294,2,1.8,0,0.1,0,NA,NA,NA,73202,32460,61935,7.4,2.5,5.9,2.4,4,0.3,64,78.4,77 +1739,31165,"Sioux County, Nebraska",Sioux County, Nebraska,31181,1197,94.7,0.3,41.5,7.9,2.9,77.8,23.9,NA,2.62,3.22,3.3,7.4,56.5,38235,95.4,25.1,457,4.2,0,0,0,3.5,NA,NA,NA,73691,29650,54076,7.5,3.9,9,35,19.5,0,68.7,85.8,77.9 +1740,31167,"Stanton County, Nebraska",Stanton County, Nebraska,39236,5835,91.1,0.2,42,5.7,3.4,75.9,20.2,22.5,2.52,3.15,5.8,3.3,77.3,45979,95.2,22.3,2289,2.5,0.9,0,0,0,NA,NA,NA,97831,38981,78275,7.6,0.1,5.4,5.4,6.6,0,73.3,80.7,82.5 +1741,31169,"Thayer County, Nebraska",Thayer County, Nebraska,35109,4938,94.2,0.1,46.2,5.3,4.7,77.1,25,NA,2.31,2.95,5.7,1,75.6,40838,94.4,23,2082,2.7,1,0.5,0.1,1.2,NA,NA,NA,80688,34314,63095,7.2,2.9,6.4,9,5.2,0.2,71.6,83.3,86.2 +1742,31171,"Thomas County, Nebraska",Thomas County, Nebraska,39063,626,88.2,1.3,45.1,3,0.2,83.4,33.1,NA,1.97,2.33,1.6,3.8,69.8,46458,93.1,26.9,318,3.8,0,0,0,3.8,NA,NA,NA,83742,42157,72708,7.7,0,4.5,0,13.5,0,82.1,96.9,92.5 +1743,31173,"Thurston County, Nebraska",Thurston County, Nebraska,33317,6666,36.9,0.2,28.7,9.2,1.2,65.6,12.5,22.5,3.32,4.06,11.5,4.4,61.1,41621,92.4,20.2,1983,1.5,0.3,0.9,5.7,0.3,NA,NA,NA,78288,25128,64838,5.8,10,15.4,6.5,8.9,0.8,64.1,86.8,81.8 +1744,31175,"Valley County, Nebraska",Valley County, Nebraska,38013,4094,96.3,0.1,45.4,5.7,2,77.7,24.7,NA,2.21,2.77,10.5,2.3,72.9,41329,94.4,27.6,1822,2.5,1.6,0.2,0.3,0.2,NA,NA,NA,86425,38033,58902,7.6,0.5,6,0.7,2.7,0,70.4,82.1,81.1 +1745,31177,"Washington County, Nebraska",Washington County, Nebraska,46747,20989,94.7,0.2,42.6,5.5,1.8,75.8,18.9,NA,2.48,3.02,10.9,3.1,82.2,64435,95.9,36.5,8391,2.9,1.2,0.1,0.1,0,NA,NA,NA,112711,46114,90188,7.4,2,4.5,4.3,4.3,0.6,84.7,89.4,92.4 +1746,31179,"Wayne County, Nebraska",Wayne County, Nebraska,32093,9786,89.7,1,31.6,4.9,2.5,79.8,16.3,NA,2.24,2.76,17.5,2.2,68,45009,95.1,29.4,3762,6.3,0.7,1.7,0.1,0.2,NA,NA,NA,80553,31864,67687,4.1,1,5.1,6,5.6,0.3,84.3,89.7,89.3 +1747,31181,"Webster County, Nebraska",Webster County, Nebraska,36436,3385,93.6,0.1,44.6,5.4,3,77.2,22.5,NA,2.2,2.63,7.3,2.2,81.3,43140,93.9,21.9,1503,3.3,0.7,0.3,0.2,0,NA,NA,NA,84246,35259,65197,8.2,0.8,5.8,1.8,3.2,0,76.2,86.7,90 +1748,31183,"Wheeler County, Nebraska",Wheeler County, Nebraska,37366,785,97.3,0,59.9,9.6,4.3,83.4,32.2,NA,2.19,2.78,4.2,5.8,80.8,45884,97.8,29.6,359,3.9,0,0.3,0.8,1.1,NA,NA,NA,83605,39076,55893,8.7,2,4.6,8.5,8.2,0,68.2,74.1,76 +1749,31185,"York County, Nebraska",York County, Nebraska,36990,14231,90.3,1.2,39,6.2,2.6,76.7,20.1,13.8,2.4,2.95,15.9,2.6,74.6,45438,91.7,23.9,5589,4.1,2,0.6,0.1,0.2,NA,NA,NA,91015,36571,74058,6.8,1.3,4.9,7.8,4.7,1,78,87.6,91.8 +1750,32001,"Churchill County, Nevada",Churchill County, Nevada,37259,25614,75.7,2.5,39.8,6.2,2.1,77.5,19.5,NA,2.58,3.33,12.4,17.2,68.1,47645,92,18.6,9728,7,1,2.7,0.8,0.7,NA,NA,NA,91460,37304,73268,15.3,5.8,8.8,2.7,5.9,0.8,78.5,87.8,88.5 +1751,32003,"Clark County, Nevada",Clark County, Nevada,37743,2293764,47.1,12.1,38.3,5.8,1.3,77.5,15.6,25.2,2.68,3.32,29.3,2.8,57,45653,86.8,27.3,847378,21.2,3.7,8.9,1.6,6.3,13.2,18.1,10.6,101010,38654,73845,7.9,7,12.1,6.5,8.3,1.6,81.4,91.9,90.5 +1752,32005,"Douglas County, Nevada",Douglas County, Nevada,43448,49624,81.9,0.1,54.2,3.5,3,84.6,31.6,NA,2.34,2.71,9.5,7.3,78.4,52311,93.7,32.1,21096,8.9,2.5,1,0.5,0.7,NA,NA,NA,122321,52915,88018,11.5,3.1,5.9,4,7.1,0.5,85.8,88.8,93.4 +1753,32007,"Elko County, Nevada",Elko County, Nevada,42810,53852,69.6,0.9,35.4,6.8,0.8,73.2,12.7,NA,2.71,3.31,14,25.2,70.4,53660,87.2,17.5,19546,17.2,1.4,1.6,1.2,2.3,11,14.5,10.7,101551,39474,83427,6.9,4.4,8.9,8.4,5.5,0.9,74.7,89.2,88.4 +1754,32009,"Esmeralda County, Nevada",Esmeralda County, Nevada,23204,962,88.5,0.3,55.8,2.7,0.9,90.9,26.5,NA,1.94,2.7,29.8,27.6,47.7,42557,77.3,24.1,493,11.2,0,2.6,0,2.8,NA,NA,NA,59957,31096,NA,11.7,0,6.9,0,6.8,0,84.8,54.6,91.9 +1755,32011,"Eureka County, Nevada",Eureka County, Nevada,36375,1660,84.7,0.1,50.1,5.5,2.5,79.3,23.1,NA,2.63,3.18,3.8,62.2,85.4,62331,95.5,18.1,630,1.9,0,0.3,1.1,1.1,NA,NA,NA,81005,32518,73095,5.9,0,10.4,0,7.1,7,75.1,90.5,90.5 +1756,32013,"Humboldt County, Nevada",Humboldt County, Nevada,39760,17299,72.3,0.7,37.6,6.7,1.1,73.8,16.1,29,2.45,3.08,10.4,33.2,73.6,56856,87.2,19.8,6997,18.1,0.2,0.8,1.7,4.6,NA,NA,NA,95024,37798,79946,7.9,5,8,5.8,6.2,0.6,69.9,89.1,88.4 +1757,32015,"Lander County, Nevada",Lander County, Nevada,40605,5745,82.1,2.5,37.3,5.1,1.2,72.9,13.2,23,2.48,2.89,11.1,47.9,66.9,63487,89.2,16.6,2296,14.8,0.7,0.6,0.7,2.7,NA,NA,NA,96037,38889,84474,5.5,9.3,5.1,2.3,2.2,0,75.5,92.9,95.2 +1758,32017,"Lincoln County, Nevada",Lincoln County, Nevada,42317,4452,85.6,4.2,43.6,3.7,1,78,18.9,NA,2.47,3.14,6,12.5,73.7,55897,94.1,19,1626,3.3,0,0,1.2,0,NA,NA,NA,87631,35524,69496,15.7,2,10.2,0,7.9,0,73.7,81.4,80.9 +1759,32019,"Lyon County, Nevada",Lyon County, Nevada,38105,60630,77,1.2,42.9,5.2,1.4,79.2,21.7,NA,2.58,3.07,6.9,17.9,76.6,47841,87.7,17.2,23423,12.9,1.8,1.4,0.4,1.5,11,11.6,13,92100,37349,73460,12.5,6.5,9,7.6,7.9,1.4,80.2,89.3,91.1 +1760,32021,"Mineral County, Nevada",Mineral County, Nevada,30140,4557,59.6,2.9,41.9,7.5,2.3,77.3,27,NA,2.58,3.26,1.7,20.2,74,42738,90.7,11.5,1732,11.4,0.1,0.1,4.2,0,NA,NA,NA,62799,26359,50584,15.8,5.6,9,3.4,11.2,0.9,76.6,84.3,84.5 +1761,32023,"Nye County, Nevada",Nye County, Nevada,30570,53207,75.3,2.6,52.4,4.1,2.4,83.6,31,NA,2.38,2.9,7.3,32,75.2,42301,86.7,12.7,21943,8.5,3.2,2.2,0.3,1.7,15.5,19.7,12.5,76468,32336,55975,16.2,9.9,9.2,6.7,8.3,0.8,75,85.2,80.8 +1762,32027,"Pershing County, Nevada",Pershing County, Nevada,33467,6505,73.5,4.2,40.9,4.7,2.1,83.2,16.6,NA,2.54,3.18,9.4,48.5,74.3,42694,85.6,9.3,1847,16.2,0,0.5,0.8,0.8,NA,NA,NA,84862,26884,72007,8.3,6.9,8.8,3.8,6.8,2.9,72.3,85.5,88.5 +1763,32029,"Storey County, Nevada",Storey County, Nevada,45708,4139,87.7,1.9,56.8,3.1,2.5,88.4,39,NA,2.2,2.84,0,15.3,97.4,51398,89.9,31.6,1874,3.9,2.2,1.1,0,1.1,NA,NA,NA,110274,50554,96000,13.9,7.2,4.6,0,0,0,87.1,90,94.1 +1764,32031,"Washoe County, Nevada",Washoe County, Nevada,42464,491770,65.5,2.4,38.9,5.4,1.6,79,17.3,NA,2.48,3.02,29.3,5.7,59.5,50283,88.7,33.2,195725,15.2,3.1,4,0.6,2.9,10.7,12.2,9.9,116699,46857,85600,7.8,4.4,9.7,5.4,6.7,0.9,84,91.4,90.3 +1765,32033,"White Pine County, Nevada",White Pine County, Nevada,38706,8856,77.5,7,41.7,3.5,1.2,81.4,19.9,NA,2.18,2.68,7,17.9,77.5,57342,88.3,14.2,3407,4.8,0.9,0.6,0.7,0.3,NA,NA,NA,79648,30635,72294,9.6,5,4.5,0,4.5,0,64.3,78.5,85 +1766,32510,"Carson City, Nevada",Carson City, Nevada,38021,58364,72,2,42.1,5.1,2.6,79.8,20.8,21.3,2.36,2.92,23.9,8.4,63.2,43662,89.1,24.5,23652,17.6,1.8,2.2,0.5,2.2,11.1,14.9,10,93302,38222,71809,9.2,3.7,10.8,6.7,5.7,0.1,79.2,86.4,90 +1767,33001,"Belknap County, New Hampshire",Belknap County, New Hampshire,41699,64300,93.8,0.6,48.3,4,2.5,82.3,23.4,25.7,2.42,2.94,17.2,7.6,78.7,52079,93.8,32.6,26118,1.1,3.2,1,0,0.2,NA,NA,NA,111450,47000,87983,10.2,2.6,6.1,3.3,3.8,0.4,83.2,87.4,90.2 +1768,33003,"Carroll County, New Hampshire",Carroll County, New Hampshire,39905,51259,94.8,0.5,54.2,3.4,2.2,84.9,30.1,NA,2.29,2.83,12.9,6.5,81.2,48401,95.6,38.8,22096,1.3,3,0.4,0.3,0.1,NA,NA,NA,109531,49562,82961,9.1,4.9,6.7,3.6,4.2,0,84.4,86.4,90.6 +1769,33005,"Cheshire County, New Hampshire",Cheshire County, New Hampshire,40435,76945,92.5,0.8,43.5,4.5,2.7,82.1,21.6,23.7,2.39,2.9,23.9,5.6,70.3,50681,94,35.3,30519,1,2.5,0.4,0.4,0.1,8.9,10.2,8.2,101172,41683,81001,8.2,2.9,5.9,2.7,3.7,0.1,79.6,85.4,90.2 +1770,33007,"Coos County, New Hampshire",Coos County, New Hampshire,33227,31386,94.3,1.7,49.9,3.7,2.5,84,25.2,NA,2.12,2.65,22.8,9.5,74,40590,89.5,20.2,13818,1.3,10.3,0.4,0.1,0.8,NA,NA,NA,82759,36850,58439,10.2,3.6,7,4,4.4,0.2,75.5,79.5,86.3 +1771,33009,"Grafton County, New Hampshire",Grafton County, New Hampshire,39900,91759,88.9,1.3,44,3.8,2.8,84.1,22.5,NA,2.35,2.93,24.5,7.3,71,51808,93.9,44.8,36107,1,5.4,2.2,0.4,0.6,10.1,10.4,10.2,118425,49835,84021,7.5,2.3,6,0.7,2.1,0.2,84.3,83.3,88.1 +1772,33011,"Hillsborough County, New Hampshire",Hillsborough County, New Hampshire,48872,424732,83.3,2.6,41,5.1,1.8,80.1,16.7,27.1,2.48,3.04,34.3,1.9,67.5,60336,93,40.6,167732,5.5,7.5,2.5,1.2,2.7,6.5,8.1,6.7,128567,52243,100436,7.1,3.1,6,3.4,4,0.7,85,90.3,92.6 +1773,33013,"Merrimack County, New Hampshire",Merrimack County, New Hampshire,44963,155018,91.4,1.6,42.6,4.5,1.9,81.4,19.3,NA,2.46,2.94,25.8,6.9,73.5,56860,93.7,38.1,60445,2,4.1,1.1,0.6,0.6,7.1,6.9,6.1,119046,47056,93944,8.1,3.2,4.9,2.4,3.2,0.1,83.9,87.8,91.1 +1774,33015,"Rockingham County, New Hampshire",Rockingham County, New Hampshire,53883,317163,91.4,0.9,44.8,4.5,1.8,81.2,19.5,29.1,2.49,2.97,21.5,4.7,78.6,67495,96.1,44.8,126588,2.9,4.4,1.5,0.6,0.5,4.8,5.1,5.6,145728,59710,113927,7.9,3.2,4.4,2.4,3.2,0.1,88.3,91.2,94.4 +1775,33017,"Strafford County, New Hampshire",Strafford County, New Hampshire,41569,131743,89,1.2,37.9,4.5,1.9,82.1,16.5,25.8,2.39,2.88,30.4,8.7,67,57405,94.7,38.5,51684,1.7,3.4,1.8,0.5,1.1,8.8,6.4,10.1,110178,44406,86564,7.7,3.6,5.8,3.3,3.7,1.1,85,88.3,91.7 +1776,33019,"Sullivan County, New Hampshire",Sullivan County, New Hampshire,38238,43529,92.3,0.9,47.3,4.5,2.6,82,23.1,NA,2.66,3.3,18.5,8.8,74.8,50384,91.1,30.5,16079,0.5,1.8,0.6,0.2,0.1,NA,NA,NA,102029,41921,75929,9.3,2.2,6.4,7.8,3.7,0.1,78.9,85.6,86.1 +1777,34001,"Atlantic County, New Jersey",Atlantic County, New Jersey,37211,274704,58.1,13.9,42.2,5.2,1.9,79,19.3,25.3,2.47,3.04,27.3,3.2,67.8,47105,88.9,31.2,108712,15,6.8,4.1,1.1,5.3,13.1,18.3,10,105691,41448,76819,5.5,7.6,7.5,2.2,3.4,1.5,79.1,87.7,90.4 +1778,34003,"Bergen County, New Jersey",Bergen County, New Jersey,56875,954717,58.8,5.7,42.1,5.1,2.4,79,17.8,31.3,2.67,3.19,39.7,0.4,65.4,71772,92.9,52.6,353307,17.6,12.2,12.8,3,8.5,6.7,7.5,8.3,169191,62986,123715,3.2,5.2,6.2,2.8,3.2,1.3,87.1,91.8,94 +1779,34005,"Burlington County, New Jersey",Burlington County, New Jersey,51361,464226,66,16.5,41.7,5.1,2.2,79.3,17.9,29.3,2.58,3.15,19.2,1,75.7,64361,94.4,42,176046,5.9,5.6,3.7,1.3,2.1,6.8,9.4,7,136507,53077,105271,6.8,4.7,3.8,2.2,2.7,0.3,86.9,90.7,94.1 +1780,34007,"Camden County, New Jersey",Camden County, New Jersey,42632,524042,56.4,18.9,38.8,6,1.8,77.2,16.2,28,2.58,3.21,27,0.5,65,54876,89.8,35.3,200569,13.7,4.3,3.7,1.2,4.8,12.2,17.1,11.1,114657,44380,86384,5,6.6,6.4,3.2,3.5,0.5,80.7,89.1,91.2 +1781,34009,"Cape May County, New Jersey",Cape May County, New Jersey,46140,95236,87,3.4,51.4,4.3,2.7,82.7,28.6,22.7,2.11,2.56,19.6,3.1,79.3,55860,94.6,37.4,44369,4.9,3.7,0.7,0.2,1.6,8.7,11,4.8,119743,54325,88046,7.4,5.5,5.6,2.9,2.6,0.2,82.5,88.8,91.5 +1782,34011,"Cumberland County, New Jersey",Cumberland County, New Jersey,32527,152915,52,18.1,37.6,6.2,2,75.6,15.6,NA,2.68,3.26,19.9,4.9,65.6,40967,81.3,17.9,53341,26.5,3.3,1,0.5,6.9,16.3,23.5,12.7,94856,33587,64499,4.8,7.2,10.2,4,3.8,0.2,70.6,84.6,87.5 +1783,34013,"Essex County, New Jersey",Essex County, New Jersey,40892,854130,33.2,36.9,37.7,6.3,1.8,76.3,14,34,2.62,3.31,58.8,0.2,44.5,52841,86.8,37.9,317473,20.7,12.3,3.2,4.3,10.1,15,20,15.2,127323,48021,76712,2.7,8.1,11.6,3.7,6.2,1.8,76.1,89.7,87.8 +1784,34015,"Gloucester County, New Jersey",Gloucester County, New Jersey,48348,304504,77.1,10.7,40.1,5,1.8,78.6,16.5,28.9,2.67,3.18,15.9,2.4,79.4,63315,94,35.8,111796,6.2,4.2,1.8,0.8,1.6,7.6,8.5,7.6,127093,47760,102807,6.2,4.6,4.2,1.1,1.9,0.3,85.1,90.3,91.9 +1785,34017,"Hudson County, New Jersey",Hudson County, New Jersey,48890,710478,37,12.2,35.8,6.5,1.4,80,12.4,35.5,2.38,3.02,84.4,0.1,31.2,62725,87.9,47.9,295552,33.4,12.5,9.3,3.6,13.2,14.8,21.2,19.5,130880,53998,90032,1.8,5.6,11.2,2.5,5.1,2.9,82,91.8,91.1 +1786,34019,"Hunterdon County, New Jersey",Hunterdon County, New Jersey,62922,129448,83.7,2.6,46.2,4.4,2.4,80.8,20.1,33.6,2.52,2.98,13.4,0.2,84.8,80981,95.8,56.5,50322,6.5,7.3,2.6,0.9,1.4,3.8,3.2,4.9,182668,71070,139453,4.6,4.1,2.9,1.8,1.8,0.7,90.5,91,94.2 +1787,34021,"Mercer County, New Jersey",Mercer County, New Jersey,45642,383286,49.8,19.2,39.2,5.6,2,78.1,15.7,27.6,2.58,3.2,31,0.4,61.9,60087,89.9,44.9,141464,17.2,10.2,5.9,1.8,7.7,11.1,13.8,10.2,138732,52101,96333,3.6,5.9,7.6,3.3,4.7,1,80.4,90.2,90.2 +1788,34023,"Middlesex County, New Jersey",Middlesex County, New Jersey,48861,861535,44.2,10.4,39.4,5.4,1.9,78.4,15.8,31.9,2.74,3.23,34.8,0.9,63.5,63389,89.3,45.1,305610,18.7,17.2,10.5,2.8,8.7,8.5,10.4,8.8,138274,49417,109028,3.2,5.9,7.1,3.2,4.3,1.6,84.8,91.2,93.1 +1789,34025,"Monmouth County, New Jersey",Monmouth County, New Jersey,55863,643615,76.2,6.2,43.2,5,2.2,79,18.6,32.8,2.55,3.12,22.6,1,75.4,72159,94.2,50.6,250195,8.4,8.7,3.2,1.1,3.4,6.4,7.1,7,168016,65545,122727,4.2,5,5.2,3.4,3.8,0.4,86.7,90.5,93.2 +1790,34027,"Morris County, New Jersey",Morris County, New Jersey,61709,510375,71,3.3,42.7,5,2.5,79.2,17.8,30.1,2.61,3.17,26,0.2,73.9,78302,95.1,57.2,191840,12.1,10,5.8,1.1,4.6,5.1,5.6,6.5,181402,69226,134929,3.5,5,4.7,2.5,3.2,0.5,89.2,91.9,94.7 +1791,34029,"Ocean County, New Jersey",Ocean County, New Jersey,42412,646434,85,3,41.4,7.3,3,75.1,22.4,30.7,2.65,3.31,13,2.3,80.2,56855,93.3,33.7,241521,6.3,5.8,1.4,1.8,1.7,10.4,16.4,7.5,115709,43900,86411,6.4,5.2,4.2,1.4,1.8,0.5,82,83.1,87.6 +1792,34031,"Passaic County, New Jersey",Passaic County, New Jersey,39456,518289,46.7,10.6,38.1,6.4,1.9,76.3,15.5,27.3,2.86,3.4,51.8,0.3,52.8,50042,85.1,30.3,177964,36,9,2.9,3.5,13.8,13.7,20.8,12.6,116257,40241,87137,2.8,7.5,12.1,3.9,5.6,2.1,76.6,90.1,91.5 +1793,34033,"Salem County, New Jersey",Salem County, New Jersey,40675,64973,74.1,14.2,41.9,5.5,2.6,78.1,18.9,NA,2.55,3.21,15.2,3.4,71.3,52014,90.1,24,24881,7.2,1.9,1,0.2,2.5,12.8,20.4,7.2,99663,39397,78412,6.5,7.3,5.1,0.7,1.3,0.5,78.1,85.8,88.7 +1794,34035,"Somerset County, New Jersey",Somerset County, New Jersey,61459,346203,54.1,9.6,41.9,5,2.2,78.6,16.6,31.5,2.64,3.17,26.3,0.2,74.5,77950,93.8,57.4,129459,12.9,13.2,9.7,1.7,5.6,5.5,7.3,6.1,186372,70321,135960,3.5,4.5,5.7,2.6,3.9,1.1,90.3,93.2,95.4 +1795,34037,"Sussex County, New Jersey",Sussex County, New Jersey,54220,145117,84.8,2.3,44.1,4.7,1.7,80.4,18.4,36.3,2.5,2.95,12.9,0.7,84.9,68332,95.4,40,57328,7.5,5.3,1.3,0.6,1.3,5.4,7.4,5.9,143320,56471,114316,4.9,4.9,3.5,2.9,3.2,0.1,88.3,91.5,94 +1796,34039,"Union County, New Jersey",Union County, New Jersey,46065,572549,41.7,20.5,39.1,6.2,1.9,76.5,14.8,30.7,2.81,3.29,44,0.2,57.6,57932,86.3,38.6,201663,29,13.2,3.4,2.4,12.4,8.9,11.8,9.1,145621,51850,100117,2.8,5.9,12.4,6.2,7.1,2.3,81.6,90.6,92.2 +1797,34041,"Warren County, New Jersey",Warren County, New Jersey,47225,110238,80.1,5.5,43.9,4.6,2.2,80.6,19,NA,2.41,2.96,19.6,0.8,74.3,59405,94,36.4,44943,8.5,6,1.7,1.3,2,8.1,10,6.5,117781,48232,99596,5.6,5.2,4.7,2.8,3,0.5,83.2,89.1,91.3 +1798,35001,"Bernalillo County, New Mexico",Bernalillo County, New Mexico,36568,674357,54.8,3,39.3,5,2.1,79.3,17.8,22.9,2.34,3.07,23.9,5.4,64.3,46719,90.4,37.4,283609,24.5,2.5,1.9,2.3,3.9,15.8,20.5,12.7,90528,39234,66514,8.1,5.1,8.6,4.4,5.4,1.2,79.9,90.1,88.2 +1799,35003,"Catron County, New Mexico",Catron County, New Mexico,27639,3685,85.1,0.4,62.6,0.5,9.4,90.4,44.5,NA,2.12,2.94,0.2,32.2,87.7,33292,97.6,20.7,1645,24.6,1.6,0,0,0.9,NA,NA,NA,57834,29980,46439,17.6,8.9,8.1,0,0,3.2,75.1,54.2,64.9 +1800,35005,"Chaves County, New Mexico",Chaves County, New Mexico,27447,64446,63.9,1.5,36.9,6.1,2,75,16.2,NA,2.62,3.24,10.9,14.2,68.7,38234,80.9,18.2,23605,37.3,0.7,0.7,0.2,3.9,22.3,30.3,16.5,73075,28273,52029,7.1,5.3,9.4,7,4.9,0.7,68.4,82.3,78.2 +1801,35006,"Cibola County, New Mexico",Cibola County, New Mexico,25458,27059,35.3,2.1,38.4,5.8,1.3,76.7,17.5,22.9,3.05,3.84,10,19,70.5,39111,85.4,18.8,8353,20.4,0.4,0.6,24.4,3.3,27.6,41.1,18.9,68361,25032,51765,8.2,8.2,12.4,0,3.1,0,58.4,81,73.2 +1802,35007,"Colfax County, New Mexico",Colfax County, New Mexico,29918,12336,67.7,0.6,49.1,4,3.7,82.2,28.4,NA,2.16,2.82,6.5,16.8,72,32368,90.5,24,5413,23.6,1.1,0.1,1.2,2,NA,NA,NA,66582,31126,52690,9,3.3,7.8,6.8,6.4,0,65.5,78.8,78.2 +1803,35009,"Curry County, New Mexico",Curry County, New Mexico,32247,47932,58.1,5.6,31.9,7.8,1.5,73.3,12.8,NA,2.54,3.29,13.4,7.7,61.3,41215,82.2,21.3,18471,30.2,0.7,1.3,0.1,3.2,20.9,25.2,16.7,72630,28959,56259,11.8,8.1,8.9,1.2,4.9,0.6,71.9,87.7,87.9 +1804,35011,"De Baca County, New Mexico",De Baca County, New Mexico,35063,1580,39.2,0.1,35.1,10.3,3.2,75.8,23.9,8.3,2.15,3.32,4.5,20.4,69.1,29453,87.7,8.3,727,40.6,3.2,0,0,0.4,NA,NA,NA,57939,29840,40804,3.8,12,10,0,3.7,0,58.5,63,76.6 +1805,35013,"Doña Ana County, New Mexico",Doña Ana County, New Mexico,29033,221665,48.9,1.7,34,5.8,1.9,76.5,16.8,22.4,2.59,3.24,17.2,18,65.3,38754,82.7,31.4,83530,49.9,1.4,1.1,0.8,11.3,22.2,28.7,14.5,74338,28726,55663,7.7,6.6,11,3.8,4.6,1.3,75.4,89.4,88.2 +1806,35015,"Eddy County, New Mexico",Eddy County, New Mexico,38849,61114,64.9,1.5,35.9,7,1.1,74,14.6,19.9,2.59,3.17,8.5,15.8,74.7,54510,84.3,19.8,23245,30.6,0.6,0.4,0.5,4.7,12.4,13.2,14.4,98075,37698,79605,6.7,4.4,9.2,9.1,6,0.2,71.5,87.1,85.3 +1807,35017,"Grant County, New Mexico",Grant County, New Mexico,27042,27856,67.1,0.7,49,4.2,3.2,82,29.5,NA,2.44,3.44,10.2,26.1,73.2,31010,89.7,28.8,11069,27.6,0.8,0.9,1.4,1.6,NA,NA,NA,68708,30395,45921,11.1,8.5,5.1,0,1.8,0.5,72.2,84.2,84.7 +1808,35019,"Guadalupe County, New Mexico",Guadalupe County, New Mexico,23694,4379,43,1.7,41.6,3.4,4.1,78.6,20.6,NA,2.67,3.52,12.3,28.8,78.4,30619,83.2,15.5,1451,60.5,0,0,1.5,10,NA,NA,NA,90895,30367,40149,7.3,5.5,6.5,0,5.8,0,55.7,72,77.1 +1809,35021,"Harding County, New Mexico",Harding County, New Mexico,31705,748,50.5,1.7,43.1,2.7,4.3,76.9,27.8,NA,2.65,3.99,0,27.3,78.4,41761,88.8,30.3,282,29.1,0.4,0,0,2.8,NA,NA,NA,132673,55520,41250,18.2,3.3,5.9,0,0,0,65.2,64.5,66 +1810,35023,"Hidalgo County, New Mexico",Hidalgo County, New Mexico,28523,4097,63.6,0,42.3,5.6,1.9,78.5,22.4,NA,2.67,3.29,5,38.8,75.3,33225,84.9,17.8,1501,50.3,1.1,1.1,0,6.9,NA,NA,NA,63299,25587,49076,6.5,3.9,9.1,0,2.3,0,57.4,87.4,79.2 +1811,35025,"Lea County, New Mexico",Lea County, New Mexico,33433,73154,52.3,4,32.5,8,1.3,70.2,11.2,NA,2.89,3.49,10.6,17.9,69.5,47889,75.6,15.3,24568,48.2,1,0.7,0.1,11,18.7,23.5,18.2,92292,31554,68750,3.7,6.2,14.3,4.8,8.1,6.9,65,88.9,84.4 +1812,35027,"Lincoln County, New Mexico",Lincoln County, New Mexico,28920,20227,73.2,0.8,52.7,4.1,2,83,30.5,NA,2.14,2.7,6.8,31.5,79.5,33574,91.8,28.8,9376,22.2,0.3,0.7,1.5,2.9,NA,NA,NA,75134,36086,51643,9.9,6.4,11.4,0,3.8,0.4,72.9,86.5,83.1 +1813,35028,"Los Alamos County, New Mexico",Los Alamos County, New Mexico,83011,19374,76.3,1.2,41.1,4.5,2.5,78.6,18.2,NA,2.35,2.99,23,6,74.5,96611,98.3,68.2,8211,10.9,5.3,6.9,0.5,3,NA,NA,NA,167396,72684,143188,7.7,1.9,3.4,1.2,4.3,0.4,93.6,95.4,94.6 +1814,35029,"Luna County, New Mexico",Luna County, New Mexico,22013,25420,54.9,1.9,36.6,7.6,2.8,74.1,20.7,18.5,2.74,3.66,9.7,29.6,69.2,30465,75.9,14.7,9082,56.6,0.1,1,1.1,13.1,26.1,39.9,15.1,53645,21871,37917,7.5,5.8,8.9,0.8,4,0.3,54.8,82,79.3 +1815,35031,"McKinley County, New Mexico",McKinley County, New Mexico,23465,71172,9.8,0.5,34.1,5.9,1.3,72.4,13.2,NA,3.33,4.02,10.7,24.9,68.8,34620,80.9,12.5,21088,7.1,0.6,1,62.5,10.7,35.7,46.7,24.4,60554,19580,44496,4.8,9.6,19.4,10.1,10.3,3.3,52.7,71.7,57.8 +1816,35033,"Mora County, New Mexico",Mora County, New Mexico,28028,4176,52.3,0,58.5,2.6,3.5,86.2,32.7,NA,2.09,2.65,2.5,33.4,89.2,39000,93.8,25.4,1991,61.8,2.3,0,0.2,5.7,NA,NA,NA,66998,34616,50178,8.1,6.5,2,0,5.8,0,49.4,74.5,58.2 +1817,35035,"Otero County, New Mexico",Otero County, New Mexico,29734,68235,60,3.6,36.3,6.1,2,77.9,17.2,22.7,2.66,3.41,8.8,27.4,65,38884,87.3,21.6,24285,22.3,0.9,1.3,2.7,5.5,20,28.6,13.5,71241,28186,52717,14.9,8.2,9,2.4,4.1,0.8,72.6,88.6,88 +1818,35037,"Quay County, New Mexico",Quay County, New Mexico,27317,8616,65.1,1.6,48.1,3.5,2.7,79.3,25.8,NA,2.08,2.8,7.9,17.9,72.7,37619,87.7,20.4,4102,29.4,0,0,0.1,1.5,NA,NA,NA,55437,27087,43698,9.8,3.5,9.9,18.6,9.2,0,64.3,77.3,70.3 +1819,35039,"Rio Arriba County, New Mexico",Rio Arriba County, New Mexico,32568,40165,27.9,0.7,42.4,5,2.1,77.4,21.2,28.8,2.65,3.38,3.9,39.6,78.1,41875,86.4,18.8,14980,56.5,0.3,0.6,7.4,4,20.1,29.2,16.3,74876,30548,53901,6.6,5.3,9.2,8.2,5,0.2,62.1,73.4,71.3 +1820,35041,"Roosevelt County, New Mexico",Roosevelt County, New Mexico,28451,19002,70.2,1,32,6.2,1.9,74.6,14.7,NA,2.48,3.16,9.6,18.5,62,35775,85.9,21.3,7211,25.4,0.3,1.7,0.7,3.2,NA,NA,NA,69451,26105,52445,7.7,3.7,10.4,0,3.1,0.1,71.9,81.5,85.7 +1821,35043,"Sandoval County, New Mexico",Sandoval County, New Mexico,39691,151538,56.1,2.2,41.1,4.9,1.9,77.8,19.6,30.2,2.7,3.18,5.5,6.7,83.6,49502,92.6,33.4,55741,21,1.7,1.6,6.8,2.4,10,12,7.8,105092,39698,84053,10.3,5.1,5.8,1.9,4.1,0.6,82.9,89.1,88.9 +1822,35045,"San Juan County, New Mexico",San Juan County, New Mexico,27839,121178,42.6,0.7,38,5.8,1.8,74.6,16.3,23.8,2.91,3.51,11.2,31.9,70.2,37343,86.4,16.6,41053,11.7,0.8,0.7,26.7,9.5,23.2,30.5,15.7,74068,26583,53020,6.4,7.7,12.5,7.7,8.3,1.5,65.5,85.6,69.2 +1823,35047,"San Miguel County, New Mexico",San Miguel County, New Mexico,26933,27036,50.4,1.6,46.8,4.2,3,83.1,24.4,NA,2.16,2.82,11.8,31.2,73.3,35151,85.7,26.2,11924,57.9,1.7,0.3,1.1,5.2,NA,NA,NA,62393,28140,47400,7.2,5.5,7.6,1.5,4.2,0,66.2,79.6,75.1 +1824,35049,"Santa Fe County, New Mexico",Santa Fe County, New Mexico,40148,155175,61.9,1,48.5,3.8,2.4,83.5,27.3,NA,2.2,2.86,16,13.6,70.6,44250,91.4,44.2,69348,27.6,3.1,1.1,1.4,2.6,12.5,18.9,9.1,105593,48908,74689,7,5.5,9.4,5.8,7,0.5,82.4,87.9,88.1 +1825,35051,"Sierra County, New Mexico",Sierra County, New Mexico,23445,11511,73.6,0.2,57.3,3.6,5.7,84.4,36.9,NA,2.08,2.88,10.3,39.6,70.2,25239,90.2,16.3,5419,20.6,1.1,1.4,0.6,1.2,NA,NA,NA,50519,24882,37840,15.1,3,4.1,0,5,0.5,65.2,75.4,81 +1826,35053,"Socorro County, New Mexico",Socorro County, New Mexico,22965,16308,52.2,0.2,39.7,4.8,1.4,78.4,20.2,14.8,2.99,3.81,11.9,37.4,73.5,37770,84.7,21,5222,39.3,3.4,1.2,7.7,8.1,NA,NA,NA,68979,25898,47556,8.8,2.7,8.2,9.5,7.5,1.4,60.8,62,59.7 +1827,35055,"Taos County, New Mexico",Taos County, New Mexico,29167,34516,60.6,0.3,51.9,3,2,84,29.7,23.6,2.36,3.36,8.7,14.7,78.8,35090,93.4,37.1,14459,34,1.9,0.7,3.5,2.6,14.4,16,13.8,85295,40018,58908,7.6,4.5,8.1,6,3.9,0.2,78.3,83.8,83.9 +1828,35057,"Torrance County, New Mexico",Torrance County, New Mexico,23865,15290,62.4,2.4,42.5,4.7,1.6,79.3,22.1,36.6,2.64,3.31,3.2,45.4,81.7,31470,86.5,14.9,5774,24.7,1.4,0.5,2.3,1.5,NA,NA,NA,62661,24922,46250,10.4,12.3,7.7,0,1.6,0.4,68.1,85.6,78.6 +1829,35059,"Union County, New Mexico",Union County, New Mexico,29150,4039,69.5,1,40.3,6.8,3.2,78.3,22.6,NA,2.4,3.3,7.8,18.9,68.2,33862,88.9,18.1,1504,25.3,0.7,0,1.9,8,NA,NA,NA,99074,37697,45319,6.7,7.5,11.8,0,0,0.1,64.6,75.7,83.2 +1830,35061,"Valencia County, New Mexico",Valencia County, New Mexico,29978,77382,55.8,1.4,39,5.6,1.6,77.1,18.5,28.9,2.83,3.43,4.8,27.6,82.1,38904,85.9,20.8,26782,32.9,0.6,0.2,2,4.1,18.4,26.2,15.2,78008,30066,58333,9.6,6.8,8,2.4,3.9,0.7,73,81.7,80.3 +1831,36001,"Albany County, New York",Albany County, New York,44650,315374,70.8,12.3,38.3,4.7,2.4,81.8,17.8,21.3,2.24,2.95,43.1,1.2,56.7,59724,93.2,45.2,132728,4.3,5.9,4,1.6,2.6,12.9,15.7,8.8,107762,46231,83149,5,4.6,3,1.9,1.6,0.2,82.3,87.7,89.4 +1832,36003,"Allegany County, New York",Allegany County, New York,29422,47027,93.8,1.7,38.9,5.1,2.4,80.1,19.7,22.6,2.48,3.05,11.4,11.3,80.3,41994,91.6,24.6,17057,1.1,1.6,0.8,0.2,0.5,16.8,22.7,8.8,78176,30016,61233,8.3,6.4,4.9,10.2,6.9,0.5,73.8,81.1,84.8 +1833,36005,"Bronx County, New York",Bronx County, New York,28664,1419250,15.8,34.1,35.6,6.7,1.7,75.5,13.9,43.9,2.57,3.29,87.8,0.3,20.3,40575,75.3,22,530067,49.7,5.9,1.5,4.8,17.9,26.9,34.8,27,71165,26956,49036,2.1,10.6,7.3,1.9,2.5,1.8,65.4,88.1,85.3 +1834,36007,"Broome County, New York",Broome County, New York,33847,197738,81.4,5.5,39.4,4.9,2.9,80.7,19.9,19.5,2.28,2.94,30.2,3.9,64.6,45753,91,30.6,81781,2.4,4.3,2.4,0.7,1.8,18.9,23.8,9.5,84379,35116,61059,6.3,6.4,3.7,1.9,2,0.4,76.7,84.1,88.4 +1835,36009,"Cattaraugus County, New York",Cattaraugus County, New York,32698,76479,89.4,1.5,42.5,5.5,2.4,78,20.3,NA,2.31,2.91,16.2,10.9,74.6,42163,89.2,20.7,31822,1.2,2.6,0.4,0.7,0.4,17.6,24.2,11.6,73744,31173,58248,8.5,4.9,6.3,10.5,7.5,0.5,66.4,79.1,81.5 +1836,36011,"Cayuga County, New York",Cayuga County, New York,36826,75464,88.5,3.1,43.7,4.8,2.3,80.5,20.6,NA,2.29,2.84,21.8,9,71.9,47515,88.9,23.9,31334,2.8,2.5,0.4,0.2,0.9,13.8,18.7,10.4,86559,36547,66583,7.2,3.8,4.4,3.8,2.9,0.2,73.2,83,87.1 +1837,36013,"Chautauqua County, New York",Chautauqua County, New York,32326,126329,87.3,2.7,42.7,5.3,2.7,79.3,21,NA,2.26,2.89,22.3,5.9,69.1,43001,90,25.1,53602,6.3,3,0.4,0.1,2.1,17,23.1,10.1,74065,31951,56507,7.6,5.2,5.4,6,6.4,0.3,70.4,82.4,85.8 +1838,36015,"Chemung County, New York",Chemung County, New York,36089,82805,85.8,5.9,41.9,5.2,2.6,78.8,19.9,19.7,2.27,2.91,22.8,4.5,69.8,46139,90.9,26.9,34916,2.4,2.1,1.3,0.3,1.1,15.8,21.4,10.1,83801,35624,63469,9,6,4.3,4,2.8,0,74.5,84.1,86.9 +1839,36017,"Chenango County, New York",Chenango County, New York,35618,46685,93.7,0.6,44.9,5.2,2.7,79.3,21.7,22.6,2.32,2.83,16.2,18.4,76.3,45603,88.7,19.2,19800,2.1,1.9,0.4,0.1,0.2,12.2,15.2,9.5,78012,32986,62093,7.7,6.3,3.4,2.6,2.3,0.2,74.3,79.9,87.7 +1840,36019,"Clinton County, New York",Clinton County, New York,39080,78961,90,3.1,41.5,4.5,1.9,81.8,18.3,NA,2.19,2.73,24.2,13.1,68.9,52040,88.2,26.8,33276,1.8,3.2,0.6,0.5,0.4,13.8,16.1,7.9,89583,37388,69208,7.6,3.6,2.9,2.5,1.5,0,78.7,83.6,86.7 +1841,36021,"Columbia County, New York",Columbia County, New York,42153,61245,84.8,3.2,49.5,3.9,3,83.7,25.4,26.4,2.27,2.74,16.9,8.4,75.4,51411,91.5,38.1,26098,4.2,5,1.2,0.5,1,11.4,16.5,9.1,122423,53325,83619,6.6,5.4,3.8,1.7,3.8,0.2,80.7,84.8,88.3 +1842,36023,"Cortland County, New York",Cortland County, New York,34227,46401,90.5,2.1,36.5,4.7,1.8,81.3,16.7,NA,2.28,2.84,26,6.9,66.4,47635,90.9,28.3,18768,1.6,3.9,0.7,0.9,0.3,12.8,11.7,9.8,82947,33818,67527,6.6,5.5,3.4,2.5,2.4,0.1,80.1,85.9,87.1 +1843,36025,"Delaware County, New York",Delaware County, New York,33577,44551,90.7,1.6,48.8,4.1,2.9,83.8,25.7,25.5,2.24,2.8,13.3,12.6,76.7,43075,90.4,26.7,18947,3.3,4.5,0.9,0.3,1.1,14.9,17.9,9.8,81142,35996,60226,6.4,6.8,4.6,5.8,2.4,0,71.2,77.9,85.7 +1844,36027,"Dutchess County, New York",Dutchess County, New York,46741,297144,70.8,9.9,42.6,4.6,2.3,81.4,18.6,31.4,2.43,3.03,28.1,3,68.8,60097,91.8,39.7,115184,10,5.1,2.3,1.4,2.5,8.3,8.1,7.4,130755,51784,97273,4.8,4.6,4.2,0.8,2.1,0.3,84.5,89,92.6 +1845,36029,"Erie County, New York",Erie County, New York,40449,950044,74.6,12.7,40.3,5.3,2.4,79.7,18.8,21.3,2.26,2.96,34.6,1.4,65.5,51943,92.4,36.9,408711,4.2,4.3,1.7,1.6,2.2,14,19.6,10.3,95092,41560,71175,6,4.6,2.8,1.5,1.4,0.3,77.1,86.3,89 +1846,36031,"Essex County, New York",Essex County, New York,38471,37077,92.9,2.5,49.5,3.8,3.4,84.1,25.7,NA,2.18,2.67,14.6,7.5,78.1,45575,91.5,31.3,16039,1.2,4.9,0.5,0.2,0.5,NA,NA,NA,92245,40807,70215,8.3,5,4.7,2.3,1.8,0.1,78.7,80.9,89.4 +1847,36033,"Franklin County, New York",Franklin County, New York,35250,47066,84.3,3.4,41.8,4.9,1.7,79.7,18.9,NA,2.24,2.73,19.5,12.4,71.2,46856,87.3,23.8,19234,0.7,3,0.6,2.6,0.6,16.5,23.2,12.5,78937,31801,63747,7.3,4.6,6.6,10.5,9.1,0.1,73.6,79,84.7 +1848,36035,"Fulton County, New York",Fulton County, New York,35251,52787,89.9,1.5,44.1,4.7,2.5,79.9,20.4,NA,2.27,2.75,25.1,8.7,69.2,45999,88.5,21.2,22607,1.8,1.9,0.7,0,0.4,14.5,19.2,9.2,80448,34843,62615,8.3,3,3.6,1.5,2.4,0,67.5,81.6,86.6 +1849,36037,"Genesee County, New York",Genesee County, New York,38018,57943,89.7,1.8,42.4,5.2,2.6,79.6,19.6,NA,2.29,2.82,22.9,5.5,74.2,49481,92.5,23.6,24769,2.4,1,0.6,0.1,1,10.6,10.2,10.4,86260,36737,72055,7.6,4.1,3.8,3.4,2.7,0.3,76.2,84.4,88.6 +1850,36039,"Greene County, New York",Greene County, New York,37269,47554,85.4,4.4,47.4,4.3,3.3,83.7,23.4,28.7,2.46,3.13,16,6.9,77.6,50663,88.8,28.9,18188,3.7,4.7,0.9,0.2,1.3,NA,NA,NA,99219,41292,74011,7.2,3.4,3.5,0.7,3.1,0.2,76.5,83.7,84.6 +1851,36041,"Hamilton County, New York",Hamilton County, New York,43225,5102,92,1,57.2,3.1,3.3,86.9,32.8,NA,2.32,2.83,6.2,8.7,82.5,45498,89.3,26.9,2111,0.8,0.9,0,0,0,NA,NA,NA,90814,41820,68950,9.3,6.6,3.8,0,0.7,0,59.2,78.8,87.9 +1852,36043,"Herkimer County, New York",Herkimer County, New York,38541,59932,92.7,1,44.6,4.9,2.4,79.4,21.6,25.2,2.31,2.88,18.6,8.9,75.9,47050,91.7,22.6,25426,1.5,3.6,0.4,0.2,0.5,13.3,16.7,8.8,84205,35959,68858,7.6,4.3,4.5,6.1,3.4,0.3,73.2,81.3,87.5 +1853,36045,"Jefferson County, New York",Jefferson County, New York,36872,116130,83.3,5,33.2,7.4,1.6,76,14.6,NA,2.38,2.88,29,8.2,54.1,44932,91.3,25.7,46701,4.5,2.6,2,0.8,1.5,13.4,18.3,10.6,84530,34603,64978,12.3,6.3,5.8,4.6,4.1,0.1,79.2,87,89.4 +1854,36047,"Kings County, New York",Kings County, New York,41171,2646306,39.3,29,36.3,6.6,1.9,77.5,15,42.1,2.57,3.31,86.1,0.2,29.7,55288,84.2,41.3,1009596,15.7,19.3,8,3.5,14.2,18.9,25.7,21.1,120169,46057,78548,1.6,7.2,5.9,2,2,1.5,78.4,87.8,87.9 +1855,36049,"Lewis County, New York",Lewis County, New York,36448,26618,94.3,0.9,42,5.9,2.4,76.9,19.9,NA,2.4,2.88,11.2,11.7,80.4,46298,91.4,19.4,10958,1.7,1.6,0.3,0.1,0.1,NA,NA,NA,79621,32690,68329,8.5,5,4.9,8.1,4.8,0.7,73.4,80.4,84.6 +1856,36051,"Livingston County, New York",Livingston County, New York,36412,61588,90.3,1.9,41.4,4.4,2.3,82,19.5,24.7,2.33,2.84,17.4,9,77.1,50321,92.6,30.6,24329,2.8,1.8,1.3,0.3,1,11.6,14.8,6.9,93306,37479,72464,6.9,3.8,3.9,3.6,3.8,0.2,80.1,84.5,87.7 +1857,36053,"Madison County, New York",Madison County, New York,35919,67572,91.4,1.6,42.6,4.6,2.1,81.4,19.7,NA,2.42,3,17.2,7.1,78.4,48590,93.3,28,25563,1.4,2.8,0.6,0.3,0.4,9.7,12.7,8.7,96461,39904,73141,7.3,4.3,3.3,2.5,3.4,0.2,80.1,82,87.7 +1858,36055,"Monroe County, New York",Monroe County, New York,40554,754068,71.2,14.6,39.5,5.3,2.4,79.4,18.3,19.9,2.3,2.95,28.8,0.9,63.5,52561,91.8,41.2,316506,6.9,4.5,2.2,1,3,13.1,18.7,9.1,100724,43137,74409,5,4.7,3.1,1.6,1.6,0.2,79.5,87.8,89.3 +1859,36057,"Montgomery County, New York",Montgomery County, New York,35628,49461,83,3.1,40.1,6.2,2.7,76.9,19,NA,2.51,3.29,30.7,7.4,69.3,45127,88.5,20.5,19234,8.7,3.3,0.8,0.1,2.2,14.7,19.9,13.2,79106,31975,62923,7,4.8,6.5,9.5,9.9,0.1,70.7,79.6,82.4 +1860,36059,"Nassau County, New York",Nassau County, New York,56866,1388138,59.4,11.4,41.8,5.3,2.6,78.4,18.2,36,3,3.43,19.5,0.3,81.9,72455,92.1,48.7,456076,13.4,12.2,5.9,1.9,4.7,5.3,5.6,6.4,187735,62743,143408,3.1,4.5,3.9,2,2.3,0.8,87.3,91.4,93.7 +1861,36061,"New York County, New York",New York County, New York,61439,1627788,50.4,14,38.9,4.3,2.4,85.9,17.8,31.4,2.01,2.95,97.9,0.1,24.7,83833,89.2,64,775376,17.6,9.6,8.1,1.9,8.3,15.8,19.5,18.1,192391,94922,104553,1.9,6.7,4.3,1.4,1.8,1.1,83.8,91.1,91.1 +1862,36063,"Niagara County, New York",Niagara County, New York,38621,211341,83.9,6.6,43.2,5.1,2.5,80,20.2,22.3,2.26,2.87,24.1,3.4,70.9,48588,92,27.2,91493,2.2,2.8,0.7,0.5,0.9,13,18.3,10.7,87095,37898,67809,7.7,5.5,2.5,1.7,1.7,0.2,75.4,84.2,88.6 +1863,36065,"Oneida County, New York",Oneida County, New York,37831,229645,81.5,5.6,40.8,5.5,2.6,78.4,19.4,20.4,2.31,2.94,28,5.3,67.8,49160,88.9,27.8,94361,4.1,5.4,3.2,1,2.5,14.6,20.3,9.9,89145,36865,68819,7.3,4.3,3.3,2.5,1.9,0.1,74.4,84.4,87.8 +1864,36067,"Onondaga County, New York",Onondaga County, New York,40841,471611,75.9,10.8,39.5,5.5,2.4,78.9,18.2,NA,2.31,2.98,30,1.2,65.7,52904,91.7,38.1,194963,4.2,4.4,2.1,1.7,2.3,13.9,21.2,10,99134,41538,74740,6,4.8,3.3,1.2,2,0.3,78.8,87.1,89.5 +1865,36069,"Ontario County, New York",Ontario County, New York,41876,112405,89.5,2.3,43.9,4.6,2.6,80.5,21.5,NA,2.27,2.81,20,7.3,72.8,53257,93.3,37.2,47684,3.9,3.5,0.7,0.3,1.2,9.2,11.1,7.6,104658,44500,79814,7.1,3.7,3.2,2.3,1.8,0.1,81.8,86.8,90.3 +1866,36071,"Orange County, New York",Orange County, New York,43643,403840,64.3,11.4,36.9,6.7,1.7,74.3,14.3,34.2,2.86,3.45,28.4,1.9,68.4,58075,89.7,32.2,137311,16.6,10.9,2.1,0.9,4.7,13,19.2,10.1,121539,42019,96497,5.6,5,4.8,1.7,1.7,0.7,79,86,88.6 +1867,36073,"Orleans County, New York",Orleans County, New York,35555,39686,87.5,4.6,43.6,4.7,1.8,80.9,19,NA,2.31,2.86,14.3,10.2,77.4,44751,86.7,17.5,16208,2.5,2.1,0.6,0.1,0.8,NA,NA,NA,82918,34352,63838,8.1,5,5.7,6.1,5.6,0.1,72.3,81.7,87 +1868,36075,"Oswego County, New York",Oswego County, New York,35914,117945,92.8,1.1,40.6,5.3,1.9,79.3,17.4,25.2,2.4,2.88,16.3,12.5,73.9,45726,90,21.9,47132,1.9,2,0.7,0.1,0.1,16.5,25.7,7.8,88158,35222,68461,8.3,5.8,4.4,6.1,3.4,0.3,77.1,84.9,89.7 +1869,36077,"Otsego County, New York",Otsego County, New York,32410,59738,90.1,2.4,40.4,4,2.4,84.8,21.3,23.4,2.4,3,19.3,10.7,74.3,47165,92.1,33.9,22608,2,3.1,0.9,0.2,0.9,14.1,17.9,9.4,90189,36506,67086,6.6,5.1,4.6,6.4,6.3,0.2,77.9,80.6,85.6 +1870,36079,"Putnam County, New York",Putnam County, New York,52571,97988,77.2,3.4,44.2,4.6,1.9,80.4,18.7,39.5,2.72,3.14,13.9,0.6,83,67895,93.3,43.5,35054,13.9,8.1,2.1,0.9,2.4,6.5,5.3,7.5,150924,54914,127405,4.2,4.1,3.3,2.3,2.1,0.2,87,91,94.6 +1871,36081,"Queens County, New York",Queens County, New York,40549,2330124,28.3,17.4,40.4,5.6,2.2,80.2,17.2,43.1,2.77,3.38,70.4,0.3,44.9,50742,82.7,35.3,828230,23,17,16,2.2,17.5,12.2,15.2,14.7,113673,41160,84961,2,6.8,8.5,2.5,2.9,2.2,79.1,90.5,90.7 +1872,36083,"Rensselaer County, New York",Rensselaer County, New York,45379,160341,81.4,6.8,40.2,4.9,2,80.8,17.9,23.9,2.32,2.94,35.2,2.7,64.1,59248,92.7,37.3,66233,3.3,3.7,1.5,1.2,1.4,11.8,17.3,7,106010,45113,86663,6.4,5.1,3.3,1.4,1.4,0.2,81.2,87.3,90.2 +1873,36085,"Richmond County, New York",Richmond County, New York,47218,492734,62.8,9.9,40.4,5.4,1.8,78.2,16.8,43.5,2.86,3.4,37.2,0.3,67.9,61590,88.5,35.8,170047,12.8,14.8,8,3.9,7.1,10.9,14.8,11.6,125764,44368,98290,2.9,5.2,3.9,1,1.6,0.9,82.4,89,89.5 +1874,36087,"Rockland County, New York",Rockland County, New York,46958,338936,64.2,11,35.1,8.5,2.1,70.6,15.6,30.3,3.22,3.78,32.8,1,68.3,60139,87.7,42.1,103284,15.5,20.6,4.8,2.7,7.6,15.6,25.4,7.5,147764,45538,110631,3,5.7,4.5,1.3,1.9,0.6,80.6,83.8,87.8 +1875,36089,"St. Lawrence County, New York",St. Lawrence County, New York,32263,107796,92.1,2,39,4.9,2.1,79.9,18.4,NA,2.33,2.91,18.7,9.6,71.5,46126,89.1,24.6,41732,1.4,3.3,0.6,0.3,0.6,17.4,23.5,11.9,78890,31574,61900,7.1,5.6,5.9,9.7,10.3,0,71.9,81.7,84.7 +1876,36091,"Saratoga County, New York",Saratoga County, New York,51040,237075,89.3,1.6,43.4,4.7,2.1,80.6,19.4,NA,2.34,2.88,25.1,6.4,72.2,63896,94.2,43.8,99835,2.2,3.8,1.9,0.5,0.9,6.7,7.6,6.6,128469,54698,99653,7.3,3,2.6,0.6,0.9,0.1,83.1,89.3,92 +1877,36093,"Schenectady County, New York",Schenectady County, New York,43686,159603,70.2,10.8,39.6,5.8,2.2,78.4,17.6,NA,2.33,3,35.8,0.7,63.8,55074,91.8,35.1,66324,4.8,4,2.2,0.7,1.8,12.5,16.8,8.8,99121,41529,76989,5.6,5.3,3.4,0.4,1.4,0.1,79.7,86.6,88.3 +1878,36095,"Schoharie County, New York",Schoharie County, New York,36941,29979,90.1,1.6,45.7,4.3,2.5,82.5,23.3,30.3,2.31,2.85,15.5,11.9,77.7,46697,92,25,12439,2.8,3.8,0.5,0,0.7,NA,NA,NA,90121,38100,71188,7.9,5.4,4.1,2.2,2.1,0.2,75.4,79.4,86 +1879,36097,"Schuyler County, New York",Schuyler County, New York,34816,17749,93.5,1.1,47.4,4.8,2.8,81,22.5,27,2.36,2.89,12.6,17.9,78.1,43902,90.8,25.4,7405,2.3,1.4,0.6,0.2,1.1,NA,NA,NA,83763,36356,65625,8.9,6.6,4.1,4.2,4.7,0.2,74.4,82.4,85.1 +1880,36099,"Seneca County, New York",Seneca County, New York,37669,33125,89.4,3.8,42.8,5.5,2.9,79.5,20.8,NA,2.28,2.98,18.5,9.6,72,46286,84.6,24.1,13679,2,4.6,0.4,0.3,0.9,NA,NA,NA,86730,36170,66007,8.7,4.7,8.7,15,13.6,0.8,74.4,83.6,84.7 +1881,36101,"Steuben County, New York",Steuben County, New York,36464,93034,92.3,1.7,43.1,5.5,2.4,78.4,20.3,NA,2.35,2.93,18.2,11.5,73.5,46818,91.8,26,38916,0.9,3.2,1.5,0.3,0.5,13.7,18.4,11.1,86589,36754,64740,8.8,5.4,4.7,7.5,5.4,0.2,75.2,83.2,86 +1882,36103,"Suffolk County, New York",Suffolk County, New York,51960,1525680,68.9,7.4,41.7,5.3,2.2,79.1,17.5,31.7,2.92,3.42,13.2,1.1,81.9,65759,90.5,39.9,512280,14.5,7.5,2.3,0.8,3.1,6.4,7.3,7.1,163151,56341,128329,4.3,4.3,4.6,3,3.4,0.6,86.7,90.4,92.7 +1883,36105,"Sullivan County, New York",Sullivan County, New York,37226,79147,71.6,8.7,41.7,5.9,1.6,78.6,19,27.8,2.47,3.23,19.3,9.9,69.3,48319,87.7,29.7,30215,12.1,7.2,1.3,1.1,4.4,15.2,22,12,101841,40474,69826,6,5.7,5.4,9.8,5.2,0.1,75.7,84.4,87.6 +1884,36107,"Tioga County, New York",Tioga County, New York,39235,48106,93.6,1.1,44.8,5.2,2.9,79.5,21.2,NA,2.35,2.85,13.9,14.9,78.2,47582,92,25.6,20214,0.9,1.7,0.5,0.2,0.4,12.2,16.7,7.8,95984,41155,71791,8.1,5.6,2.6,0.6,0.8,0.4,78.3,83.1,89.7 +1885,36109,"Tompkins County, New York",Tompkins County, New York,37800,102879,76.8,4,32.8,3.6,1.6,85.4,16,20.5,2.04,2.64,37.2,7.3,53.8,52488,95.9,59.2,43269,4.7,6.2,5.9,0.8,1.7,15.3,10.7,7.9,102676,42505,73012,3.8,4.7,4.2,0.8,3.4,0.2,88.8,90.7,89.8 +1886,36111,"Ulster County, New York",Ulster County, New York,42368,182109,76.4,6.1,44.2,4.4,2.5,82.6,20.8,27.8,2.31,2.94,22.8,5.7,70,54373,91.7,37.1,73105,7.2,4.9,1.4,0.6,1.4,14.3,14.8,9.1,112552,45702,81804,4.5,4.4,6.4,0.8,1.9,1.1,80.9,86,91.2 +1887,36113,"Warren County, New York",Warren County, New York,43198,65560,93.3,1.3,46.8,4.2,2.7,82.3,23.6,NA,2.15,2.69,23.6,4.5,71.5,53199,91.9,34.6,30041,1.4,3,0.5,0.2,0.4,9.1,10,8.8,101211,46191,78239,7.4,3.4,3.3,1.6,1,0,79.3,83,89.3 +1888,36115,"Washington County, New York",Washington County, New York,36847,60883,90.6,2.5,45,4.6,2.7,81.4,20.9,NA,2.4,2.95,19.3,4.6,76.6,45872,90.3,21.2,24254,1.7,2,0.4,0.2,0.5,10.8,13.4,8.2,86922,35496,72342,7.6,5.6,4.8,4.3,2.2,0.2,74.4,81.4,86.2 +1889,36117,"Wayne County, New York",Wayne County, New York,40020,91128,88.8,2.4,43.6,5.4,2.2,78.8,20.2,NA,2.33,2.86,15.4,6.8,79.9,49576,91,25.5,38222,3,2.6,0.7,0.2,1.2,11.3,13.5,8.3,89774,37916,73914,6.9,3,5.7,10.6,8.1,0.1,77.2,84.1,88.2 +1890,36119,"Westchester County, New York",Westchester County, New York,54462,996888,54.7,14,41.5,5.3,2.7,78.5,17.7,34.7,2.62,3.21,49.3,0.2,62.2,71700,89.4,52.5,370256,21.4,10.9,4.2,2.1,6.2,8.9,10.6,9.4,187481,70607,118411,3,5.8,5,2.8,2.2,0.7,84.7,90.4,92.4 +1891,36121,"Wyoming County, New York",Wyoming County, New York,37312,39980,89.7,3.8,43.1,4.7,2.1,81.3,19.8,NA,2.29,2.79,13.5,8.1,77,45601,86.7,18.2,16263,1.6,0.9,0.4,0.1,0.3,NA,NA,NA,84287,37185,68913,7.2,3.8,4.2,2.9,4.4,0.1,73,81.9,84.6 +1892,36123,"Yates County, New York",Yates County, New York,34210,24637,95.3,0.7,41.6,6.3,2,77.2,21.9,NA,2.57,3.17,13.7,8.7,77.2,40854,84.4,25,9095,1.6,9.9,0.6,0.5,1.4,NA,NA,NA,89265,34262,67521,7.4,2.7,19.6,48.8,35.6,1.7,68.6,74.1,78.1 +1893,37001,"Alamance County, North Carolina",Alamance County, North Carolina,35158,174286,62.8,19.9,38.7,5.7,1.9,77.7,16.9,25.6,2.47,3.09,18.9,11.2,65.6,45034,88.5,27.7,68441,10.4,1.8,1.1,0.4,2.5,14.1,18.7,10.4,82268,33281,64445,6.9,4.6,9.9,3.1,3.9,0.6,76.7,88.5,88.2 +1894,37003,"Alexander County, North Carolina",Alexander County, North Carolina,34316,36440,87.3,4,43.8,4.9,1.8,80.4,20.6,27.7,2.51,3,2.6,24.1,81.7,42018,85.6,15.4,13895,4.5,1.7,0.8,0,0.1,NA,NA,NA,82266,32565,65268,7.1,4.9,8.8,2.3,1.3,0.5,66.8,81.6,84.6 +1895,37005,"Alleghany County, North Carolina",Alleghany County, North Carolina,26425,11075,91.3,1.5,51.4,4.2,2.8,83.4,29.7,NA,2.15,2.66,5.5,19.4,77.1,33490,83.1,22.8,5049,7.3,0.7,0.2,0,2.3,NA,NA,NA,70579,33059,44272,8.2,5.5,14.7,2.1,3.6,0,66.1,81.9,81 +1896,37007,"Anson County, North Carolina",Anson County, North Carolina,24401,21903,45.3,47.2,42.4,5.2,1.7,79.7,19.9,27.1,2.4,3.15,6,24.4,65.6,30059,82.4,10.9,8314,3.8,1.2,1.2,0,0.5,NA,NA,NA,58710,23702,44245,7.9,6.2,13.3,14.1,5,0.3,62.1,81.6,84.4 +1897,37009,"Ashe County, North Carolina",Ashe County, North Carolina,30146,26831,94,1.1,49.8,3.9,2.9,83,27,NA,2.2,2.67,7.5,16.4,78.4,35600,87.5,22.4,11999,4.5,0.6,0.2,0,1.4,NA,NA,NA,68596,31486,50827,6.5,4.6,12.1,6.5,4.6,0,69.4,81,80.2 +1898,37011,"Avery County, North Carolina",Avery County, North Carolina,29974,17643,88.4,4.2,46.5,3.8,1.8,85.4,23,NA,2.27,2.84,8.8,16,80,35643,86.4,21.9,6559,4.1,0.9,0,0.2,1.1,NA,NA,NA,87001,33899,57657,7.2,4.5,14.1,9.2,8.4,0.2,70.2,85.3,82.6 +1899,37013,"Beaufort County, North Carolina",Beaufort County, North Carolina,33090,44597,68.8,22.8,47.1,4.7,2.3,80.6,25,NA,2.31,2.8,9.5,22.8,70.1,40385,88.1,20.6,19103,5.4,0.8,0.3,0,1,18,32.1,11.8,77396,33912,57997,9.2,5.7,10.5,1.6,4.4,0.4,73.7,82.5,84.6 +1900,37015,"Bertie County, North Carolina",Bertie County, North Carolina,24667,17482,34.7,60.1,45.9,4.1,2.5,83.6,24.3,NA,2.26,2.89,2.9,30.5,74.5,36155,82,17.8,7024,1.7,0.6,1.2,0.1,1.5,NA,NA,NA,66687,27082,45931,7.4,8.6,11.2,6.5,7.7,0.2,65,78.3,69.9 +1901,37017,"Bladen County, North Carolina",Bladen County, North Carolina,28047,29591,54.9,33.6,44.8,4.9,2.1,79.4,23.2,28.9,2.5,3.38,5.4,31.1,69.8,40901,88.6,20.6,11635,5.3,0.2,0,0,0.3,21.2,35.3,16.4,66507,28970,44528,9.3,4.5,8.9,1.7,2,0.5,63.5,83.9,83.4 +1902,37019,"Brunswick County, North Carolina",Brunswick County, North Carolina,38688,145889,82.3,8.1,56.1,3.7,2.1,85.6,33.3,NA,2.25,2.65,7.2,15.3,83.8,43764,93.3,33.2,64436,3.6,1.5,0.5,0.2,1.1,9.4,13.1,5.7,98633,44565,74034,11.2,5.2,8,2.7,4.6,0.4,83.8,90.4,92.7 +1903,37021,"Buncombe County, North Carolina",Buncombe County, North Carolina,35682,271790,83.1,5.4,42.4,4.6,2.6,81.9,20.8,NA,2.58,3.21,20.6,13.1,64.4,42408,92.3,44.6,102672,5.6,2.5,0.7,0.3,2.4,11.8,15.2,9.2,98793,40879,70578,6.7,3.3,11.9,4.7,5.5,0.1,78.4,86.8,87.7 +1904,37023,"Burke County, North Carolina",Burke County, North Carolina,31376,87863,81.1,6.1,44.9,4.8,2.5,81.4,21.2,23.5,2.37,2.82,9.3,17.9,74.8,39117,85.1,20.2,35873,5.4,0.5,2.2,0.9,2.3,17.9,30.8,9.8,74300,31184,55684,6.4,4.8,11.5,2,4.7,1.8,68.7,83.6,82.8 +1905,37025,"Cabarrus County, North Carolina",Cabarrus County, North Carolina,41824,231262,61.9,18.9,37.7,6.1,1.5,74.6,13.4,28,2.85,3.39,13,5,72.1,50827,91.8,37.7,80370,8.2,3.1,3.2,0.7,1.7,8.9,11.8,9.6,112035,40652,86084,6.6,4.1,7.8,3.3,5,0.3,83.7,90.9,91.3 +1906,37027,"Caldwell County, North Carolina",Caldwell County, North Carolina,30780,80618,86.6,4.1,45.5,4.9,2.2,80.1,21.2,NA,2.43,2.98,9.9,16,74,41430,82.8,18.6,32766,4.8,0.9,0.7,0.3,1.2,12.7,18.5,10.4,73139,30811,55401,7.1,4.6,11.3,2.6,5.1,0.3,68.1,80.7,85.2 +1907,37029,"Camden County, North Carolina",Camden County, North Carolina,44675,10743,79.5,8.3,40.9,5.5,0.6,75.7,16,NA,2.71,3.17,5.1,10.3,83.8,52367,93,25.8,3948,1.2,0,0.8,1.2,0.3,NA,NA,NA,100944,38350,87781,15.6,4.9,3,2.8,1.4,0,83.8,88.8,92.2 +1908,37031,"Carteret County, North Carolina",Carteret County, North Carolina,36975,68652,86.7,4.4,50.1,3.8,2.5,82.9,26.3,NA,2.16,2.69,13.7,13.3,73.5,43779,92.7,32.3,31198,4.1,2.3,1,0.2,0.6,10,12.5,7.6,93931,42707,70235,12,4.3,9.3,4.3,6.9,0,80.6,89.6,92 +1909,37033,"Caswell County, North Carolina",Caswell County, North Carolina,30209,22689,60.3,31.5,46.2,4.6,1.3,81.7,22.5,31.6,2.46,2.94,4.3,22.9,76.1,39350,83.7,16,8677,2.3,1.5,1.4,0,0.7,NA,NA,NA,70874,28281,59407,6.8,5.4,9.1,4.5,6.1,0.2,69.2,81.1,79.6 +1910,37035,"Catawba County, North Carolina",Catawba County, North Carolina,35256,162051,75.8,8,41.8,5.4,1.8,78.1,18.4,22.7,2.45,2.95,15.2,12.1,72.7,45097,87.5,24.9,65201,8.1,1.1,3.1,0.1,1.8,12.8,17.6,9.5,87768,36025,64544,6.4,3.4,11.8,10.9,9.4,0.3,72.8,88.3,87.5 +1911,37037,"Chatham County, North Carolina",Chatham County, North Carolina,42999,78319,72.5,10.5,47.6,4.6,2.8,80.3,24.9,NA,2.41,2.84,5.6,13.3,80.4,54316,90.4,48,32253,9.1,3.3,1.2,0.4,2.9,10.5,16.3,7.5,131980,56724,88534,7,2.7,8.6,3.3,5.9,0.7,82.2,88.6,86.7 +1912,37039,"Cherokee County, North Carolina",Cherokee County, North Carolina,29277,29197,91.2,1.5,53.3,3.8,2.5,83.9,31.3,NA,2.21,2.69,3.6,22.9,83.6,36420,91.4,24.2,13042,2.1,1.1,0.3,0.1,0,NA,NA,NA,67671,30800,51496,11.3,5.2,14.8,3.4,6.2,0,72.7,83.4,82.2 +1913,37041,"Chowan County, North Carolina",Chowan County, North Carolina,32181,13814,60.2,33.2,47.9,4.6,3,80.5,27.3,29.3,2.26,2.76,9.3,20.5,69.7,35053,87.4,24.5,5989,4.2,0.7,0.2,0,1.3,NA,NA,NA,76492,33974,56982,9.6,6.7,8.9,1,2.1,0,59.5,84.1,83.3 +1914,37043,"Clay County, North Carolina",Clay County, North Carolina,29621,11391,93.1,1.8,54.5,4.5,2.5,83.8,32.3,NA,2.24,2.89,7.6,12.3,79.8,42130,89.9,31.4,5041,2.2,0.5,0.5,0.1,0.5,NA,NA,NA,77507,35326,53645,9,4.3,15.3,0,2.2,0,68.9,80.4,79.1 +1915,37045,"Cleveland County, North Carolina",Cleveland County, North Carolina,30514,100170,72.5,18.4,41.2,5.8,2.1,77.7,18.7,NA,2.64,3.22,10.1,16.8,70.7,40373,87.5,21.1,37218,3.6,1,0.8,0.1,1,17.2,27.1,14,75411,29849,55769,7.4,5.3,10.4,2.9,4.3,0.3,69.8,84.6,80.8 +1916,37047,"Columbus County, North Carolina",Columbus County, North Carolina,30147,50453,60.2,28.7,42.4,5.2,2.1,79.3,20.4,28.2,2.49,3.14,6.4,29.6,72.3,38138,86.5,15.1,19227,5.2,0.3,0.4,0.2,1.3,18.8,26.1,12.7,66614,26755,48184,6.7,4.4,13.6,2.8,6.2,1.6,62.1,82.4,80.2 +1917,37049,"Craven County, North Carolina",Craven County, North Carolina,35001,101074,67.4,20.3,39.2,6.1,2.2,78.3,20.5,NA,2.32,2.87,10.2,13.8,69.9,43126,91.8,26,41472,6,1.8,1.9,0.2,1.4,13.9,19.6,9.3,86928,36745,64635,14.8,4.3,8.8,5.9,6,0.1,74.7,87.2,83.6 +1918,37051,"Cumberland County, North Carolina",Cumberland County, North Carolina,34057,336749,43.9,37.3,31.8,7.4,1.4,74.9,12.7,NA,2.49,3.18,23.9,7.6,53.7,41745,92.6,27.2,128118,9.3,2.7,2.4,1,1.9,17.2,23.4,13.3,76492,31206,58780,18.1,7.4,10.4,3.5,4.7,0.5,78.1,89.5,89.7 +1919,37053,"Currituck County, North Carolina",Currituck County, North Carolina,45422,29612,85.6,5.1,41.7,5,1.4,77.9,17.2,NA,2.57,2.95,1.9,13,87.5,53678,93.9,29.3,11497,3,2.2,0.3,0.1,0.7,NA,NA,NA,112218,44165,91548,16.2,2.7,9.5,6.8,9.5,0,82.8,92.1,91.4 +1920,37055,"Dare County, North Carolina",Dare County, North Carolina,41028,37534,87.3,2.8,48.5,4.1,1.8,81.9,24.3,22,2.26,2.7,11.6,8.3,77.8,43928,95.2,42.8,16483,6.3,1.9,0.9,0,1.4,NA,NA,NA,106269,46784,81214,8.9,5.5,8.9,2.9,7.7,0,84.4,90.9,92.9 +1921,37057,"Davidson County, North Carolina",Davidson County, North Carolina,33468,171063,79.1,9.3,42.3,5.4,1.9,78.2,18.6,24.4,2.47,2.98,9.1,12.7,73.5,43017,87.7,20.7,68512,6.7,1.2,1,0.1,1.3,13.8,21.2,10.1,80838,32759,62426,7.4,3.8,10.4,3.9,4.1,0.2,74.7,87.9,87.1 +1922,37059,"Davie County, North Carolina",Davie County, North Carolina,38620,43526,84.2,4,45,4.9,2.4,79,21.8,NA,2.56,3.08,5.7,15.4,83.4,46331,90.7,26.8,16873,5.9,2.1,0.7,0.4,0.7,NA,NA,NA,95329,39128,73234,8.6,3.6,10,4.2,7.1,0,77.1,88.2,91.7 +1923,37061,"Duplin County, North Carolina",Duplin County, North Carolina,30280,49053,57.5,22.8,40.7,6.2,2.2,76.3,19.7,NA,2.42,3.01,7.9,30.7,70,37705,81.9,17.5,20096,15.3,1.6,0.6,0.1,5.3,17.9,29.6,10.4,67269,27599,51880,7.7,4.2,15.2,13.5,9.1,1.3,61.3,83.6,78.9 +1924,37063,"Durham County, North Carolina",Durham County, North Carolina,44391,329405,45.5,33.1,35.8,6,1.4,79.9,14,NA,2.28,3,32.8,1.2,55,54529,90.7,53.5,138502,10.5,3.4,3.5,2.1,4.2,12,16.8,7.8,109585,46931,79501,5.3,4,11.6,6.3,7.9,1.5,85.9,92.3,92.8 +1925,37065,"Edgecombe County, North Carolina",Edgecombe County, North Carolina,30355,48777,37.8,55.9,41.7,5.8,2.5,77.1,20.5,22.9,2.46,3.03,14.7,22.7,59.4,39082,84.4,16.7,19533,4.1,1.1,0.3,0.1,0.5,21.9,37.9,11.1,66592,27235,48480,7.5,8.1,10.8,4.6,4.7,0,61.4,79.8,77.6 +1926,37067,"Forsyth County, North Carolina",Forsyth County, North Carolina,35639,386740,58.2,25.5,38.3,5.7,1.8,77.2,16.6,NA,2.42,3.1,24.2,3.1,62.7,44991,89.9,36.9,155743,9.7,2.1,1.8,0.6,2.5,14.7,22.5,9.3,90850,37375,65541,6.2,5.2,10.5,3.7,4.6,0.8,80,90.3,89.2 +1927,37069,"Franklin County, North Carolina",Franklin County, North Carolina,35363,71962,63,23.7,40.9,5.6,1.3,78.1,17.1,NA,2.57,3.02,4.5,22,78.1,46057,87.7,24.4,27442,7.1,1.4,0.8,0.5,1.5,10.1,12.9,8.9,87392,33957,71386,8,5.4,9.8,9.4,5,0.1,74.6,86,87.7 +1928,37071,"Gaston County, North Carolina",Gaston County, North Carolina,36172,231485,70.4,17.6,39.5,5.8,1.6,77.4,16.3,NA,2.47,3.02,15.4,8,65.8,46693,88.1,26,92287,6.7,1.4,1.1,0.4,2.1,12.8,16.3,12.7,87551,35557,65472,7.1,4.7,10.9,5.5,5.9,0.2,74.6,88.6,87.2 +1929,37073,"Gates County, North Carolina",Gates County, North Carolina,34517,10437,63.5,31.2,47.7,3.5,3.2,80.5,22,40.9,2.46,3.07,0.4,35.3,82.3,47462,89.6,10.8,4219,4.9,1.5,0.4,0.4,2,NA,NA,NA,72701,31342,61612,11.5,9.5,6.6,9.3,2,0,77.3,83.3,74.3 +1930,37075,"Graham County, North Carolina",Graham County, North Carolina,27259,8041,85.2,0.7,45.5,3.9,2.3,81.6,24.8,22.4,2.38,3.07,4.4,31.9,80.8,37666,84.8,16.8,3312,2.1,0.2,0.4,3,1.4,NA,NA,NA,68550,28875,49038,7.8,6.5,13.7,0,5.9,0.7,59.2,77.3,80.7 +1931,37077,"Granville County, North Carolina",Granville County, North Carolina,35154,61439,57.1,29.5,42.5,5.2,1.8,79.4,17.3,NA,2.56,3.06,7.3,18.6,76.6,46246,86.6,24,22176,7.1,0.6,0.6,0.3,0.9,14.1,17.4,14.3,89041,33166,70975,7,4.2,10.1,4.8,4.3,0,77.8,86.5,88.8 +1932,37079,"Greene County, North Carolina",Greene County, North Carolina,26343,20421,49.3,32.2,39.6,4.8,1.3,81.1,16.9,NA,2.59,3.32,6.2,37,65.3,37835,77.8,12.2,6831,9.5,1,0.4,0,3.1,NA,NA,NA,60861,22474,50904,5.1,5.1,15.8,4.5,10.6,2,62,84.5,80.4 +1933,37081,"Guilford County, North Carolina",Guilford County, North Carolina,35850,542987,49.1,34,37.4,5.6,1.9,77.8,15.6,22.5,2.41,3.05,26.8,2.8,60,45173,90.3,38.1,215807,6.7,3.5,3.1,2.2,2.7,15.2,21.2,12.1,93015,37845,66027,6,4.4,9,3.3,4.1,0.8,80,89.2,89.3 +1934,37083,"Halifax County, North Carolina",Halifax County, North Carolina,26276,48219,37.2,51.9,43.8,5.5,2.5,78.7,21.6,NA,2.32,2.95,11.2,24.1,63.5,37521,80.9,15.5,20269,2.9,0.8,0.4,0.6,0.5,25.2,38.9,18.1,62150,26951,45071,6.1,8.6,10,4.5,5.3,0.1,59.3,78.7,70.2 +1935,37085,"Harnett County, North Carolina",Harnett County, North Carolina,35644,136503,63,20.8,35.4,7.1,1.4,74.4,13.4,NA,2.74,3.34,7.5,17.6,69.5,45506,88.7,23.9,48639,9.5,1.3,1,0.3,1.4,14.5,20.1,12.1,84184,31382,69012,11.3,4.8,10.7,3.2,3.3,0.7,77.1,89.9,83.5 +1936,37087,"Haywood County, North Carolina",Haywood County, North Carolina,34660,62432,91.9,1,47.8,4.2,2.8,82.2,25.4,NA,2.31,2.85,8.5,17.9,75,43069,91.6,29.4,26772,2.4,0.8,0.3,0.2,0.3,11.3,16.4,9.7,79327,35580,61001,9.7,3.2,11.3,3.3,6.8,0.1,69.9,86.3,82.9 +1937,37089,"Henderson County, North Carolina",Henderson County, North Carolina,35375,117387,84.1,3.3,47.2,4.6,2.9,81,26,NA,2.3,2.76,11.5,14.9,74.2,40773,91.1,35.1,50423,9.1,1.9,0.8,0.7,3.2,11.7,19.5,7.1,90317,38976,67623,8.2,3,12.2,5.6,7.3,0.4,79.9,88.8,88 +1938,37091,"Hertford County, North Carolina",Hertford County, North Carolina,26336,20492,35.2,56.8,42.3,4.6,2.3,81.1,21.3,27.8,2.24,2.86,10,22.8,66.4,36387,84.7,16.7,8329,3.5,0.7,1.1,0.1,1.6,NA,NA,NA,67765,27562,47472,8.4,4.7,9.7,2.7,4.6,0.1,64.3,76.2,79.5 +1939,37093,"Hoke County, North Carolina",Hoke County, North Carolina,33234,53102,40.8,33.5,33.7,8.1,1,72.8,11.4,30.2,2.78,3.5,5.1,21,71.7,42102,88.9,21.3,18763,10.8,1.7,1.1,0.4,2,17.4,20.5,14.4,80326,29575,60095,17.4,6.9,11.4,3.9,7.1,0.4,75.3,86.7,88.4 +1940,37095,"Hyde County, North Carolina",Hyde County, North Carolina,24636,4625,60.7,25,48.5,2.7,0.2,81.7,22.8,NA,1.87,2.35,0.8,21.2,71.5,28552,86.8,13.7,2115,3.3,0,0,0,0,NA,NA,NA,53886,22370,47338,6.3,3.9,11.5,0,2.7,0,59.2,70.8,68.9 +1941,37097,"Iredell County, North Carolina",Iredell County, North Carolina,39380,191800,75.5,11.6,40.9,5.3,1.6,77.5,16.4,NA,2.57,3.06,12.9,11.5,71.5,48305,91.2,33.3,73913,6.6,2.2,2.1,0.4,1.8,9.1,11.5,7.3,108944,43261,78678,6.5,3.7,9.5,6.1,5.3,0.6,80.2,90.3,92.6 +1942,37099,"Jackson County, North Carolina",Jackson County, North Carolina,29076,43089,79.5,2.4,38.9,3.8,1.9,83.3,20.4,20.6,2.17,2.7,14,22,62.6,38874,89.8,30,18164,3.1,1.3,0.7,3,0.9,19.3,27.2,11.3,76781,32937,53479,8.5,4.4,15.2,5,10.4,0.4,69.2,90,76.5 +1943,37101,"Johnston County, North Carolina",Johnston County, North Carolina,40833,226623,66.6,16.6,38.3,6.1,1.1,74.9,13.5,NA,2.73,3.21,7.9,13.3,77.1,50966,89.5,27.6,82293,10.9,1.7,0.7,0.6,2,11.2,16,10,98557,36673,79838,8.2,3.6,11.1,3.1,5.7,0.6,81.2,90,86.2 +1944,37103,"Jones County, North Carolina",Jones County, North Carolina,30547,9245,63.4,27.3,48.1,5.1,3,81.6,23.8,NA,2.32,2.87,4.7,32.3,75.6,40099,86.5,17.9,3915,3.8,0.8,0.1,0.2,0,NA,NA,NA,66084,28699,55659,12.1,4,10.6,0,2.5,0.9,63.2,80.6,76.2 +1945,37105,"Lee County, North Carolina",Lee County, North Carolina,34189,64565,65.7,18.6,39.9,6.2,1.6,76.1,16.9,NA,2.58,3.02,16,14.7,66,42300,85.1,21.6,24659,15.2,1.2,0.8,0.8,3.5,15.5,23.9,11,79634,31394,63060,7,4,12.4,3.4,5.9,1.5,74.5,90.3,76 +1946,37107,"Lenoir County, North Carolina",Lenoir County, North Carolina,27460,54917,50.6,39.7,42.2,5.7,3.1,77.3,21.1,24.2,2.34,3.02,17.4,21.6,59.3,37169,82.5,15.8,22930,6.2,0.4,0.6,0.1,1.8,22.5,32.4,15.3,63281,28409,44795,8.8,6.7,10.2,1.6,4.3,0,63.9,83.8,79.6 +1947,37109,"Lincoln County, North Carolina",Lincoln County, North Carolina,37482,90359,84.7,5.8,44.3,5,1.8,79.2,19,NA,2.51,2.95,7.3,15.4,78.5,48967,90,27,35681,6.3,1.1,1,0.2,1.6,9,9.4,10.1,103818,42170,78490,7.5,3.5,9.2,7,5.6,0.5,79,88.6,90.4 +1948,37111,"McDowell County, North Carolina",McDowell County, North Carolina,31324,44679,88.5,3.9,44.3,4.6,2.3,80.3,20.7,NA,2.34,2.8,4.7,25.5,74,41190,86.1,17.6,18445,4.9,1.4,1,0.2,1.6,14,17.5,10.3,71177,29555,55527,7.7,4.5,11.7,1.6,3.7,0.3,66,81.7,83 +1949,37113,"Macon County, North Carolina",Macon County, North Carolina,32308,37533,88.6,1.2,50.1,4.4,2.6,81.9,28.9,NA,2.06,2.56,7.8,19.7,76.3,39044,90,24.6,18090,5,1.1,0.4,0.2,1.5,14.4,18.9,12.1,76654,35682,53298,9.7,3,14.4,4.6,11.9,0.9,68.3,82.7,80.8 +1950,37115,"Madison County, North Carolina",Madison County, North Carolina,32332,21640,92,1,44.5,4.5,1.9,82.5,23.1,NA,2.46,3.09,6.8,23.7,77.9,43771,90.9,31.5,8399,1.6,0.8,0,0,0,NA,NA,NA,80418,33738,58628,7.5,2.5,8.7,0,0,0.2,70.5,79.4,81.7 +1951,37117,"Martin County, North Carolina",Martin County, North Carolina,27474,21773,51.6,41,46.7,4.9,1.6,79.7,25,NA,2.31,2.91,10,21.6,68.5,36193,83.3,15.1,9361,2.8,0.2,0.4,0,0.3,NA,NA,NA,60917,27007,46793,7,5.7,7.7,5.3,2.9,0,65.6,79.6,81.5 +1952,37119,"Mecklenburg County, North Carolina",Mecklenburg County, North Carolina,45945,1130906,46.5,30.5,35.4,6.4,1.3,76.9,11.7,25.4,2.45,3.19,32.7,1.5,55.5,54969,90.8,48.6,455494,10.6,4.4,3.5,1.5,5,10.4,14.9,8.8,124725,51490,83765,5.3,3.9,11.6,6.8,7.5,1.4,85.2,93.9,93.1 +1953,37121,"Mitchell County, North Carolina",Mitchell County, North Carolina,31343,14973,92.1,0.8,48,4.5,3.5,82.1,25.5,NA,2.27,2.85,7.4,16.2,77.6,41962,89.7,23.1,6411,3.1,1.9,0.5,0.1,1.3,NA,NA,NA,74236,32713,58089,7.9,5.2,10,2.5,2.1,0,68.3,79.9,80.5 +1954,37123,"Montgomery County, North Carolina",Montgomery County, North Carolina,29175,25874,66.8,16.7,43.6,5.1,1.7,79.2,21.8,NA,2.49,2.92,6.3,24.9,73.1,38022,84,19.3,10075,11.5,1.1,1.5,0,2.3,NA,NA,NA,77130,30192,55849,6.3,3,13.1,8.5,5.3,0.5,63.6,84.5,78.7 +1955,37125,"Moore County, North Carolina",Moore County, North Carolina,41061,102840,78,9.6,42.8,5.8,2.7,78.2,24,26.8,2.37,2.93,11.4,10.6,76.3,50839,92.7,40.9,42814,5.4,1.5,1.4,0.3,2.1,10,14.2,7.1,105326,44318,82837,12.3,4.7,7.8,4.9,5.2,0.4,80.9,88.3,89.6 +1956,37127,"Nash County, North Carolina",Nash County, North Carolina,33820,95451,48.2,40.6,41.6,5.6,2.4,77.9,19,23.7,2.46,3.05,16.4,16.2,63.7,42937,86.4,21.7,38123,5,0.6,0.4,0.7,0.5,14,20.3,11.9,80514,33336,60704,7.5,6.3,11.8,3.6,6.7,0.1,69.2,86.3,82.5 +1957,37129,"New Hanover County, North Carolina",New Hanover County, North Carolina,40539,231214,77.4,11.3,40.1,4.7,1.9,81.8,18.7,NA,2.2,2.85,28.7,2.8,60.7,48503,93.6,44.8,102376,5.1,2.5,1.1,0.4,1.3,12.4,14.4,8.4,103112,46083,72892,6.9,4.4,10.6,6.3,7.4,0.4,85.3,92.1,91.9 +1958,37131,"Northampton County, North Carolina",Northampton County, North Carolina,29164,17212,39.7,54.9,51.6,4.8,2.8,82.1,28.5,28.2,2.18,2.83,5.8,27.6,73.2,37474,84.5,19,7597,1.8,0.6,0,0.1,0,NA,NA,NA,70632,31883,47935,6.8,6.3,9.9,2.7,4.6,0.8,59.6,75.8,69.8 +1959,37133,"Onslow County, North Carolina",Onslow County, North Carolina,31898,208537,69.2,12.5,27.1,8,0.9,75.7,9.7,NA,2.57,3.03,12.1,10.8,61,44526,93.2,26.1,72516,8.3,1.8,2.2,0.5,0.8,11.7,15.2,11,80838,30998,64568,21.8,5.5,10.1,3.6,4.7,0.8,84.5,93.8,92.2 +1960,37135,"Orange County, North Carolina",Orange County, North Carolina,41947,147292,70.5,10.6,36.2,4.2,1.4,80.6,15.7,NA,2.4,3,25,6.1,64.2,57436,93.2,61.8,56456,7.1,3.9,5.3,1.2,3.1,12.4,10.5,6.6,133780,51856,88553,4.9,3.5,6.6,1.1,3.1,1.2,88.5,92.9,93.6 +1961,37137,"Pamlico County, North Carolina",Pamlico County, North Carolina,30311,12315,74.6,18.6,54.1,3.4,3.5,85.8,30.7,NA,2.19,2.73,4,22.6,83.3,40932,90,25.4,5228,3.2,0.6,0.6,0.1,0.2,NA,NA,NA,81899,35042,61624,12.3,4.9,8.6,1.1,3.8,0,74.1,83.2,85.3 +1962,37139,"Pasquotank County, North Carolina",Pasquotank County, North Carolina,35695,40830,55.6,35.2,39,6.1,2.2,78.4,18.1,27.3,2.51,2.96,15.5,12.9,65.1,43473,90,26.9,15394,2,0.6,1.4,0.1,0.2,NA,NA,NA,82744,32707,63912,11.5,6.1,9.7,10.2,6.8,0.3,75.7,87.7,89.9 +1963,37141,"Pender County, North Carolina",Pender County, North Carolina,37490,63475,75.7,12.4,41.8,5.5,2,77.5,18,NA,2.58,3.14,4.6,22.5,81.8,46804,90.5,29.8,24152,5.9,1.6,0.3,0.1,0.7,10.7,13.6,7.7,97152,38296,76838,9.7,5.3,9.7,11.5,8.3,0.1,76.5,89.5,88 +1964,37143,"Perquimans County, North Carolina",Perquimans County, North Carolina,34451,13146,70.3,21.8,50.5,4.5,3.5,81.2,28.4,NA,2.34,2.91,4.6,25.4,72.7,44569,86.7,20.4,5580,3.4,0.9,1,0.4,0.6,NA,NA,NA,76843,33626,61224,11.1,4.8,10.2,3.1,6.3,0,70.2,79.6,84.1 +1965,37145,"Person County, North Carolina",Person County, North Carolina,31194,39275,65.7,25.5,43.9,5.3,2.5,79.3,21,30.2,2.39,2.92,5.6,18.2,75.9,45068,89.1,19.8,16211,6.3,0.9,0.4,0.1,1.2,18.4,31.4,13,87568,37616,64927,7,3.5,8.3,2.1,3.3,0.6,73.6,86,87.5 +1966,37147,"Pitt County, North Carolina",Pitt County, North Carolina,34030,172279,53,35.1,33.6,5.6,1.3,78.5,14.3,21.7,2.26,2.87,29.8,10.7,50.9,45275,90.9,33.9,73404,5.6,1,1.3,0.5,1.7,19.4,22.1,12,80463,34229,58851,7.1,7.3,10,5.1,5,1.6,79.2,89.7,87.1 +1967,37149,"Polk County, North Carolina",Polk County, North Carolina,32444,19689,87.7,5.1,54.4,3.6,4,84.4,32.1,27.6,2.22,2.8,9.3,10.7,76.6,38112,91.9,32.9,8727,4.7,2,0.1,0.4,0.5,NA,NA,NA,85807,38444,61005,8.8,4.3,9.7,0.7,3.9,0,74.9,84.8,82.9 +1968,37151,"Randolph County, North Carolina",Randolph County, North Carolina,31668,145322,80.2,6.1,41.4,5.6,1.9,77.6,18.1,NA,2.52,3.08,10.4,19.3,72.7,40178,84,17.6,56970,9.8,0.9,0.7,0.5,1.9,14.8,19.7,10.8,73631,29706,59047,6.7,3.7,12.4,4.5,4.5,1.1,73.1,88.1,86 +1969,37153,"Richmond County, North Carolina",Richmond County, North Carolina,27323,42818,56.9,31.8,40.3,6.1,1.6,76.4,17.9,NA,2.47,3.12,11.6,17.7,64.7,34797,84.2,16.2,16863,6.8,0.7,0.4,0.1,1.9,25.2,39.6,19.4,59517,24752,43626,5.9,8.3,9.5,0.9,2,0.1,65.9,83.9,84.6 +1970,37155,"Robeson County, North Carolina",Robeson County, North Carolina,25881,116858,24.8,23.3,36.5,6.8,1.1,74.5,15.8,NA,2.65,3.35,9.6,37.9,65.6,36738,78.9,14.6,42744,6.2,0.6,0.4,0.4,1.7,28.8,40.1,22.4,60160,22925,40318,6.5,6.2,14.3,4.6,5.9,1.5,57.6,84.3,73.6 +1971,37157,"Rockingham County, North Carolina",Rockingham County, North Carolina,31410,91585,72.6,17.6,44.7,5,2.2,79.5,20.8,NA,2.31,2.83,10,16.4,72.4,42057,84.4,16.1,39018,5.2,0.6,0.1,0.2,1,16.8,25.4,10.5,73596,31380,55796,7.1,5.8,10.1,4.3,3.9,0.3,66.3,81.3,82 +1972,37159,"Rowan County, North Carolina",Rowan County, North Carolina,34388,148487,71.3,15.7,40.5,5.6,1.6,77.7,17.5,26.2,2.5,3.04,11.6,15.6,71.2,44077,88.1,21.5,57762,7.6,1.3,0.7,0.4,2.7,15.8,23.1,10.4,82423,32675,63196,7.6,5.3,10.2,4.4,4.8,0.4,71.8,87.5,88.7 +1973,37161,"Rutherford County, North Carolina",Rutherford County, North Carolina,28391,64850,83,8.1,45.3,5,1.7,79.7,22.1,NA,2.39,2.97,7.8,17.5,74.1,37157,86.6,20.7,26589,4.2,0.7,0.8,0.4,1.1,17.6,21.8,12.4,69617,29217,49771,8,4.6,11.8,5.5,4.4,0.9,66.1,83.5,82.6 +1974,37163,"Sampson County, North Carolina",Sampson County, North Carolina,29763,59245,53.2,24.9,39.7,6.3,1.6,75.5,18,29.9,2.71,3.28,5.1,34.3,72.8,40629,84.3,15.8,21321,14.3,0.3,0.5,0.1,3.6,20.2,31.3,13.7,70092,26978,53159,7.1,5.2,16,5.8,7.4,1.6,68.9,82.8,82.9 +1975,37165,"Scotland County, North Carolina",Scotland County, North Carolina,24755,34353,41,37.8,38.3,6.4,1.8,77.5,17.9,NA,2.6,3.24,14.8,27.1,58.9,36107,82.4,14.8,12376,2.1,1,0.7,0.3,0.9,26.6,40.6,15.7,66699,27678,43500,6.6,9.8,11.8,1.6,3.1,0.4,62.6,86.3,84.5 +1976,37167,"Stanly County, North Carolina",Stanly County, North Carolina,33554,63557,80.4,11,40.6,5.6,2.4,78.3,19,NA,2.52,3.09,7.8,11.8,73.6,42904,87.1,19.7,24436,3.6,1,1.4,0.1,1,14.2,21,10.1,80577,31623,61631,6.8,4,10.5,3.4,5.9,0.2,71.6,85.6,87.3 +1977,37169,"Stokes County, North Carolina",Stokes County, North Carolina,34417,44889,91.3,3.4,47.6,4.2,2.4,81.4,22.5,NA,2.29,2.88,5,24.5,78.4,42765,89.9,18.5,19374,3.8,0.9,0.6,0.2,0.4,12,15.7,12.1,74778,32721,60039,7.7,4.6,8.6,0,0.8,0,71.7,79.7,84.9 +1978,37171,"Surry County, North Carolina",Surry County, North Carolina,30386,71407,86.2,3.8,43.7,5.2,2.6,78.9,20.6,25.3,2.4,2.91,9.2,21.9,73.3,40529,82.6,19.4,29366,7.7,0.7,0.6,0.1,1.4,16.7,19.7,15.6,76119,31947,56095,6.4,4.6,11.9,1,5.4,1.4,69.6,82.1,83.4 +1979,37173,"Swain County, North Carolina",Swain County, North Carolina,30284,14065,61.2,1.5,42.6,4.9,2.1,78,19.7,20.5,2.35,2.83,6.6,28.3,73.3,41122,87.1,21.3,5837,2,0.4,0.6,4.2,0.4,NA,NA,NA,74336,31040,55429,5.7,8.4,23.2,16.6,23.1,1.5,58.6,81.6,75.8 +1980,37175,"Transylvania County, North Carolina",Transylvania County, North Carolina,34678,33243,89.3,3.9,51.9,4,3.4,84.2,30.8,NA,2.2,2.69,9.7,14.7,75.1,40449,93.8,38.6,14590,1.5,0.6,0.3,0.1,0.4,NA,NA,NA,86211,38899,64523,11.2,3.2,11.8,11.1,11.8,0.1,75.9,82.5,86.2 +1981,37177,"Tyrrell County, North Carolina",Tyrrell County, North Carolina,23739,3376,56.4,32.7,46,5,3.8,83.4,25.5,NA,1.99,2.32,5.8,30.2,78.6,26250,80.5,14.7,1426,9,1.1,0.4,0,1.3,NA,NA,NA,57746,22294,43952,6,5.6,12.8,0,2.3,0.6,58.1,78.8,74.5 +1982,37179,"Union County, North Carolina",Union County, North Carolina,42675,244975,71.1,11.2,39.1,5.5,1.1,74,13.2,NA,2.95,3.33,5,4.5,81.8,55119,90.4,39,82231,10.1,4.5,2.3,0.6,2.2,7.7,9.9,7.4,132863,45355,99243,6.4,3.9,7.9,4.4,4.3,0.5,84.3,92.7,93.4 +1983,37181,"Vance County, North Carolina",Vance County, North Carolina,28460,42361,38.5,49,39.9,6.6,1.9,75.9,18.8,NA,2.59,3.36,13.3,23,57.4,35749,85.4,18.5,16081,5.7,1,0.4,0.3,0.5,19,29,12.5,66313,27223,46943,6.9,6.1,12.9,1.1,6.7,0.4,66.3,83.8,81.9 +1984,37183,"Wake County, North Carolina",Wake County, North Carolina,50500,1151009,59.4,19.3,37.2,5.8,1.3,76.6,12.5,NA,2.54,3.13,24.9,2.7,64.4,62331,94,56.3,445636,7.9,5.4,4.3,1.8,2.6,7.9,9,7.4,134151,52949,101763,5.7,3.7,8.2,3.6,4.9,1.2,89.1,94.9,94.7 +1985,37185,"Warren County, North Carolina",Warren County, North Carolina,24995,18751,38.5,47.1,48.6,4.4,3.3,81.9,26.9,NA,2.26,2.83,5.6,39.8,69.7,35503,86.7,19,7930,3.9,1,0.2,0.1,1.2,NA,NA,NA,71275,31482,45279,8.9,7.4,10.6,3.3,5.2,0,61.8,77.5,76.5 +1986,37187,"Washington County, North Carolina",Washington County, North Carolina,25523,10905,46.6,49.6,49.3,2.2,4.1,81.5,27.4,27.9,2.23,3,6.7,26.1,68.7,34800,85.6,12.2,4832,0.3,0.1,0,0,0,NA,NA,NA,59553,28150,41750,8.9,13,8.4,0,0.8,0.2,55.9,70,72.9 +1987,37189,"Watauga County, North Carolina",Watauga County, North Carolina,23312,54607,90.3,2.2,32.2,3,1.4,87.6,16.7,20.7,2.29,2.85,25.8,10.2,61.2,39757,92.4,47.7,21187,3.8,2,0.9,0.3,0.7,24.7,10.5,7.8,78984,32631,51367,4.5,7.6,10.7,5.4,7.5,0,81.7,90,89 +1988,37191,"Wayne County, North Carolina",Wayne County, North Carolina,32277,117606,55,30.6,37.4,6.4,1.5,76.3,16.7,22.9,2.44,3.02,13.7,23.1,61.5,40705,86.4,21.3,46888,8.9,1.6,1.1,0.2,2.3,16.9,25.6,10.1,77193,31216,58082,12,5.4,12.1,2.4,4.4,0.6,72.3,86.5,88.7 +1989,37193,"Wilkes County, North Carolina",Wilkes County, North Carolina,27997,65983,87.2,3.7,45.3,5,3.1,80,22.7,NA,2.41,2.88,8.7,22.3,73.9,36540,81.9,16.7,26975,4.6,1.1,0.5,0,0.9,16.4,25.5,13.3,66225,27866,50438,6.4,4.8,11.4,0.8,4.3,1,70.7,81.2,86.4 +1990,37195,"Wilson County, North Carolina",Wilson County, North Carolina,30944,78648,46.1,39.3,40.7,5.9,1.9,77,19,NA,2.35,2.98,18.5,14.1,59.1,42422,84.4,20.3,32860,8.1,0.3,0.9,0.4,1.6,21,31.9,16.5,71763,30057,51381,6.3,5.6,12.8,3.1,6,0.2,66.7,78.8,81.7 +1991,37197,"Yadkin County, North Carolina",Yadkin County, North Carolina,32295,37419,86.2,2.9,44.3,5,2.5,79.3,20.7,28.3,2.49,3.07,6.9,18.8,77.1,41308,86.5,15.8,14893,6.7,0.7,0.1,0,1.3,13.6,20.6,8.9,81915,33789,60321,6.9,4.5,11.9,8.3,8,1.3,68.7,82.3,83.8 +1992,37199,"Yancey County, North Carolina",Yancey County, North Carolina,30506,18676,92.5,0.6,47.9,5.1,2.8,81.6,26.5,NA,2.26,2.77,5.3,23,77.2,38469,88.1,23,8188,3.6,1.5,0.4,0,1,NA,NA,NA,78969,34699,54961,6.9,5.5,9.4,1,1.3,0.6,65.7,78,80.5 +1993,38001,"Adams County, North Dakota",Adams County, North Dakota,32061,2179,88,0.7,50,6.1,5.4,78.2,28.1,NA,2.06,2.84,17,6.1,73.8,46776,92.4,20.8,1019,3.2,1.9,0,1.5,0,NA,NA,NA,73927,34409,55417,8.5,2.6,8.1,18.6,11.1,0,66.2,73.3,79.8 +1994,38003,"Barnes County, North Dakota",Barnes County, North Dakota,37299,10794,91,1.3,42.9,4.4,3.7,80.2,22.8,18.8,2.09,2.84,20.6,4.3,73.4,47406,95.3,30,4852,0.6,2.1,1.4,0,0.4,NA,NA,NA,92909,41622,70230,9.6,3.2,4.8,2.1,1.4,0.1,72.9,86.1,81.2 +1995,38005,"Benson County, North Dakota",Benson County, North Dakota,36321,5861,43,0.5,32.4,9.6,1.1,66.2,15.4,15.8,3.04,3.86,11.2,15.5,74.2,49292,88.5,22.1,1922,1.1,1.7,0.5,6.6,1.6,NA,NA,NA,83060,27568,68049,8,2.1,7.7,5.6,6.3,1.8,65.1,73.8,81.8 +1996,38007,"Billings County, North Dakota",Billings County, North Dakota,36801,948,98.8,0,44.7,6.5,3.6,82.4,27,NA,2.49,2.77,3.5,15.1,81.2,44500,94.6,32.4,372,0.8,3.5,0,0,0,NA,NA,NA,102656,42078,81250,7.2,1.9,4,0,3.8,0,78,86.3,79.3 +1997,38009,"Bottineau County, North Dakota",Bottineau County, North Dakota,42611,6390,90.9,0.4,43.8,5.9,1.8,77.7,24.8,19.5,2.27,2.85,10.8,7.4,79.4,50345,94,27.4,2695,2.3,1.8,1.2,0.1,0.3,NA,NA,NA,109394,48356,83460,9.2,1.4,7.5,16,8.8,0,83.4,85.5,91.2 +1998,38011,"Bowman County, North Dakota",Bowman County, North Dakota,43720,2935,94.2,0,42.7,6.6,2.8,75.6,23.8,17.6,2.32,3.18,3.6,7.9,83,57704,90.2,27.3,1237,2.1,2.2,0,0,0,NA,NA,NA,93676,40067,83773,6.8,4.3,7.8,15.6,13.3,0,76.9,79.7,89.4 +1999,38013,"Burke County, North Dakota",Burke County, North Dakota,51250,2163,91.6,0.7,41.1,5.2,2,73.6,21.2,24.9,2.32,2.97,12.4,6.9,78.1,58974,92.7,23.5,931,2.1,0.4,4.2,0,0.5,NA,NA,NA,129023,53659,96339,5.5,5.2,4.4,0,1.7,0,80.9,90.1,91.6 +2000,38015,"Burleigh County, North Dakota",Burleigh County, North Dakota,47172,98986,86.6,1.9,38,6.1,2.3,76.5,17.4,17.5,2.36,3.02,25.6,7.4,71.6,57690,95.2,38.7,40361,1.4,2.4,0.9,0.6,0.8,8.2,8.8,7.5,108697,44873,84948,6.7,2.9,4.7,3.7,3.5,0.3,80.4,88.2,88.7 +2001,38017,"Cass County, North Dakota",Cass County, North Dakota,43112,189286,83.5,6.5,32.9,6.4,1.6,77.6,12.8,NA,2.24,3.02,44.1,2.1,52,52599,95.8,43.3,81668,2,3.3,1.9,3.5,2.4,10.3,10.1,6,101854,44593,75023,5.7,2.6,5.7,7,5.2,0.3,83.9,92.4,89.1 +2002,38019,"Cavalier County, North Dakota",Cavalier County, North Dakota,42244,3663,92.8,0,47.1,6.7,4.9,76.8,27.3,16.4,2.32,3.12,8.9,2,82.8,50728,93.1,22.2,1539,2.4,2.3,0.2,0.8,1.9,NA,NA,NA,101179,45550,67064,6.2,1.1,3.5,3.3,1.6,0,76.9,84.8,83.8 +2003,38021,"Dickey County, North Dakota",Dickey County, North Dakota,36618,4959,92.7,0.3,38.6,5.7,3.8,76.2,19.6,16.6,2.37,3,9.4,4.8,78.1,48462,91.4,27.1,1953,3.3,3.6,1.4,0.1,2,NA,NA,NA,98454,40260,63125,6.5,2.6,8,5,7.1,0,73.2,87.2,81.7 +2004,38023,"Divide County, North Dakota",Divide County, North Dakota,41958,2174,89.4,3.5,47.3,7,4.5,77.2,24.6,NA,2.24,2.91,7.4,10.8,77.6,50139,88.4,20.4,935,0,1.4,0.6,0.3,0,NA,NA,NA,110444,47458,89297,11.8,3.6,8.3,18.6,7.5,0,84.6,86.7,90.9 +2005,38025,"Dunn County, North Dakota",Dunn County, North Dakota,43860,4043,82.1,0.6,40.8,8.6,2.3,74.5,18.6,NA,2.6,3.37,5.8,14,71.8,50375,92.7,20.6,1513,6.7,2,1.3,7.7,6.7,NA,NA,NA,131547,51754,94688,9.3,2.8,17.3,32.1,31.3,0.6,76.1,89.2,86.6 +2006,38027,"Eddy County, North Dakota",Eddy County, North Dakota,37734,2319,91.2,0,48.7,4.5,5.6,80,26.8,NA,1.95,2.68,16.3,6.2,72,44427,92.7,28.2,1142,1,1.8,0.3,1.1,0.2,NA,NA,NA,74107,38264,55389,7,2.3,5.8,2.2,4.6,0,73.1,76.4,85.2 +2007,38029,"Emmons County, North Dakota",Emmons County, North Dakota,36551,3269,94.3,0.1,51.5,5.1,6.6,81.3,28.8,NA,2.11,2.8,8.6,5.6,81.4,46302,88.9,20.7,1516,0.7,9.6,0.4,0.4,0.7,NA,NA,NA,85402,39671,67368,6.9,2.3,6.5,5.5,7.1,2.2,69.7,71.6,76.8 +2008,38031,"Foster County, North Dakota",Foster County, North Dakota,46948,3372,94.2,0.4,43.3,5.5,4.4,78.1,23.1,13.8,2.16,2.8,12.1,2.7,77.4,52370,93.2,27.2,1515,0.5,2.4,0,0,0,NA,NA,NA,94603,43724,83412,4.5,0.1,4.7,1.5,4.3,0,78,82,90 +2009,38033,"Golden Valley County, North Dakota",Golden Valley County, North Dakota,38377,1679,91.2,0.1,45.7,6.6,1.9,78,25.3,NA,2.48,2.81,7.5,2.7,75.1,49750,96.6,18,663,1.2,0.3,0.8,0,0,NA,NA,NA,91947,36292,76528,8.1,5.7,2.3,0,1.3,0,81.4,89.9,85.2 +2010,38035,"Grand Forks County, North Dakota",Grand Forks County, North Dakota,38393,72764,83.9,3.6,30.6,6.3,1.7,78.8,14,NA,2.2,2.97,41,3.7,52.1,50866,95.7,37.2,31045,2.4,3.4,1.9,1.8,1.8,13.9,10.5,8.5,91810,39597,68450,7.8,1.9,4.9,2.3,2.2,0.3,83.8,90.3,87.5 +2011,38037,"Grant County, North Dakota",Grant County, North Dakota,33929,2276,93.6,0.1,48.8,4.7,6,77.9,28.9,NA,2.07,2.77,7.7,9.9,84,38448,89.4,21.2,1072,1.9,4.8,2,0.2,0.3,NA,NA,NA,79345,36921,56750,9,4.5,5,1.4,6,0,77.1,69.6,80.2 +2012,38039,"Griggs County, North Dakota",Griggs County, North Dakota,39830,2340,94.8,1.2,50.6,5.3,4.9,77,28.8,15.9,2.39,3.23,9.7,2.9,79.4,47727,93.5,27.4,946,0.3,1.8,0.3,0,0.3,NA,NA,NA,103858,47183,64737,5.4,0.5,5.7,0,12,0,72.3,84.2,84.7 +2013,38041,"Hettinger County, North Dakota",Hettinger County, North Dakota,40097,2453,94.9,0.3,42.6,6.1,4,81.1,26.2,17,2.09,2.79,5.9,6.7,79.7,48393,93.1,18.7,1107,2.7,2.8,0,0,0.3,NA,NA,NA,89350,43990,70827,10.5,5.7,5.3,5.9,4.9,0,72.3,78.6,82.7 +2014,38043,"Kidder County, North Dakota",Kidder County, North Dakota,36840,2374,96.2,0.2,47.8,6.7,1.9,76.2,26.9,NA,2.1,3.01,5.8,17.9,76,47788,91.8,21.3,1129,1.9,2.2,0,0.3,0.2,NA,NA,NA,72356,35003,61850,7.9,1.7,3.4,2.5,2.4,0,72.8,73.6,73.8 +2015,38045,"LaMoure County, North Dakota",LaMoure County, North Dakota,40115,4107,96.1,0.3,46.7,6.4,4.4,76.7,26.9,19.1,2.31,2.89,7,2.7,84.9,44972,92,24.2,1712,1.5,2,0.3,0,0.5,NA,NA,NA,96684,41792,70263,7.1,2.1,5.5,8.9,4.2,1.2,79.7,81.5,87 +2016,38047,"Logan County, North Dakota",Logan County, North Dakota,31806,1848,94.2,0.1,49.9,6.8,5.2,79.7,27.8,15.9,2.29,2.96,2.7,6.6,82.7,37566,89.9,26.2,773,1.8,7.5,0,0,1.8,NA,NA,NA,75186,33030,61339,6.2,1.3,3,0,0,0,71.2,77.2,79.7 +2017,38049,"McHenry County, North Dakota",McHenry County, North Dakota,40534,5264,95.2,0.7,43.4,5.2,3.2,76.2,21.8,28.8,2.29,2.83,6.3,11.3,80.3,49781,91.4,20.9,2265,0.4,3,0.7,1.6,0.8,NA,NA,NA,93621,41087,80614,10.7,4.7,7.3,10.9,10.3,0,74.6,81.5,81.4 +2018,38051,"McIntosh County, North Dakota",McIntosh County, North Dakota,34056,2512,92.5,0.1,53.8,4.7,7,81.6,31,10.3,2.02,2.67,5.5,5.4,79.3,41611,88.4,17,1191,2.2,14.1,3.2,0.2,0.8,NA,NA,NA,75039,36646,64236,6.3,0.6,6.7,0,8,0,67.8,73.4,80.2 +2019,38053,"McKenzie County, North Dakota",McKenzie County, North Dakota,55345,14280,80.1,2.1,31.2,9.5,0.8,68.8,9.1,NA,2.37,3.1,27.4,16.2,55.1,63888,92.3,22.8,5910,9,1.3,1.6,3,2.2,NA,NA,NA,131562,48665,88289,4.4,1.5,13.5,24.2,18.7,3.2,83.2,93.9,85.6 +2020,38055,"McLean County, North Dakota",McLean County, North Dakota,45111,9807,88.8,0.2,47.4,5,2.8,78.5,25.6,NA,2.26,2.8,7.9,5.4,83.4,52068,93.6,23.9,4261,1.5,1.4,0.5,0.7,0.7,NA,NA,NA,97533,42526,81847,9.3,1.5,5.6,7.1,5.9,2.6,80.2,88.1,84.2 +2021,38057,"Mercer County, North Dakota",Mercer County, North Dakota,41935,8341,91,0.6,42.8,5.8,3.2,76.8,21.9,NA,2.27,2.78,7.4,12,80.5,50625,90.4,22.6,3594,2,7.5,1,1.3,2.5,NA,NA,NA,94487,40062,79405,8.6,1.6,8,18.1,10.5,0,78,85.2,88.3 +2022,38059,"Morton County, North Dakota",Morton County, North Dakota,42544,33479,87.9,1.7,37.7,5.9,1.8,76.4,16.8,NA,2.43,2.97,17.3,9.7,75.1,50554,94.5,29.3,13529,3.2,1.6,0.2,0.5,1.3,NA,NA,NA,109260,45337,79483,8,1.6,4.8,0.3,3,0,80.8,87.3,89.6 +2023,38061,"Mountrail County, North Dakota",Mountrail County, North Dakota,45133,9567,59.8,2,35.1,8.1,1.3,71.5,13.1,19.9,2.46,3.29,17.2,12.6,60,53814,88.6,22.4,3839,8.1,1,0.5,6.1,3.8,NA,NA,NA,102926,41281,81292,5.7,2,16.4,21.1,15.8,1.8,71.1,86.2,86.3 +2024,38063,"Nelson County, North Dakota",Nelson County, North Dakota,38226,3015,93.3,0,50.4,4.7,5.7,79.5,27.9,NA,2.25,2.97,10.4,2.7,76.9,47903,93.3,28.2,1295,1.5,4.4,1.2,1.2,2.5,NA,NA,NA,87612,38484,68051,9,1.4,4.7,0,1.6,0,72.6,84.7,79.4 +2025,38065,"Oliver County, North Dakota",Oliver County, North Dakota,45069,1821,91.9,0,46.1,7.1,1.8,73.9,25.8,NA,2.5,2.9,0.3,8.3,93.4,52803,94.6,20.5,727,0,1.9,0.3,0,0,NA,NA,NA,102691,41155,76953,8.2,0.9,3,0,2.4,0,67,82.9,85.7 +2026,38067,"Pembina County, North Dakota",Pembina County, North Dakota,37408,6787,90.3,1,45.5,5.4,3.4,78.6,25.5,NA,2.23,2.96,11.1,4.6,74.5,46558,91.9,22.9,2959,1.2,2.5,0.2,0,0.6,NA,NA,NA,91278,41314,66884,10.4,4.3,6.4,3.8,7.9,0.1,72.5,81.5,84.5 +2027,38069,"Pierce County, North Dakota",Pierce County, North Dakota,39146,3961,93.3,0.3,44.3,5.2,3.3,78.5,24.6,NA,2.07,2.74,11.2,5.2,78.9,47681,93.9,27.9,1840,1,3.5,0.1,0,0.1,NA,NA,NA,84732,40194,63214,8.2,1.5,8.7,7.3,9.2,0,73,83.5,88.7 +2028,38071,"Ramsey County, North Dakota",Ramsey County, North Dakota,38314,11563,82.1,1,40.2,6.7,3.7,76.6,21.7,NA,2.14,2.93,31.1,6.6,58.7,43765,93.1,27.6,5185,0.8,1.8,1.8,1.7,1.1,NA,NA,NA,82009,37577,61319,6.4,1.3,8,6.1,12.9,0,70.5,76.6,81.9 +2029,38073,"Ransom County, North Dakota",Ransom County, North Dakota,36727,5662,92.7,0.9,41.1,5.6,4.1,77.4,21.6,NA,2.32,2.99,15.3,7.4,75.7,46809,90.6,21,2305,1.9,4,1.6,0.1,2.4,NA,NA,NA,90086,38775,74521,9.6,2.3,4,8.9,5.4,0.5,75.9,81.1,84.8 +2030,38075,"Renville County, North Dakota",Renville County, North Dakota,39673,2277,96.8,0,42.5,4.6,3.1,77.3,20,NA,2.42,2.94,8.1,19.2,81.5,52909,92,22,922,0,1.4,0.7,0,0,NA,NA,NA,90874,38289,76311,9.1,1,5.9,2.3,11.5,0.2,84.9,91.4,93 +2031,38077,"Richland County, North Dakota",Richland County, North Dakota,36953,16550,90.1,0.9,38,5.5,2.2,78.1,19.6,NA,2.24,2.87,24.6,3.3,69.1,48230,94.9,25,6764,1.2,1.8,0.3,0.6,0.2,NA,NA,NA,97675,40184,72524,8,1.4,6.5,5.3,4,0,78.1,87.7,88.5 +2032,38079,"Rolette County, North Dakota",Rolette County, North Dakota,36020,12065,18.5,0.2,32.1,7.8,2.1,67.3,13,NA,3.23,3.72,9.1,20.5,65.2,45661,83.9,16.6,3686,2,1.8,0.9,8.7,0.5,NA,NA,NA,74414,25606,57355,5.8,5.9,24.2,13.2,16.2,5.5,63.9,74.6,86.5 +2033,38081,"Sargent County, North Dakota",Sargent County, North Dakota,48135,3822,90.7,2.7,44.1,5.8,2.7,79.6,22.7,17.3,2.18,2.75,16,7.4,73.9,52199,92.2,19.1,1734,2.5,1.6,0,3.5,2,NA,NA,NA,97234,44694,77697,7.5,0.4,4.1,1.8,5.4,0.6,76.5,86.3,87.3 +2034,38083,"Sheridan County, North Dakota",Sheridan County, North Dakota,43378,1327,95.7,0,50.8,4.5,3.8,83.2,31.7,NA,1.96,2.48,9.9,7.1,82.5,45987,90.8,20.3,676,0,3.6,0,0.7,0,NA,NA,NA,85025,41246,67361,7.9,1.3,6.6,0,1.7,0.5,74.9,71,83.6 +2035,38085,"Sioux County, North Dakota",Sioux County, North Dakota,23066,3789,12.4,0.2,28.7,8.3,0.3,65.4,9.2,NA,3.5,4.28,5.7,8.9,46,40247,86.9,11.2,1067,1,0.7,0,13.7,0.7,NA,NA,NA,64425,19102,41676,5,21.8,24.3,17.6,22.1,3.4,57.7,75.5,76 +2036,38087,"Slope County, North Dakota",Slope County, North Dakota,31964,795,93.8,0,54.2,1.8,3.6,82.3,27.5,NA,2.34,2.99,0.3,12.4,87.4,43542,91.3,22.8,340,1.2,0,0,2.6,0,NA,NA,NA,88575,44034,62500,4,6.6,2.9,0,3.3,0,72.1,75,79.7 +2037,38089,"Stark County, North Dakota",Stark County, North Dakota,46299,33116,86.7,2.3,34.5,8.3,2.1,72.3,13.5,NA,2.44,3.09,27.7,5.3,64.9,56226,91.2,27.2,13217,4.9,2.3,1.8,1.9,1.8,NA,NA,NA,99254,40640,80744,6.9,3.2,7.5,9.8,8.6,0.1,72.3,86.9,88.4 +2038,38091,"Steele County, North Dakota",Steele County, North Dakota,40172,1731,94.1,0.3,46.4,6.1,4.1,79,28.8,NA,2.37,2.93,8.2,2.9,77.8,44917,94.5,29.6,731,0,2.2,0,0.3,0.4,NA,NA,NA,93665,41390,80313,6.7,3.3,3.9,0,2,0,69.9,76.2,76.1 +2039,38093,"Stutsman County, North Dakota",Stutsman County, North Dakota,35261,21525,92,2.1,40.6,5.8,3.3,79,20.1,15,2.12,2.91,30.2,7.6,63.6,44786,92.8,24.4,9295,1.5,3.1,0.1,0.2,1.1,NA,NA,NA,91058,40216,60172,7.2,3.3,5.3,1.1,3.8,0.2,75.2,86.5,85.7 +2040,38095,"Towner County, North Dakota",Towner County, North Dakota,41125,2113,84.5,0.7,50.3,5.5,4.4,75,24.9,NA,2.17,2.85,14.7,2.5,77.2,50972,89.5,18.9,958,2.4,0.2,0,0.9,0.8,NA,NA,NA,81330,36218,63017,4,1.6,5.3,4.7,2.7,1.4,73.5,80.2,83.6 +2041,38097,"Traill County, North Dakota",Traill County, North Dakota,46080,7980,91.1,0.9,40.7,5.9,4,77.7,20,NA,2.27,2.85,17,2.7,74.6,53802,93.7,31.2,3316,2,0.7,0.2,0.4,0.8,NA,NA,NA,105020,43803,88289,7.5,1.8,5.1,1.1,4.6,0,76.7,86.8,81.2 +2042,38099,"Walsh County, North Dakota",Walsh County, North Dakota,41676,10488,85.2,0.9,43.8,6,4.2,76.5,21.5,18.2,2.27,2.93,13.8,5.6,77.8,47971,87.6,19.5,4450,8.4,2.4,0.4,0.4,0.6,NA,NA,NA,86952,37524,69976,7.4,2.2,7.5,5.3,8.5,0.2,68.2,83,82.7 +2043,38101,"Ward County, North Dakota",Ward County, North Dakota,45526,69232,82.2,4.1,33.3,7.1,2,75.8,13.7,19,2.38,3.09,27.8,7.6,61.9,53872,95.1,29.7,28290,3.2,1.7,2,1,1.1,NA,NA,NA,101341,42299,79273,11.3,3.3,6.1,2.5,2.7,0.9,81.6,91.3,89.6 +2044,38103,"Wells County, North Dakota",Wells County, North Dakota,37845,3942,96.5,0,47.9,6.5,4.8,76.6,25.6,NA,2.12,3.03,15.2,4.6,73.5,42891,91.8,22.3,1808,1.7,1.7,0.6,0.2,0.2,NA,NA,NA,90709,42252,61346,5.9,1.2,5.1,1.3,2.5,0,69.1,80.4,81.1 +2045,38105,"Williams County, North Dakota",Williams County, North Dakota,47200,39368,81.3,5.2,32.3,9.2,1.2,70,9.9,NA,2.53,3.27,33.2,8.2,57.2,57235,90.6,23.7,15308,7,1.5,1.2,3.4,0.5,NA,NA,NA,119610,45793,90224,8.8,2.6,11.7,8,14.6,1.1,72.9,90.4,88.9 +2046,39001,"Adams County, Ohio",Adams County, Ohio,28738,27510,96.5,0.4,42.3,5.9,1.1,76,18.5,NA,2.66,3.16,7.7,19.5,71,38698,85.2,14.3,10230,0.6,1,0.3,0,0.1,NA,NA,NA,65434,25484,49521,8.9,6.6,7.8,3.2,4.1,0.8,67.5,81.8,82.5 +2047,39003,"Allen County, Ohio",Allen County, Ohio,35104,101685,80.9,10.6,39.7,6.1,2.2,76.4,18.7,NA,2.41,3.06,15.3,3.9,68.3,45257,92.4,19.9,40928,2.3,0.9,0.8,0.4,0.3,13.1,19.1,8.5,80262,33382,62001,7.7,5.6,6.3,4.6,4.1,0.2,72.9,87.1,87.9 +2048,39005,"Ashland County, Ohio",Ashland County, Ohio,33661,52296,95.1,1.1,41.4,5.3,2.5,77.4,20,NA,2.46,3.04,10.6,3.8,78.9,41405,91,22.1,20654,1.3,3.3,0.6,0.2,0.5,13.8,23.2,7.6,79889,32097,64991,6.8,3,8.6,21.2,14.1,0.4,73.4,84.9,86.2 +2049,39007,"Ashtabula County, Ohio",Ashtabula County, Ohio,30398,97343,89.6,3.8,42.7,5.6,2.2,78.1,19.9,26,2.41,2.98,12.4,6,73.9,40584,87.5,16,38959,3,2.5,0.4,0.5,0.9,18.3,26,12.6,74053,30768,55507,9.2,6.9,9.5,11.4,11.9,0.4,72.3,83,85.8 +2050,39009,"Athens County, Ohio",Athens County, Ohio,23094,61573,90.7,2.5,32.8,3.7,1.7,85.1,14.7,22.5,2.37,2.99,23.1,13.1,61.9,42830,91.8,35.4,22722,1.4,2.9,1.9,1.1,0.9,22.1,14.3,8.4,75116,29474,53837,6.4,4.7,5.8,3.7,2.8,1.1,76.9,87,85.1 +2051,39011,"Auglaize County, Ohio",Auglaize County, Ohio,41425,46209,95.4,0.9,40.6,6,2.9,76.2,19.2,NA,2.41,2.99,12.3,3.6,75.9,50906,93.6,20.8,18951,1,1,0.4,0,0,NA,NA,NA,91185,37573,76454,7.3,2.5,3.9,0.4,2.2,0.1,76.3,85.5,87.6 +2052,39013,"Belmont County, Ohio",Belmont County, Ohio,29843,65982,91.4,3.1,44.1,4.7,2.4,81.2,21.4,25.6,2.35,2.96,13.4,5.9,74,36185,92,18.7,26450,0.9,0.7,0.5,0,0.4,14.3,22.7,8.3,75829,31496,58411,7.1,5.2,6,2.6,4.9,0,67.5,76.4,83.8 +2053,39015,"Brown County, Ohio",Brown County, Ohio,35821,43710,95.7,0.9,42.1,5.7,2.3,77.1,18.8,33.4,2.52,3.01,7.9,14,76.1,46519,87.8,15.8,17145,0.4,0.8,0.4,0,0.2,17.4,22.5,11.9,85915,33717,69990,7.6,4.2,6.6,0.7,2.8,0.6,67.1,83.5,82.6 +2054,39017,"Butler County, Ohio",Butler County, Ohio,39624,389910,77.9,8.3,37.1,5.9,1.8,76.4,15.5,NA,2.61,3.15,18.9,2.3,69.9,53166,91.2,32.5,145232,4.3,2.7,2.7,1.3,3.3,11.7,13.1,8.6,103524,39425,81194,6.1,4.3,6.3,3.2,3.9,1.3,80,89.8,91.2 +2055,39019,"Carroll County, Ohio",Carroll County, Ohio,35276,26731,95.1,0.7,45.5,5.2,1.8,79.4,21.9,NA,2.3,2.81,5.7,10,78,45263,89.8,14,11476,0.9,3.2,0,0,0.4,NA,NA,NA,81586,35429,64675,7.9,2.8,9.2,21.1,16.1,0.3,65.4,80.2,77.8 +2056,39021,"Champaign County, Ohio",Champaign County, Ohio,39130,38772,92.3,1.7,41.6,5.6,1.6,77.8,18.9,NA,2.46,2.92,11,5.6,76.7,46654,91.8,19.1,15512,1.3,0.4,0.3,0,0.1,NA,NA,NA,87101,35326,74239,8,4.9,5.1,4,3.5,0.2,74.7,87.8,88.3 +2057,39023,"Clark County, Ohio",Clark County, Ohio,34454,135445,83.5,8.2,41.2,5.8,2.2,77.4,20,22.9,2.4,2.96,15,3.6,69.2,44481,89.3,18.5,55325,2.1,0.9,0.4,0.2,0.7,15.6,22.3,10.6,77705,32421,60846,9.3,6.2,6.8,2.9,4.2,0.3,73.6,86.9,89.5 +2058,39025,"Clermont County, Ohio",Clermont County, Ohio,42736,209862,92.4,1.5,40.8,5.5,1.6,77.6,17.9,NA,2.47,2.98,19.5,4.8,73.4,54485,91.9,31.4,84334,1.9,2,0.6,0.2,0.4,8.8,10.7,7,107049,43473,83178,7.3,3.8,5.7,2.9,3.7,0.2,81.1,88.7,91.9 +2059,39027,"Clinton County, Ohio",Clinton County, Ohio,34018,42014,92.6,1.9,41,5.8,2.3,77.1,18.1,NA,2.47,3.07,13.8,6.6,70.5,43207,91.6,20.1,16534,1.3,1.3,0.5,0.2,0.6,14.8,20.8,11.8,84570,34046,68125,9.8,4.6,6.2,3,3.2,0.8,73.8,87.5,87 +2060,39029,"Columbiana County, Ohio",Columbiana County, Ohio,31616,101203,93.2,1.9,44.7,4.9,2.8,79.7,21.4,24.6,2.37,2.96,12.9,7.8,73.1,40460,89.7,16,41375,0.8,1.1,0.1,0.1,0.1,13.9,19.2,10,75850,32265,58474,9.1,4.6,6.9,6.1,5,0.4,69.5,83.1,85.5 +2061,39031,"Coshocton County, Ohio",Coshocton County, Ohio,29916,36679,94.7,0.7,41,6.4,2.5,75.8,19.7,NA,2.44,2.96,10.9,13.2,72.5,40037,85,16.7,14860,0.8,5.9,0.3,0.1,1.3,18.8,26.1,11.4,69218,28306,54687,6.9,5,10.9,15.9,13.7,0.9,63.2,79.3,80.3 +2062,39033,"Crawford County, Ohio",Crawford County, Ohio,33168,41767,95.5,0.9,43.3,5.7,2.7,78,20.8,24.2,2.28,2.8,14.4,2.6,71,41052,90.5,15.5,18120,1.1,1.4,0.7,0.1,0.8,13.2,18.4,9.8,72825,31729,55477,6.6,5.4,6.3,3,3.5,0.5,72.1,85.8,87.9 +2063,39035,"Cuyahoga County, Ohio",Cuyahoga County, Ohio,37386,1249418,58.7,29,40.5,5.5,2.4,79.4,19,23.6,2.21,3.01,32.4,0.5,59.1,48946,91.2,35.9,554173,5,5,1.8,1.8,2.7,16.2,23.2,12.3,92131,41559,62823,5.8,6.4,5.5,2.4,3.1,0.5,75.6,86.9,87.3 +2064,39037,"Darke County, Ohio",Darke County, Ohio,35712,51655,95.6,0.5,42,6,2.8,76.3,20.2,22.5,2.39,2.95,11.3,3.8,72,44489,90.7,16.5,21332,1,0.8,0.7,0.2,0.1,11.2,13.2,10.3,83137,34446,64654,5.6,2.6,6.5,8.8,5.8,0.7,71.4,80.5,85.1 +2065,39039,"Defiance County, Ohio",Defiance County, Ohio,37901,38258,88.6,1.7,40.8,5.8,1.6,77.3,19.5,20.2,2.45,2.93,11.7,4.2,78.6,46030,92.3,20.1,15376,5.3,1.7,0.3,0,1.1,NA,NA,NA,87099,35076,73615,6.1,3.8,8.8,13.1,10.7,0.2,75.7,84.9,87.8 +2066,39041,"Delaware County, Ohio",Delaware County, Ohio,59057,221160,81.4,4.2,39.9,5.7,1.5,74.7,14.7,NA,2.72,3.14,15.9,1.9,78.2,76928,97.1,58,80455,2.5,4.2,4.9,0.8,1.3,5,6.2,5.3,161060,59581,130088,6,2.8,4.5,2.1,3.9,0.8,91.7,93.5,95.7 +2067,39043,"Erie County, Ohio",Erie County, Ohio,36343,74938,82.2,8.5,45.2,5.1,2.6,80,23,21.5,2.27,2.85,17.4,2.1,71.1,44544,92.4,27.9,32122,2.2,1.5,0.7,0.4,0.7,12.5,20.5,10.3,91016,39579,68431,7.6,5.5,5.4,0.7,2.2,0,74.6,85.9,86.4 +2068,39045,"Fairfield County, Ohio",Fairfield County, Ohio,42666,161289,82.6,8.9,39.5,5.8,1.9,76.1,16.4,NA,2.64,3.07,14.6,2.2,74.2,54889,94,31.9,59979,2.1,2.3,0.9,0.7,1.2,8.2,10.2,7.5,106689,40561,87069,7.4,3.1,6.3,3.2,3.9,0.5,80.7,90.7,91.2 +2069,39047,"Fayette County, Ohio",Fayette County, Ohio,32099,28880,91.3,2.9,40.8,5.6,1.7,76.3,17.9,NA,2.45,2.99,16.6,3.3,63,44950,85.8,13.8,11635,1.3,0.4,0.7,0,1,NA,NA,NA,76109,31573,60047,6.1,4.1,7.8,5.8,7.2,0.7,67.8,86,86.1 +2070,39049,"Franklin County, Ohio",Franklin County, Ohio,42145,1321635,60.5,23,34.7,6.7,1.4,76.6,12.7,21.8,2.36,3.06,35,1.1,53,51766,91.2,42,547922,4.7,4.1,3,4.2,3.1,14.5,20.1,9.5,102386,42855,73795,5.4,4.2,8.4,4.1,4.8,1.1,81.3,92.3,93.3 +2071,39051,"Fulton County, Ohio",Fulton County, Ohio,38231,42434,90.3,0.4,41.6,5.7,2.2,76.8,18.9,NA,2.49,3.03,9.3,5.1,81.3,47630,94.8,18.8,16881,4.2,0.9,0.5,0.6,0.7,NA,NA,NA,94622,37936,72866,6.6,2.7,5.7,7.7,4.5,0,77.3,87.7,88.9 +2072,39053,"Gallia County, Ohio",Gallia County, Ohio,30964,29162,92.4,2,41.3,6.2,2.1,76.4,19.4,NA,2.52,3.1,8.6,22.2,76.4,42411,86.9,17.9,11305,1,1.8,0.5,0,0.1,NA,NA,NA,77599,30683,56455,6.7,3.5,10.4,19.4,12.1,0.2,60.5,79,76.1 +2073,39055,"Geauga County, Ohio",Geauga County, Ohio,44818,95479,93.7,0.9,45,5.2,2.8,77.6,21.7,NA,2.65,3.1,5.7,3.4,87,58547,91.2,38.7,35587,1.7,8.1,0.3,0.5,1.2,5.8,5.2,7.2,135616,50431,100783,6.6,2.5,8.6,17.4,12.7,0.9,79.8,85.5,86.9 +2074,39057,"Greene County, Ohio",Greene County, Ohio,42685,168531,82.9,5.9,38.7,5.3,1.8,79.3,18.2,NA,2.39,2.97,20.4,0.8,67.6,57736,94.5,41.3,67478,2.1,2.5,2.1,0.8,0.5,9.8,11,6.8,108932,44385,85218,11.4,3.5,5.1,3.4,3.2,0.4,83.5,90.4,92.3 +2075,39059,"Guernsey County, Ohio",Guernsey County, Ohio,32729,38283,94.1,1.7,42.7,5.7,1.9,77.8,19.9,23.1,2.32,2.91,13.5,9.5,71.6,41103,85.7,15.3,16247,1.1,2.7,0.3,0.4,0.5,15.8,22.8,10.5,74239,32089,55756,8.1,5.5,10,6.5,6.2,0.7,66.1,82.8,84.4 +2076,39061,"Hamilton County, Ohio",Hamilton County, Ohio,40337,827878,64.3,25.1,36.9,6.3,2,76.9,16.2,NA,2.3,3.04,34.9,0.8,59,51026,92.5,41.4,352181,3.2,3,1.7,1.2,1.7,14.9,20.1,9.9,103444,44328,70816,5.7,4.8,5.8,3.5,4.1,0.6,79,88.6,90.4 +2077,39063,"Hancock County, Ohio",Hancock County, Ohio,38983,74885,89.9,1.8,39.6,5.9,2.4,78.1,18.3,NA,2.31,2.92,18.7,5.7,69.2,50155,94.9,29.7,31618,3.2,1.2,1.6,0.6,0.7,10.3,10.7,7,92037,39313,69699,7.5,2.8,4.6,1,1.6,0.5,79.7,87.9,90.1 +2078,39065,"Hardin County, Ohio",Hardin County, Ohio,33096,30527,93.4,1.1,35.3,5.9,2.1,76.8,16.1,24,2.44,3.04,11.6,10.3,73.3,43028,91.7,18.9,11711,2.1,2.4,1,0.3,0.1,NA,NA,NA,74502,29509,58001,7.3,3.5,11.9,23.8,20.2,1.1,73.6,83.3,84.7 +2079,39067,"Harrison County, Ohio",Harrison County, Ohio,31464,14408,94.7,2.9,46.1,4.7,2.4,79,22.5,28.4,2.39,3.06,4.4,13.6,76.7,40346,89.8,13,5921,0.4,2.1,0.1,0,0,NA,NA,NA,72647,31219,53851,6.7,4.4,12.7,28.5,13.8,0.3,63.3,70,82.2 +2080,39069,"Henry County, Ohio",Henry County, Ohio,39416,27581,89.7,0.6,41.7,5.9,3.4,76.5,19.5,NA,2.42,2.99,8.8,7,81.5,48103,92.6,18.7,11226,4.1,1.9,0,0.2,1.1,NA,NA,NA,98578,40050,79267,8.3,3.6,5.3,1.2,5.7,0.1,74.4,86.2,87.9 +2081,39071,"Highland County, Ohio",Highland County, Ohio,32842,43403,95,1.2,40.8,6.3,2.5,76.1,18.6,NA,2.55,3.07,10.6,12.8,73.2,43495,86.9,15.6,16814,1,1.7,0.1,0,0.5,14.4,18.9,14.4,76105,29794,62008,7.7,3.3,8.9,11.7,10.3,0.2,63.5,83.7,80.8 +2082,39073,"Hocking County, Ohio",Hocking County, Ohio,33788,27938,94.4,0.4,42.6,5.4,1.5,78.3,19.5,31.1,2.4,2.74,7.3,18.1,78.8,43935,88.1,14.4,11565,0.8,1,0.1,0,0.4,NA,NA,NA,77310,32104,61366,7.1,4.3,6.3,3.5,3.3,0,71.6,81.1,86 +2083,39075,"Holmes County, Ohio",Holmes County, Ohio,35822,44312,98.1,0.2,32.5,8.3,2,69.5,14.2,NA,3.26,3.75,6.4,5.3,79.5,47751,57.1,11,13326,0.8,43.9,0,0.1,8.6,NA,NA,NA,99080,30501,74774,3,2.1,42.3,58.4,54.3,13,52.1,62.4,62.2 +2084,39077,"Huron County, Ohio",Huron County, Ohio,37624,58412,91.9,0.7,40.4,5.8,2,76.2,18.2,22.4,2.46,3.11,14.9,6.3,73.6,45651,90.7,16.9,23432,3.1,1.3,0.2,0.1,0.9,12,15.9,9.5,79750,32660,65972,6.6,4.3,6.9,3.5,6.6,0.1,72.5,82.8,87.3 +2085,39079,"Jackson County, Ohio",Jackson County, Ohio,31023,32588,96.2,1,40.2,6.4,1.7,76.5,17.8,27.5,2.55,3.04,8.1,17.4,73.4,43710,87.5,16.6,12672,0.5,1.1,0.5,0,0.5,17.7,21.6,13.9,76287,29773,58409,9.1,4.2,6.5,4.4,6,0.2,65.9,84.8,82.4 +2086,39081,"Jefferson County, Ohio",Jefferson County, Ohio,31199,64855,89.6,5.4,44.2,5,2.7,80.6,22.1,23.5,2.3,2.93,13.4,4.8,71.8,42187,92.9,20.6,27127,1.1,1.6,0.3,0,0.4,16.9,24.8,10.4,72319,31646,56983,7.7,4.9,5.3,5.4,3.8,0.4,70.1,79.1,84.4 +2087,39083,"Knox County, Ohio",Knox County, Ohio,36551,62888,94,0.9,39.4,5.9,2.2,77,18.7,26.9,2.54,3.11,11.1,3.6,75.1,47658,91.1,24.3,23435,1,3.2,0.6,0.1,0.2,11,14.5,7.7,90200,34636,73988,8,2.4,11.2,22.4,15.9,1.6,75.2,85.4,87.5 +2088,39085,"Lake County, Ohio",Lake County, Ohio,41813,232101,86.9,4.9,44,4.8,2.7,80.4,21.1,23.3,2.29,2.9,18.4,1.9,75.1,51859,93.9,30.5,100319,3.2,4.7,0.9,0.5,1.6,8.2,11.5,7.2,98936,43197,77952,7.1,4,4.9,1.3,2.7,0.3,81.8,87.5,91.7 +2089,39087,"Lawrence County, Ohio",Lawrence County, Ohio,29814,57385,94,1.7,41.9,5.2,1.8,78.1,18.8,22.1,2.52,3.08,10.4,14.8,72.5,40057,90,18.6,22501,0.6,0.9,0.2,0.1,0.1,17.5,21.2,13.7,72534,29610,54842,7.9,3,5.1,1.3,3,0.1,66.2,81.3,84.5 +2090,39089,"Licking County, Ohio",Licking County, Ohio,40704,180311,87,4,40.2,5.8,1.9,77,17.1,26.8,2.59,3.08,15.7,4.1,73.7,53657,93.1,29.3,68305,1.9,2.7,0.7,0.7,0.6,10.1,13.3,8.1,107464,41543,81033,8.4,3.1,5.4,2.1,3.1,0.2,81.8,89.4,91.9 +2091,39091,"Logan County, Ohio",Logan County, Ohio,39307,46140,92.7,1.7,42.1,5.8,1.7,77,19,NA,2.34,2.84,12.4,7.7,77.7,47868,92.9,18.3,19558,1.7,1.2,0.5,0.1,0.4,NA,NA,NA,90992,37613,69183,7.7,2.8,5.8,6.9,5,0.6,76.6,88.4,88 +2092,39093,"Lorain County, Ohio",Lorain County, Ohio,38226,314588,79.5,7.5,42.1,5.4,2.2,78.3,19.4,NA,2.43,3.08,14.8,1.9,73.7,49659,91.5,27.9,125856,6.4,1.9,1,0.4,1.7,12.8,18.8,10.3,96343,39638,70693,7.7,4.1,5.3,3,3.1,0.3,79.6,87.6,86.6 +2093,39095,"Lucas County, Ohio",Lucas County, Ohio,35017,428748,69.2,19.5,38.3,6.1,1.9,77.1,17.1,NA,2.31,3.01,24.1,1.9,61.7,44413,91,28.5,182146,3.3,2.1,1.2,1.4,0.8,17.8,25.7,11,84633,36289,60095,6,6.3,5.3,2.6,3.2,0.3,73.8,87.5,88.3 +2094,39097,"Madison County, Ohio",Madison County, Ohio,41173,44126,87.5,4.7,41.5,5,1.7,79.9,16.1,25.5,2.56,3.13,12.2,4.7,75.9,52153,88.9,22.4,15361,2.5,3.1,0.7,0.5,1,NA,NA,NA,99213,36265,83229,7.8,4.2,7.6,5.8,5.8,0.7,78,90.1,89.5 +2095,39099,"Mahoning County, Ohio",Mahoning County, Ohio,31867,227063,76,14.3,43.4,5.3,3,79.7,22,NA,2.25,2.91,16.5,1.8,70.3,41227,91.6,26.4,98190,4.4,2.6,0.4,0.7,1.1,18.3,27,11.3,76826,33850,55576,7.1,6.3,4.8,1.5,2.3,0.5,72.1,84.9,86.7 +2096,39101,"Marion County, Ohio",Marion County, Ohio,31021,65145,87.6,5.2,40.5,5.6,2,78.7,18.4,23.9,2.44,3.06,14.8,4.7,67.8,42551,89.1,13.7,24524,1.7,1.3,0.6,0.3,0.5,15.3,18.3,10.1,78335,30491,57306,8.4,6.2,5.3,2.4,2,0.3,71.7,84.7,87.3 +2097,39103,"Medina County, Ohio",Medina County, Ohio,44399,183049,92.7,1.3,43.1,5,2,78.3,19.2,NA,2.5,2.99,14.6,1,80,57430,94.5,36.2,72500,1.7,3.5,0.9,0.3,0.8,6.1,7.4,5.8,116764,46652,92660,6.9,3,4.1,3.3,2.6,0.2,85.1,89.7,91.6 +2098,39105,"Meigs County, Ohio",Meigs County, Ohio,27137,22072,96.6,0.6,43.8,4.8,2.6,79.2,20.7,NA,2.46,3.11,6.4,25.5,75.4,37666,86.7,11.8,8875,1.3,0.4,0.5,0,0.6,NA,NA,NA,60628,25684,46701,8.1,6.6,7.1,1.5,2.5,0,61.9,78.7,74.8 +2099,39107,"Mercer County, Ohio",Mercer County, Ohio,40524,42438,95,0.7,39.1,7.2,2.6,73.8,18.6,19.1,2.57,3.18,11.2,4.4,79.6,50056,94.7,22.2,16278,0.9,0.6,0.5,0,0.1,NA,NA,NA,90650,35087,78036,5.8,1.8,3.7,2.2,1.6,0,78.6,84.5,90.5 +2100,39109,"Miami County, Ohio",Miami County, Ohio,39553,109549,91.2,2.1,41.1,5.7,2,77,19.1,NA,2.44,3.01,14.8,1.2,73.4,49477,92.8,24.9,44562,1.1,1.4,1.5,0.2,0.8,8.6,10.1,7.3,94300,39046,74175,7.8,3.5,5,4.6,4.7,0.4,79.6,86.7,90.7 +2101,39111,"Monroe County, Ohio",Monroe County, Ohio,30059,13308,95.4,0.5,46,4.8,3.5,79.5,23.4,34,2.39,2.95,4.2,17.9,82.4,40627,90,10.7,5510,0.7,1,0.2,0.3,0.2,NA,NA,NA,80960,33856,58962,8,6,7.8,4,9.8,0.4,60.6,76.5,77.7 +2102,39113,"Montgomery County, Ohio",Montgomery County, Ohio,37235,535528,69.2,20.5,38.8,5.9,2.2,77.8,18.3,NA,2.25,2.95,23.5,1.1,62.3,46872,92.1,30.5,230149,3.1,1.9,1.9,1.2,1.4,14.9,22,9.6,86066,37320,64403,8.5,5.3,6.5,4.6,4.6,0.6,76.9,87.7,89.3 +2103,39115,"Morgan County, Ohio",Morgan County, Ohio,30237,13758,91.2,3,44.4,5.1,2.2,78.8,22,40.5,2.41,2.98,5.6,18.2,77.2,40967,88.5,14.2,5633,0.6,1.9,0.4,0.1,0.1,NA,NA,NA,69579,29431,55971,8.4,3.2,6.6,5.8,3.8,0,61.3,76.4,77.4 +2104,39117,"Morrow County, Ohio",Morrow County, Ohio,38791,35214,95,0.5,43.3,5.6,1.3,77.9,18.7,NA,2.6,3.01,6.4,9.3,81.8,46747,91.4,18.2,13449,0.9,3,0.3,0.1,0.3,NA,NA,NA,89296,34777,71047,7.7,3.2,8.9,3.3,8.2,0.3,74.7,86.4,88.8 +2105,39119,"Muskingum County, Ohio",Muskingum County, Ohio,32347,86382,91,3.1,40.5,5.9,2,77.3,18.3,NA,2.47,3.02,15.3,8.1,68.7,42177,90.3,20.3,34243,0.9,1.4,0.5,0.1,0.1,15.6,21,10,77324,31418,59203,7.2,4.7,5.9,2.5,3.3,0.2,69.1,84.5,87.7 +2106,39121,"Noble County, Ohio",Noble County, Ohio,24589,14252,93.6,4,51.3,4.9,3.3,81.7,27.3,NA,2.62,3.38,6.2,16.7,81.9,26775,85.3,13.7,4587,0.1,3.6,0,0,1.2,NA,NA,NA,80344,30514,55360,8.8,3.5,7.2,16.1,10,4.1,62.9,67.8,75.4 +2107,39123,"Ottawa County, Ohio",Ottawa County, Ohio,39981,40161,92.7,1.1,50.3,3.9,3.1,82.3,27,24.4,2.19,2.71,8.9,5.8,83.6,52165,94.1,28.5,18091,1.8,1.1,0.1,0.3,0.3,NA,NA,NA,104516,47629,75728,8.1,2.8,4.3,3.2,2.6,0.2,75.1,84.2,85.6 +2108,39125,"Paulding County, Ohio",Paulding County, Ohio,36847,18800,92.2,0.8,41.7,5.6,2.2,76.2,19,24.2,2.48,3.05,6.4,6.4,80.2,44759,90.4,15.7,7543,3.2,0.6,0.3,0.1,0.5,NA,NA,NA,85900,35657,68167,7.9,3.7,5.6,4.4,3.8,0.1,70.1,83,81.1 +2109,39127,"Perry County, Ohio",Perry County, Ohio,34212,35474,96.1,0.2,41.1,5.9,1.4,76.4,17.9,32.3,2.63,3.06,8.5,15.2,76.5,45672,88.3,15,13349,2.1,1.5,0.1,0.1,0.5,NA,NA,NA,78715,30185,64737,8.9,4.1,8.2,6.5,4,0.9,64.5,83.1,84.2 +2110,39129,"Pickaway County, Ohio",Pickaway County, Ohio,38512,59407,92,3,39.5,5.3,1.4,78.6,16.1,28.1,2.58,3.11,10.4,7.2,72.1,50626,88.4,21.3,21412,1.1,0.3,0.2,0,0.1,12.1,17.8,7.3,91371,34645,72927,7.4,3.9,5.6,9.7,4.4,0.5,75,88.3,87.9 +2111,39131,"Pike County, Ohio",Pike County, Ohio,27568,27080,95.2,1.1,41.1,6.4,2.7,76.4,18.4,NA,2.47,3.07,8.7,22.8,65.8,44486,85.6,14.6,10816,0.6,0.8,0.9,0.1,0.3,19.9,21.6,19.8,77942,31082,49552,8.5,5.5,5.6,4.4,4,0.1,62,81.8,78.8 +2112,39133,"Portage County, Ohio",Portage County, Ohio,36271,161421,87.5,4.7,39.3,4.3,1.9,81.6,17.8,NA,2.39,2.97,20.4,6.2,70.1,49717,92.9,31.5,64560,1.5,2.5,1.1,0.9,0.9,11.4,13.4,7,94386,39041,72822,6.2,4.7,5.2,3.1,3,0.3,80.6,88.8,88.4 +2113,39135,"Preble County, Ohio",Preble County, Ohio,37329,40802,95.7,0.8,43.2,5.2,2,77.6,19.8,NA,2.42,2.88,7.7,2.5,79.4,47213,92.6,17.9,16742,0.9,0.9,0.2,0,0,NA,NA,NA,85527,35232,71237,8.3,3,5.2,6.7,4.9,0.2,74.6,85.6,85.7 +2114,39137,"Putnam County, Ohio",Putnam County, Ohio,43449,34352,92,0.9,40,6.3,2.3,74.6,18.3,22.1,2.58,3.11,5.4,4,85.8,52530,94.7,26.3,13173,3.5,1.4,0.2,0.1,0.9,NA,NA,NA,99572,38660,82785,4.7,1.8,3.6,4.2,3.2,0.3,77.3,85.7,87 +2115,39139,"Richland County, Ohio",Richland County, Ohio,31130,125138,85,7.4,40.9,5.7,2.4,78.1,19.8,NA,2.36,3.03,16.7,3.6,68.5,40368,89.5,17.9,50068,1.8,2.3,0.5,0.2,0.7,13.9,20.6,9.1,74042,30380,57649,8.3,4.8,6.9,7.7,6,0.3,72.7,84.5,86.8 +2116,39141,"Ross County, Ohio",Ross County, Ohio,34006,76748,89.1,5.4,41,5.6,1.7,78.8,17.5,27.5,2.43,3.07,11.8,13.9,70.6,45510,88.9,17.1,29429,1.3,0.7,0.4,0.3,0.3,16.8,25.4,12.2,78138,31013,59819,8,3.9,6.3,4.3,5.6,0.3,71.3,84.5,87.3 +2117,39143,"Sandusky County, Ohio",Sandusky County, Ohio,35739,58770,85.7,3.2,42.5,5.3,2.2,78.2,19.9,20.1,2.36,2.89,14.4,5,74.3,46327,93.3,19.1,24452,4.1,0.8,0.1,0.2,0.3,13.2,17.9,10.4,82018,34573,62500,7.7,3.8,5.7,4.8,5.3,0.2,73.7,84.9,86.5 +2118,39145,"Scioto County, Ohio",Scioto County, Ohio,27948,73118,93.1,2.4,40.6,5.4,2.2,78.3,18.5,NA,2.44,3.05,11.1,13.4,69,40412,88.7,18,28637,1,0.4,0.7,0,0.1,22.4,28.8,14.5,68069,27362,49571,7,6.4,5.2,1.2,1.6,0.1,66.6,81.5,84.6 +2119,39147,"Seneca County, Ohio",Seneca County, Ohio,34647,54861,90.5,2.7,40.5,5.4,2,78.4,18.7,NA,2.36,2.9,13.9,3.9,73.4,43549,93.2,20.7,22099,3.1,1.1,0.5,0.2,0.5,11.9,16.2,7.4,79613,32716,65020,6.9,2.9,5.3,1.9,3.1,0.3,74.1,84.9,86.2 +2120,39149,"Shelby County, Ohio",Shelby County, Ohio,39600,48007,92.7,2.1,40.1,6.4,1.8,75.3,17.6,NA,2.53,3.05,14.2,3.4,73.7,47794,91.4,20.6,18786,0.7,0.9,0.6,0.4,0.5,11.1,16.3,9.2,91960,36711,72822,7.5,3.9,4.7,0.6,3.1,0.1,80.4,86.2,91 +2121,39151,"Stark County, Ohio",Stark County, Ohio,35293,373764,85.3,7.5,41.9,5.5,2.4,78.4,20.1,21.8,2.35,2.93,18.2,2.1,68.6,44551,92.8,25,155366,1.3,1.8,0.6,0.2,0.4,12.7,18.4,8,84919,35802,65740,7,3.6,5.7,2.7,3.2,0.3,74.6,87,86 +2122,39153,"Summit County, Ohio",Summit County, Ohio,38548,538087,75,14,41.2,5.4,2.4,79.2,19,NA,2.31,2.93,20.6,0.8,67.3,48698,92.9,35.3,229503,1.7,3.3,1.7,0.7,1.4,12.6,17.9,8.6,98907,42749,71016,6.3,5,5.6,2.7,2.7,0.3,78.5,88.4,90.4 +2123,39155,"Trumbull County, Ohio",Trumbull County, Ohio,32361,201367,86,8,43.8,5.3,2.5,79.4,22,NA,2.29,2.94,14.4,4.2,71.5,42119,90,20.3,86135,0.8,3.1,0.5,0.2,0.7,16.8,27.5,9.8,73150,31807,55088,9,4.4,6.9,7.9,6.7,0.3,69.8,83,83.2 +2124,39157,"Tuscarawas County, Ohio",Tuscarawas County, Ohio,34894,92585,94.4,0.7,41.2,6.4,2.1,76.8,19.9,NA,2.4,2.94,14.4,8.4,68.7,44371,88.9,19.6,38127,2.4,6.1,0.1,0.5,1.5,13,16.6,11.2,78457,32489,64494,6.6,5.1,8.7,12.2,9.5,0.2,68.3,83.2,83.5 +2125,39159,"Union County, Ohio",Union County, Ohio,50816,65293,86.6,2.4,38.1,6.2,1.3,75.7,12.9,NA,2.67,3.07,11.8,3.4,79.4,62307,95.2,39.1,23495,1.7,2.6,3.9,0.9,0.4,NA,NA,NA,134832,49946,109506,5.8,2.4,4.3,2.6,3.1,0.2,85.8,93.2,94.1 +2126,39161,"Van Wert County, Ohio",Van Wert County, Ohio,38102,28824,93.9,0.7,41.4,6.1,2.3,76.8,19.5,NA,2.45,2.93,7.8,3.8,80.6,46776,93.6,17,11651,1.7,1.2,0.3,0,0.3,NA,NA,NA,79526,33106,65344,6.6,3.4,3.5,2.5,2.3,0.2,72.3,85.5,86.9 +2127,39163,"Vinton County, Ohio",Vinton County, Ohio,29888,12686,96.2,0.6,43.5,5.6,0.9,78.3,18.8,NA,2.41,2.88,3.4,27.5,75.2,48081,83.1,15.1,5222,0,2.5,0,0,0,NA,NA,NA,71683,29354,53813,5.7,2.7,7.1,2.3,2.2,0,60,77.2,80 +2128,39165,"Warren County, Ohio",Warren County, Ohio,49775,246364,83.7,3.4,39.8,5.5,1.5,76,15.3,25.3,2.66,3.09,14.3,0.7,79.6,65356,95,45.7,90288,2.4,4.3,4.8,0.6,1.6,5.4,5.9,6.5,142625,52477,107843,6.9,2.9,3.7,2.1,2.8,0.6,87.3,93.1,94.5 +2129,39167,"Washington County, Ohio",Washington County, Ohio,32161,59318,94.4,1.2,44.1,4.8,2.7,80.1,21.7,NA,2.33,2.9,12,8.7,74.8,42483,92.9,20.7,24887,1.5,0.7,0.7,0.1,0.2,12.9,18.8,10.1,82107,35444,61355,9.7,4.5,6.3,5,4.4,0,74,82.8,85.3 +2130,39169,"Wayne County, Ohio",Wayne County, Ohio,35673,116618,93.2,1.2,38.9,6.2,2.1,75.9,18.6,NA,2.54,3.13,13,6.6,76.1,46106,86.3,24.7,44192,1.5,8.9,0.8,0.2,2.1,8.7,10.1,10,88657,33874,71769,6.3,2.9,14,22.8,20.6,1.5,73.4,81.2,83.6 +2131,39171,"Williams County, Ohio",Williams County, Ohio,33036,36862,92.4,1.1,41.8,5.7,1.8,77.7,19.6,19.1,2.32,2.88,11.3,6.2,75.6,42116,91.4,14.2,15455,2.9,0.9,0.8,0.1,0.4,NA,NA,NA,76171,32421,61834,6.5,3.2,5.3,4.1,5.1,0.6,72.1,82.1,84.8 +2132,39173,"Wood County, Ohio",Wood County, Ohio,38514,131795,87.9,2,35.7,5.1,1.8,79.6,16.2,NA,2.33,2.98,25.2,6,64.6,52509,95.2,37.4,54156,3.2,2.3,1.2,0.4,0.8,12,9.3,7.5,100535,41929,73124,6,3.9,4.1,2.5,2.9,0.3,83.3,91.3,92 +2133,39175,"Wyandot County, Ohio",Wyandot County, Ohio,38776,21699,95,0.2,41.6,5.4,2.8,77.4,20.3,NA,2.36,2.89,11.9,4.8,73.8,45947,94.8,20.7,9064,1,0.4,0.1,0,0.4,NA,NA,NA,83211,35197,71878,7.9,2.4,3.1,2.1,1.9,0.1,71.8,85.3,85.7 +2134,40001,"Adair County, Oklahoma",Adair County, Oklahoma,25268,19595,40.4,0.3,38.1,6.9,1.6,73.6,15.8,NA,2.77,3.48,9.8,18.8,68,34203,82.8,11.8,6926,3.2,0.5,0.9,5.2,0.5,NA,NA,NA,58562,22115,48028,6.9,6.9,20.8,10.6,13.3,1.6,54.4,76,61.7 +2135,40003,"Alfalfa County, Oklahoma",Alfalfa County, Oklahoma,28497,5685,82.7,3.4,44.4,4.3,2.1,80.9,20,NA,2.39,3,4.2,7.3,78.7,39613,85.8,20.7,1890,2.6,1.4,0,0.2,0,NA,NA,NA,81930,29173,67870,9.3,3.4,10.9,8.1,8,0,70.6,86.5,86 +2136,40005,"Atoka County, Oklahoma",Atoka County, Oklahoma,27604,14255,69.2,3.9,40.2,4.9,1.7,78.4,18.8,27.4,2.65,3.13,5.2,18.7,75.8,37815,83.6,15.3,4867,1.8,0.5,0.7,0.5,0.6,NA,NA,NA,70526,25392,52034,8.1,4.2,19.7,20.3,18.4,0.3,56.7,83.5,76.8 +2137,40007,"Beaver County, Oklahoma",Beaver County, Oklahoma,29966,5041,70.6,0.3,41.1,5.8,2.2,74.7,19.4,NA,2.92,3.67,1.9,9.8,79.7,41444,85.1,23,1695,20.5,1.1,0,0,7.5,NA,NA,NA,80880,30136,64266,6.4,1.9,15.4,2.6,9.3,0.7,64,88.5,87.8 +2138,40009,"Beckham County, Oklahoma",Beckham County, Oklahoma,25420,22202,82.7,5.4,37.1,6,1.5,76.3,14.6,NA,2.3,2.89,12.9,13.1,66.4,42392,84.3,13.3,8192,9.6,0.1,0.5,0,0.1,NA,NA,NA,74334,26675,52323,6.4,5.5,11.5,2.4,4.3,1,58.5,90,87 +2139,40011,"Blaine County, Oklahoma",Blaine County, Oklahoma,30057,8603,75.4,4.3,41.6,5.7,2.4,75.7,19.6,22.5,2.25,2.81,4.5,12.8,71.4,40278,84.7,18,3393,6.6,0.9,0,2,1.5,NA,NA,NA,80381,30319,59304,6.8,7.8,11.2,8.2,4.4,0.6,64,87.8,84.2 +2140,40013,"Bryan County, Oklahoma",Bryan County, Oklahoma,30964,47237,70.4,2.4,36.8,6.4,1.9,76.4,17.4,NA,2.54,3.08,13.6,15.9,63.6,41590,87.6,24.4,18234,4.4,0.7,0.8,1,0.8,17.4,20.9,13.4,72300,28998,54280,6.9,4.7,19.7,12.8,16.1,0.5,67.2,86.6,80.3 +2141,40015,"Caddo County, Oklahoma",Caddo County, Oklahoma,28446,26626,58.4,3.6,37.8,6,1.7,76.8,15.6,24,2.77,3.48,5.1,11.8,70.3,37872,86.7,15.5,9108,7.5,0.5,0.2,1.5,1.7,NA,NA,NA,65871,25741,52817,6.9,5,18,6.2,7.5,1.6,59.3,87.6,82.9 +2142,40017,"Canadian County, Oklahoma",Canadian County, Oklahoma,43865,162621,74.5,3.6,36.1,6.5,1.1,74.1,13.5,NA,2.79,3.26,9.4,4.9,74.8,51702,92.2,31.8,57464,7.1,1.5,2.6,0.5,1.5,8.6,11.5,6.9,102440,37984,85427,8.8,3.5,9.1,6.2,6.3,0.3,83.8,93.1,92.8 +2143,40019,"Carter County, Oklahoma",Carter County, Oklahoma,31812,48255,69.4,5.9,38.3,6.6,1.8,74.9,16.9,21.2,2.51,3.15,7.9,12.3,67.7,43726,87.8,20,18887,5.8,1.6,0.9,0.7,1,15.1,17.6,10.6,79874,32628,58856,7.9,3.9,14,8.5,8.6,0.3,64.6,90.7,81.9 +2144,40021,"Cherokee County, Oklahoma",Cherokee County, Oklahoma,29545,47621,46.9,1.4,37.3,5.4,2.1,78.8,17.5,24.9,2.49,3.07,15,17.8,65.8,41446,89.9,29.4,18403,4.2,0.7,1,3.4,0.9,19.3,23.8,14.8,75092,30080,53668,7.3,5.3,19.1,16,16.5,1.4,66.4,86.1,82 +2145,40023,"Choctaw County, Oklahoma",Choctaw County, Oklahoma,28233,14299,59.5,9.5,42.1,7,1.9,75.3,20.7,NA,2.41,3.16,11.2,11.4,65.7,36661,86.3,15.2,5858,4.2,0.4,0.7,2,0.4,NA,NA,NA,61345,26272,45456,9.7,4.4,16.7,10.2,10.3,0.5,54.8,83.5,73.3 +2146,40025,"Cimarron County, Oklahoma",Cimarron County, Oklahoma,36650,2247,80.5,0.1,38.3,7.2,1.9,75.4,25.1,NA,3.18,3.75,3.4,7,77.2,42515,85.3,31.7,702,10.3,6.1,0,0.3,1.6,NA,NA,NA,94401,35550,57204,6,0.4,17.2,1.7,12.3,2.7,58.1,89.6,76.9 +2147,40027,"Cleveland County, Oklahoma",Cleveland County, Oklahoma,38936,297545,71.3,4.9,35.1,4.9,1.4,79.2,14.5,NA,2.47,3.02,19.8,5,64.1,48759,92.3,35.6,115293,6.8,2,3.4,0.8,1.7,12.8,13.3,7.4,96578,38544,74446,9.1,4.2,9.9,6.7,6.6,0.5,83.1,92.7,92.1 +2148,40029,"Coal County, Oklahoma",Coal County, Oklahoma,27857,5275,66.6,0.2,40.3,7,2.3,76,21,20.7,2.52,3.22,6,10,70.8,37520,84.4,16.8,2070,1.8,2.6,0.2,0.6,0.4,NA,NA,NA,65909,27073,48162,7.1,6.4,21.5,22.4,17,0.6,52.5,82.4,79.9 +2149,40031,"Comanche County, Oklahoma",Comanche County, Oklahoma,32154,121699,58.7,15.3,33.7,6.6,1.6,76.1,13.4,18.2,2.51,3.13,18.2,4.3,55,40666,90.6,24.2,44718,7.5,3,3,1.2,1.6,17.7,23,12.1,76794,30670,59000,16.6,6.4,12,4.5,6.6,0.7,74.8,91.1,88.9 +2150,40033,"Cotton County, Oklahoma",Cotton County, Oklahoma,35903,5475,78.8,1.6,43.2,4.7,1.8,77.3,19,27.5,2.62,3.28,4.9,13.1,79.6,43117,85.3,20.9,2051,4,0.5,0.7,1.7,0.3,NA,NA,NA,81345,32744,60313,10.4,2.1,7.7,5.7,3.9,1.3,63.5,81.7,82.3 +2151,40035,"Craig County, Oklahoma",Craig County, Oklahoma,27365,14215,62.5,3.5,40.8,5.1,2,77.5,19,NA,2.48,3.07,7.5,14.7,73.2,34081,86.2,14.9,5248,3.5,0.2,1.7,0.4,0.9,NA,NA,NA,67232,26443,50182,5.8,4.7,15.6,7.1,13.9,0.6,61.7,83,72.3 +2152,40037,"Creek County, Oklahoma",Creek County, Oklahoma,33605,72353,76.1,2.1,40.6,5.8,2.1,76.6,18.3,NA,2.57,3.1,7.5,18.6,74.5,46797,90.5,18.4,27830,2.8,0.6,0.5,0.3,0.6,13.9,18.2,10.5,80376,31986,61849,7.9,3.6,11.3,4.4,6.2,0.2,71.1,89.3,87.3 +2153,40039,"Custer County, Oklahoma",Custer County, Oklahoma,30991,28332,71,2.9,32.8,6.3,2.1,75,14.3,NA,2.49,3.16,17.4,8.5,64.2,42229,88.4,33.3,10784,12.4,0.7,0.7,0.2,2.3,NA,NA,NA,81803,31487,57562,5.8,3.4,11.5,3.2,9.6,0.2,74.2,92.3,89.9 +2154,40041,"Delaware County, Oklahoma",Delaware County, Oklahoma,29025,41017,63.5,0.5,47,4.8,1.5,80.1,25.3,NA,2.39,2.9,5.7,26.2,75.9,34963,87.4,19.2,16930,2.6,0.3,1.3,1.3,0.6,18.6,27.6,11.2,74796,35376,55114,9,5.2,15,10.4,9.5,0.6,68.4,85.3,82.1 +2155,40043,"Dewey County, Oklahoma",Dewey County, Oklahoma,33349,4433,83.4,0,38,6.3,1.8,72.5,19,19.1,2.73,3.47,1.4,19.7,74.7,42587,92.6,19.8,1595,2.1,1.1,0.1,1.4,0.6,NA,NA,NA,76946,30044,60550,5.4,4.6,13.5,9.5,9.2,0,65.1,89,83.7 +2156,40045,"Ellis County, Oklahoma",Ellis County, Oklahoma,32344,3717,87.6,0.2,43.4,5.2,3.4,77.4,23.4,23.9,2.53,3.29,1.4,9.7,82.3,41181,88.2,20,1447,4.9,1.5,0.1,0,0.5,NA,NA,NA,73156,31354,56992,7.5,8.1,13.4,0.4,12,0,66.3,84.9,81 +2157,40047,"Garfield County, Oklahoma",Garfield County, Oklahoma,35077,62322,74.7,2,35.7,6.8,2,74,16.6,NA,2.53,3.16,11.9,5.5,64.6,41139,87.5,22.3,23910,8.7,1.1,3.5,0.2,1.9,12.7,16.2,8.5,85427,33818,67302,8.5,4.3,13.6,5.5,6.1,1.3,72.8,89.2,86 +2158,40049,"Garvin County, Oklahoma",Garvin County, Oklahoma,32359,25779,78.3,1.6,38.8,6,1.7,75,18,NA,2.55,3.19,6.7,9.8,68.1,43125,87.6,17.7,10000,7.2,0.6,0.3,0.2,0.8,NA,NA,NA,75648,30253,57127,6.9,2.6,15.5,14.3,12,0.2,64.9,90,86.2 +2159,40051,"Grady County, Oklahoma",Grady County, Oklahoma,37068,55868,81.5,2.2,39.9,5.4,1.7,76.5,16.7,NA,2.67,3.13,6.9,11.9,75.3,48204,90.5,21.9,20540,3.7,0.5,0.3,0.3,0.7,12.3,16.8,8.2,93439,36380,75730,8.2,4.8,12.4,3.7,6.2,0.8,72.1,88.9,85.7 +2160,40053,"Grant County, Oklahoma",Grant County, Oklahoma,34673,4137,88.5,2.1,42.9,5.9,3.8,76.6,22.6,25.7,2.61,3.35,1.9,8,75.1,43314,91.2,22.7,1555,1.6,0.8,0.4,0.3,0.3,NA,NA,NA,78906,33181,61824,10.5,3.7,11.4,0,4.4,0,62.9,87.5,74.4 +2161,40055,"Greer County, Oklahoma",Greer County, Oklahoma,28141,5498,80.5,6.7,40.6,5.2,3.6,79.7,17.4,NA,2.24,2.9,6.2,4.9,77.8,38032,81.7,15.3,2030,9.9,0.8,0.7,0,0.5,NA,NA,NA,67215,25141,60183,8.9,4.1,8,1.4,1.6,0,57.5,85.7,79.3 +2162,40057,"Harmon County, Oklahoma",Harmon County, Oklahoma,31232,2452,68.1,11.1,40.3,4.9,2.8,76.6,20.2,NA,2.5,3.18,5.1,4.2,72,35934,83.5,16.3,950,18.5,0.4,0,0,1.3,NA,NA,NA,77060,31601,54286,2.9,10.4,22.2,16.8,14.6,0.2,51.8,80.7,82.2 +2163,40059,"Harper County, Oklahoma",Harper County, Oklahoma,33858,3231,76.5,0.1,41.3,6.4,4.1,75.9,20.4,NA,2.53,3.12,0,13.1,80.3,39639,87.6,26.6,1255,20.6,0.9,0,0,7.7,NA,NA,NA,69291,27360,59191,7.8,2.5,14.1,8.8,14,0,68.8,84.3,79.6 +2164,40061,"Haskell County, Oklahoma",Haskell County, Oklahoma,28516,11667,69.3,0.3,41.4,5.9,2,76.5,20.3,NA,2.54,3.02,3.9,16.1,77.2,35930,85.7,15.2,4568,3.2,0.6,0.5,0.3,0.6,NA,NA,NA,67542,27045,49930,8.2,5.9,16.9,7.2,9.6,0.6,61.3,82.5,80 +2165,40063,"Hughes County, Oklahoma",Hughes County, Oklahoma,27823,13411,64.5,4.7,39.2,5.8,2.6,78.4,18.7,NA,2.95,3.8,6,13.1,72.8,37105,84.1,15.1,4003,2.2,0.3,0.4,6.2,1,NA,NA,NA,58738,20300,47923,7.6,6,17.7,4.9,7.4,1.8,59.9,78.1,75.4 +2166,40065,"Jackson County, Oklahoma",Jackson County, Oklahoma,34716,24730,72,6.6,35,7,2.1,74.9,15.4,NA,2.45,3.1,12.7,3.5,61.3,43456,86.7,24.2,9778,18.4,2.1,1.1,0.3,3.5,NA,NA,NA,78383,32371,61497,13.6,4.8,14,4.5,8.3,0.4,71.4,87.1,87.8 +2167,40067,"Jefferson County, Oklahoma",Jefferson County, Oklahoma,27223,5377,79.7,1.4,41.2,5.5,2.2,74.9,20.8,26.7,2.43,3.11,7.7,8.5,72.4,35875,84.8,15.7,2160,8,0.5,0.9,0,0.5,NA,NA,NA,70599,30984,48750,7.2,4.6,14.3,4.8,5.8,0.4,57,86.5,72 +2168,40069,"Johnston County, Oklahoma",Johnston County, Oklahoma,29423,10334,68.8,2.4,39.5,5.8,1.5,76.4,18.5,NA,2.54,3.07,5.5,17.5,70.2,41063,87.5,21.3,3915,5.2,0.2,0,0.7,0.9,NA,NA,NA,64413,25352,50911,7.6,5,13.9,11.4,9,0.1,58.6,82.5,79 +2169,40071,"Kay County, Oklahoma",Kay County, Oklahoma,32232,43731,74.4,2.2,38.3,6.3,2.3,75.1,19.2,18.5,2.54,3.21,9.6,5.8,67.7,39105,90.5,18.5,16716,5.8,0.9,0.2,0.6,1.5,15.5,21.3,11.2,77337,31190,56673,9.5,5.6,12.7,3.4,8.9,0.8,68.1,85.6,81.6 +2170,40073,"Kingfisher County, Oklahoma",Kingfisher County, Oklahoma,37376,15288,81.3,1.1,38.5,6.1,2.2,73.2,17,21.4,2.67,3.22,7,16.8,72,47604,90.2,22.8,5639,12.4,3.7,0.3,0.1,3.8,NA,NA,NA,96314,37251,70617,3.9,2,13.7,10.4,8.1,0.6,67.2,90.4,88.9 +2171,40075,"Kiowa County, Oklahoma",Kiowa County, Oklahoma,27022,8458,81.1,3.4,42,6.6,1.8,75.5,20.9,NA,2.47,2.95,8,5.4,71.3,35242,86,18.4,3345,6.9,1.2,0.3,0.6,2.5,NA,NA,NA,59504,24928,42063,7.4,4.4,11,9.2,9.1,0.2,61.8,83.3,83.9 +2172,40077,"Latimer County, Oklahoma",Latimer County, Oklahoma,27567,9495,62.9,1.3,41.5,6,2.2,78,21.3,25.6,2.37,2.9,5.6,21.4,70.5,35958,84.7,10.4,3852,1.3,0.2,0.5,0.4,0.2,NA,NA,NA,60087,24934,41048,10.5,6.5,18,21.6,12.3,0.6,58.8,87.4,76.8 +2173,40079,"Le Flore County, Oklahoma",Le Flore County, Oklahoma,27909,48728,71,1.8,38.8,6.3,1.4,75.6,17.8,NA,2.65,3.23,7.3,15.7,72,38392,85.3,14.8,17740,4.4,0.3,0.8,0.5,1.2,20,27.1,13.6,64850,24847,50027,8.3,5.2,18.2,10.1,12,0.7,62.2,85.3,78.2 +2174,40081,"Lincoln County, Oklahoma",Lincoln County, Oklahoma,31642,33917,82.3,1.7,41.3,5.4,2,76.5,19.1,30.8,2.59,3.13,4,21.8,80.3,43575,89,15.5,12972,1.7,0.4,0.3,0.2,0.3,16.5,24.2,11.8,77396,31303,59425,9.5,3.6,12.8,4,9.8,0.7,67.3,88.5,79.3 +2175,40083,"Logan County, Oklahoma",Logan County, Oklahoma,37500,50905,78,6.5,40.2,5.3,1.9,77.7,16.9,NA,2.78,3.2,3.4,16.1,85.8,49216,91.7,30.5,17536,5.3,0.3,0.6,0.5,0.6,13.7,17.9,8,112589,39863,82735,8.2,3.2,12.4,4.5,8.4,0.2,78.7,91.4,90.9 +2176,40085,"Love County, Oklahoma",Love County, Oklahoma,33814,10196,72.3,2.1,38.6,6,1.5,75.7,18.2,23,2.68,3.28,9.5,20.8,72.9,42037,85.3,16,3767,10.3,0.5,1.5,0.3,1.7,NA,NA,NA,82902,31136,62940,7.6,4.4,13.7,8.9,9.5,1,65.9,88.5,83.5 +2177,40087,"McClain County, Oklahoma",McClain County, Oklahoma,41279,43779,79.5,1.1,38.9,5.5,0.9,74.7,15.4,NA,2.71,3.18,6.1,9.8,78.5,52928,88.6,28,16025,5.9,0.8,0.3,0.1,1,NA,NA,NA,103428,39352,84778,8.2,4.3,9.8,6.7,6.6,0.1,76.4,90.7,91.2 +2178,40089,"McCurtain County, Oklahoma",McCurtain County, Oklahoma,29463,30825,60.8,7.7,37.9,6.9,1.5,73.9,17.8,NA,2.7,3.34,6.6,16.7,71.8,37262,85.7,15.5,11304,4.3,0.6,1.6,2.2,1.5,21.1,29.8,15.2,66504,25818,50175,7.8,4.2,18,6.2,10.8,0.7,61.4,80.3,77.2 +2179,40091,"McIntosh County, Oklahoma",McIntosh County, Oklahoma,26656,19237,68.1,2.8,47.3,5.1,2.8,80.1,25.2,NA,2.48,3.1,4.7,24,77.2,36426,86.6,14.4,7618,1.1,0.8,0.2,1.3,0.2,NA,NA,NA,63753,27068,46203,10.6,4,21.6,22.8,16.3,0.9,61.6,83.7,74.1 +2180,40093,"Major County, Oklahoma",Major County, Oklahoma,36557,7656,84.5,0,42,5.9,2.8,74.5,21.1,24.8,2.36,2.77,6.5,13.3,79.8,45438,90.1,18,3201,8.9,0,0,0,1,NA,NA,NA,84659,34641,69229,7.1,2.1,10.8,4.4,11.9,0.5,70,86.7,89.4 +2181,40095,"Marshall County, Oklahoma",Marshall County, Oklahoma,29313,15628,67.2,0.9,42,6.4,2.1,76.9,22.1,NA,2.69,3.23,4.1,28.5,79.6,41352,84.7,16.9,5747,11.4,2.3,0.2,0.6,2.6,NA,NA,NA,69996,27759,56495,10.3,5.8,17.1,10.7,8.2,0.8,64.3,88.3,79.6 +2182,40097,"Mayes County, Oklahoma",Mayes County, Oklahoma,30298,39406,63.8,0.4,40.5,5.8,1.8,76.6,18.7,25.3,2.55,3.05,7.4,16.9,74.3,41834,89.3,16.5,15267,2.2,1.4,0.6,2.6,0.6,17.6,24.4,15.3,75226,30528,57279,9.1,6.6,15.5,14.5,12.4,0.1,67,87.1,86.1 +2183,40099,"Murray County, Oklahoma",Murray County, Oklahoma,34817,13807,71.6,1.3,41.5,5.7,3,77.2,20.2,20.5,2.68,3.26,6.9,11.7,71.7,42527,85.8,17.8,4974,3.7,0.6,0,2.3,0.4,NA,NA,NA,85918,33997,61904,10.4,2.1,13.6,10,7.8,0.3,64.4,87.4,75 +2184,40101,"Muskogee County, Oklahoma",Muskogee County, Oklahoma,29816,66471,55.9,9.8,38.2,6.3,1.7,75.6,17,NA,2.43,3.08,13.4,9.8,66.4,40857,87,19,25792,3.4,0.7,0.8,0.5,0.9,20.3,29.7,11.1,69594,27090,51999,9.2,5.8,14.4,7.5,7.6,0.7,64.4,87.6,76.2 +2185,40103,"Noble County, Oklahoma",Noble County, Oklahoma,35777,10909,80.5,1.2,41.7,5.4,2.5,76.9,21.6,NA,2.52,3.04,5.2,11.3,79.9,46895,91.1,20.3,4203,2.8,0.2,0.1,0.8,0.9,NA,NA,NA,85810,33482,70071,6.9,1.9,7.5,4,5.6,0.4,70.2,85.4,81.4 +2186,40105,"Nowata County, Oklahoma",Nowata County, Oklahoma,28888,9392,65.9,1.6,41.6,6.8,1.9,77,19.9,NA,2.48,2.9,8.3,16.9,73.2,43505,90.4,16.4,3715,1.3,0.6,1,0.2,0.1,NA,NA,NA,75109,30575,52679,3.8,5.4,15.6,7.6,10.7,0.7,63,85.1,69 +2187,40107,"Okfuskee County, Oklahoma",Okfuskee County, Oklahoma,26276,11304,61.8,6.6,40.3,5.4,1.9,77.5,18.3,27.3,2.54,3.08,7.7,16.3,71.1,39449,83.3,13.1,3908,2.8,1.7,0.7,3,1,NA,NA,NA,64839,24325,45441,7.9,2.7,15.2,14,12.8,1.7,61.4,84.4,77 +2188,40109,"Oklahoma County, Oklahoma",Oklahoma County, Oklahoma,37798,800487,59.9,14.5,35.1,6.9,1.4,74.5,14.2,NA,2.43,3.11,22.3,2.8,58.6,46339,88.5,35.1,323102,12.7,1.7,2.4,1.2,3.4,15.7,21.5,9.7,94100,38438,65374,8,4.5,13.9,5.9,7.7,1.4,75.8,91,90.4 +2189,40111,"Okmulgee County, Oklahoma",Okmulgee County, Oklahoma,29235,36922,63,7.1,39.4,5.7,1.8,76.3,18.4,NA,2.5,3.11,9.7,14.6,70,40726,88.2,17.3,14177,2.1,0.3,0.7,1.7,0.3,17.6,23.7,9.8,73141,28980,53123,7.6,6.8,15.2,7.5,8.6,0.7,62.6,85.8,81.6 +2190,40113,"Osage County, Oklahoma",Osage County, Oklahoma,32588,45963,63.3,10.2,43.3,4.8,2.2,78.7,20.9,NA,2.6,3.2,6.8,13.9,78.3,41668,89.6,21.5,17074,2.4,0.5,0.2,1.1,0.1,12.6,16.7,10.2,81883,32096,60482,8,5,11.5,6.1,6.8,1.3,71.6,87.7,86 +2191,40115,"Ottawa County, Oklahoma",Ottawa County, Oklahoma,27985,30360,63.9,1.1,37.3,6.6,1.8,74.7,18.1,NA,2.48,3.09,8.9,11.6,67.3,37041,87.2,15,11755,3.8,0.5,0.9,0.6,0.9,20.7,28.7,13.6,62303,24911,48656,8.5,3.6,16.4,6.4,9.9,0.9,60.5,85.5,80.4 +2192,40117,"Pawnee County, Oklahoma",Pawnee County, Oklahoma,31647,15689,76.4,1,41.7,5.8,1.8,76.6,19.7,28.7,2.58,3.07,3.7,23.5,78.2,45381,87.9,16.3,6002,1.5,0.5,0.6,0.9,0.2,NA,NA,NA,74111,28961,57551,8.3,2.6,13.8,9.9,12.7,0.8,65.6,88.5,77.1 +2193,40119,"Payne County, Oklahoma",Payne County, Oklahoma,27397,82290,76.1,3.7,27.7,4.8,1.4,81.4,13.1,18,2.25,2.88,24.8,8.7,50.9,41927,93.2,40.1,32341,3.6,2.4,3,1.2,2.4,23.9,23.1,8.3,71869,28980,48937,5.3,4,11.6,9,11.5,0.7,79.6,92,85.4 +2194,40121,"Pittsburg County, Oklahoma",Pittsburg County, Oklahoma,31188,43629,70.3,2.3,40.3,5.8,2.4,77.1,19.9,21.1,2.35,2.92,9.3,11.8,71.4,41304,87.3,19.7,17649,2.9,0.7,0.4,0.6,0.6,18.2,24.3,12,73938,29823,54787,11,5.6,15,9.8,10.3,0.5,63,87.2,85.7 +2195,40123,"Pontotoc County, Oklahoma",Pontotoc County, Oklahoma,36401,38158,65.1,2.5,37.5,6.5,2.1,75.1,17,18,2.47,3.03,12,7.8,66.4,45622,90.5,29.7,14974,2.5,0.2,0.6,1.1,0.3,NA,NA,NA,79510,32176,62564,7.2,3.4,17.1,14.4,16.6,0.5,67,91.2,84.3 +2196,40125,"Pottawatomie County, Oklahoma",Pottawatomie County, Oklahoma,31994,73011,72.3,3.2,38,5.8,1.4,76.7,16.5,NA,2.61,3.19,10,12.7,69.9,42002,88.5,21,26581,2.9,0.8,0.7,0.9,0.6,15.7,19.5,11.2,76506,29013,60828,8,5.1,13.1,6.9,9,1.3,68.7,89.6,86.3 +2197,40127,"Pushmataha County, Oklahoma",Pushmataha County, Oklahoma,25408,10787,70,1.4,43.8,5.3,1.7,78.4,22.6,26.9,2.44,3,7.7,17.3,75.8,36643,85.4,14.3,4376,2.1,0.7,0.5,2,0.7,NA,NA,NA,59089,25596,44634,8.6,5.2,19.6,11.7,16.6,0.3,53.6,78.2,68.6 +2198,40129,"Roger Mills County, Oklahoma",Roger Mills County, Oklahoma,37643,3378,83.3,0.1,42,5,1.9,75.5,22,22.5,2.36,2.81,1.7,11.7,81.2,44770,93.6,23.9,1423,3.6,0.2,0.8,0.3,0.9,NA,NA,NA,104745,44404,62721,4.9,3.6,12.5,14,9.4,0,66.7,89.7,86.9 +2199,40131,"Rogers County, Oklahoma",Rogers County, Oklahoma,39166,97235,71.5,1,39.3,5.7,1.8,76.8,16.9,NA,2.68,3.14,7.7,9.5,77.8,48711,92.2,25.6,35722,3.5,1.1,1.3,0.7,0.8,9.6,13.2,6.7,99296,38122,77688,9.2,4.6,11.3,7.8,7.7,0.3,78.8,91.3,89.1 +2200,40133,"Seminole County, Oklahoma",Seminole County, Oklahoma,27230,23550,64.7,4.3,39.2,6.1,2.2,75.6,18.2,NA,2.62,3.24,7.3,15.1,69.6,37611,85.3,15.1,8701,2.4,0.6,0.2,2.1,0.3,NA,NA,NA,60002,24102,46191,8.7,6.3,19,14.3,13.4,0.7,57.5,80.6,73.7 +2201,40135,"Sequoyah County, Oklahoma",Sequoyah County, Oklahoma,27834,39676,62.4,2.1,40.6,6.3,1.6,76.1,18.5,NA,2.59,3.17,7.5,16.9,71,38688,84.5,15.2,15184,3.3,0.8,0.9,2.4,0.5,20.3,28.1,12.7,64885,25683,49795,9,4.8,17,9.1,10.5,0.7,59.1,85.6,79.8 +2202,40137,"Stephens County, Oklahoma",Stephens County, Oklahoma,33395,43314,80.6,1.6,40.9,5.7,2.6,77,20.4,NA,2.48,3,6.4,7.9,74.5,41863,88.3,19.5,17228,4.4,0.6,0.7,0.2,1.2,17.5,24.7,11.7,83122,34244,60236,9.5,5.3,13.4,6.2,6.8,0.8,67.9,88,83.6 +2203,40139,"Texas County, Oklahoma",Texas County, Oklahoma,36640,20880,51.2,4.2,33.4,7.7,1.7,70.9,12.1,NA,2.98,3.73,11.4,16.6,69.4,42697,75,24.4,6870,40.9,0.3,1.3,2.7,18.1,NA,NA,NA,69863,25716,59275,3.1,2.2,14.6,1.3,3.8,0.5,60.5,88.4,87.4 +2204,40141,"Tillman County, Oklahoma",Tillman County, Oklahoma,28204,6967,64.9,7.6,39.6,5.8,1.7,75.9,20.1,NA,2.54,3.37,6.5,3.7,74.9,37168,81.5,17.3,2655,17.3,1.1,0,0,5,NA,NA,NA,65201,26396,47445,7.5,5.9,12.9,0,0.5,0.8,55.5,80,75.2 +2205,40143,"Tulsa County, Oklahoma",Tulsa County, Oklahoma,37755,673708,62.6,9.7,36,6.7,1.6,74.8,14.9,NA,2.47,3.14,24.8,2.2,59.7,46673,89.8,33.7,268530,9.9,1.9,2.4,1.1,3.1,14.7,20.2,9.1,96856,39673,67317,6.8,5,13.8,6.4,7.7,1,77.3,91.4,90.4 +2206,40145,"Wagoner County, Oklahoma",Wagoner County, Oklahoma,40001,84339,69.7,3.4,38.8,5.7,1.3,76.2,16.9,NA,2.75,3.21,6,10.9,81,48761,91.7,26.9,30565,5.4,1.4,1.4,0.6,1,9.3,12.6,7.2,96963,36851,78520,9.7,4.5,11.5,7.2,7.2,0.4,78.2,90.9,91 +2207,40147,"Washington County, Oklahoma",Washington County, Oklahoma,33420,52895,72.8,2.7,39.4,6,2.8,76,20,20.4,2.52,3.12,11.4,5,71.8,42324,91.5,30.5,20596,4.3,0.9,1.3,0.4,1.3,14.6,19.7,7.9,86952,34969,61205,8.1,4,11.5,4.6,6.4,0.1,74.7,87.2,85.6 +2208,40149,"Washita County, Oklahoma",Washita County, Oklahoma,32801,10857,86.2,1.4,40.7,5.7,1.6,75.9,19.1,23.7,2.59,3.15,4.3,8.1,75,42911,88.9,20.4,4101,5.7,0.7,0.1,0.1,0.5,NA,NA,NA,77077,32254,61980,7.4,6.2,12.4,3.9,6.2,0.4,68.6,86.4,83.9 +2209,40151,"Woods County, Oklahoma",Woods County, Oklahoma,27644,8619,87.6,2.5,33.9,4.9,2.7,79.2,17.4,NA,2.2,2.9,6.4,8.7,64.4,41794,88.6,32.5,3488,3.8,2.8,0,0,3,NA,NA,NA,71400,29460,50512,4.3,6.2,8.4,0,5.1,0.3,66.9,85.9,80.5 +2210,40153,"Woodward County, Oklahoma",Woodward County, Oklahoma,35468,20260,83.5,1.2,36.5,6.3,1.8,75,16.2,22.9,2.38,2.93,9,12.5,71.9,43431,88,21.6,8116,9.3,0.8,0.7,0,3.1,NA,NA,NA,86804,35404,65060,6.1,4.4,13.1,9.1,9.4,0.4,67.9,88.5,87.3 +2211,41001,"Baker County, Oregon",Baker County, Oregon,33715,16796,90.5,1.2,47.6,4.6,3.7,79.8,27.6,NA,2.24,2.95,11.1,12.2,72.8,45474,92.4,27,7263,1.7,1,0.5,0,0.3,NA,NA,NA,79903,35829,57844,12.2,4.8,5.5,5.1,3.7,0.7,79.9,80.2,88 +2212,41003,"Benton County, Oregon",Benton County, Oregon,32452,96359,80.4,1.4,33.8,3.7,2.2,84.3,17.2,20,2.36,2.88,29.1,5.6,56,49764,96,54.4,38286,6,3.3,5.5,1,2.2,19.2,15.3,7.3,102528,42112,76011,5.4,5.5,5.2,2.9,3.5,0,90.5,92.2,92.6 +2213,41005,"Clackamas County, Oregon",Clackamas County, Oregon,46835,422308,80.3,1.1,42.1,4.9,2.2,78.9,19.3,27,2.57,3.03,20.8,6.1,71.3,57906,94.7,39.7,162762,5.9,4.2,3.7,0.5,1.6,7.5,6.9,8.1,132196,51666,100360,6.8,4.4,5.1,3.3,3.7,0.6,87.2,92.5,92.9 +2214,41007,"Clatsop County, Oregon",Clatsop County, Oregon,37779,41343,85.5,0.9,45.2,4.6,2.1,81.8,24.3,22,2.24,2.95,24.8,6.6,61.7,44874,92.8,26.3,18095,5.5,2.3,1.3,0.3,0.8,12.3,14.6,8.7,92615,40991,68705,10.6,4,6.5,3.4,4.4,0,80,88.5,91 +2215,41009,"Columbia County, Oregon",Columbia County, Oregon,39325,53178,87,0.6,43.2,5,2,79.5,19.6,32.9,2.55,2.93,8.5,13.9,75.7,51815,90.4,19.2,20710,3,1.8,1.2,0.7,0.4,NA,NA,NA,101574,39526,86359,11.4,4.4,5.7,5.7,4.4,0,81.2,89.4,92.3 +2216,41011,"Coos County, Oregon",Coos County, Oregon,31795,64832,85.6,0.6,48.6,4.4,2.9,82.1,27.4,19,2.24,2.76,15.2,14.8,70.7,40957,91,21.7,28417,3.3,1,1.1,0.1,1,15.6,21.6,9.2,78959,35153,60313,11.9,5.2,6.4,3.9,2.3,0.3,75.1,85.1,89.1 +2217,41013,"Crook County, Oregon",Crook County, Oregon,40100,25651,89.3,0.3,47.7,5.1,1.4,80.5,25.1,NA,2.39,2.76,5.9,15.7,75.6,50756,91.1,22.5,10647,4.9,1.7,0.2,0,0.5,NA,NA,NA,100428,41804,81675,11.8,5.2,6.9,0.6,6,0,81.6,89.4,88.5 +2218,41015,"Curry County, Oregon",Curry County, Oregon,33326,23463,86.3,0.3,57.2,3.3,3.8,85.8,35.6,NA,2.06,2.43,8.9,19.2,74.8,46979,90.6,24.2,11280,4.4,2.8,0.6,0.5,0.2,NA,NA,NA,84162,40421,64769,12.1,5.2,5.7,0.2,0.7,0.4,79.8,80.8,89.9 +2219,41017,"Deschutes County, Oregon",Deschutes County, Oregon,43154,203026,88.5,0.4,42.6,4.7,2,80.7,20.8,NA,2.42,2.85,13.6,6,70.7,51994,94.8,43.4,83197,5.5,2.2,1,0.2,1.1,9.3,12,6.4,120187,50150,87640,7.6,4.3,6.4,2.1,3.3,0.3,88.3,93,93 +2220,41019,"Douglas County, Oregon",Douglas County, Oregon,31212,111807,87.6,0.4,46.6,4.7,3.4,80.8,26.2,19.9,2.35,2.82,11.1,19.1,71.8,41245,91.6,18.9,46677,3.1,1.4,0.8,0.2,0.4,15.6,20.7,10.1,79661,33510,58983,13.8,5.7,5.5,3.4,3.3,0.5,75.3,84,86.8 +2221,41021,"Gilliam County, Oregon",Gilliam County, Oregon,31711,2002,84.1,0,50.3,2.8,5.7,81,31.8,NA,2.27,2.98,4.6,15.4,75.6,49704,87.1,20.9,869,4,0,0.9,0,0.6,NA,NA,NA,77640,34999,64219,13.6,1.3,5.8,0,3.4,0,80.7,78.9,87.8 +2222,41023,"Grant County, Oregon",Grant County, Oregon,34454,7238,89.5,0.1,50.8,4.3,4.3,82.9,31.6,18.4,2.1,2.58,4,17.9,80.6,41055,89.6,19.7,3352,2.3,0.9,0.1,0.4,0.7,NA,NA,NA,74955,34924,59800,12.3,6,8.2,28.3,13.9,0.1,75.1,76.1,82.1 +2223,41025,"Harney County, Oregon",Harney County, Oregon,25596,7515,87.8,0.2,45.8,4.6,2.5,81.7,25.7,NA,2.33,3,11.7,21.1,67.2,31929,91.8,15.6,3141,3,1.2,0.9,0.1,0.7,NA,NA,NA,64706,27919,48338,8.7,4.6,7,2.6,5.3,0.5,70.5,79.1,78.9 +2224,41027,"Hood River County, Oregon",Hood River County, Oregon,39524,23958,73.6,0.9,40.2,5.4,1.7,77.8,17.7,19,2.55,3.13,12.8,11.6,68.1,45651,84.2,39.4,9021,20.3,1.8,1.4,0.3,5,NA,NA,NA,117711,46105,82095,5.1,3.2,8.7,2.4,2.8,0.1,81.4,93.2,91.5 +2225,41029,"Jackson County, Oregon",Jackson County, Oregon,36785,222563,82.9,0.7,42.7,5,2.8,79.6,22.9,NA,2.41,2.94,18.5,10.9,65,43969,91.3,30.6,90679,7,1.8,1.1,0.3,1.1,12.4,12.8,9,94170,38797,71443,9.3,5.2,5.9,1.5,2.6,0.2,82.4,89.2,89.5 +2226,41031,"Jefferson County, Oregon",Jefferson County, Oregon,34176,24973,62.7,0.7,41.3,6.1,1.1,77.2,19.8,NA,2.76,3.2,10,15.7,71.4,41858,88.7,20,8659,10.3,1.5,0.8,2.6,1.3,NA,NA,NA,90220,32299,73051,8.1,7.7,9.2,2.9,7.1,2.8,79,90.4,89 +2227,41033,"Josephine County, Oregon",Josephine County, Oregon,29885,88069,87.3,0.6,47.5,4.8,2.8,80.7,26.8,NA,2.39,2.82,9.3,15.7,71.7,39376,90.2,19.7,36336,3.8,2.6,0.9,0.2,0.5,15.8,19.5,11.2,83119,34176,59097,11.7,7.1,7.9,3.2,5.4,0.2,80.3,85.1,90.1 +2228,41035,"Klamath County, Oregon",Klamath County, Oregon,31663,69812,79.6,0.7,41.3,5.7,1.8,78.3,22.1,NA,2.38,2.94,12.7,13.6,68.7,41369,89.6,21.5,28840,8,0.9,0.6,0.4,1,18.3,22.6,12.8,79314,32939,59353,10.3,7.2,7.3,2,3,0.4,76.7,88,85 +2229,41037,"Lake County, Oregon",Lake County, Oregon,28914,8254,86.5,0.5,45.9,4.4,2.6,81.1,24.8,15.1,2.25,2.94,4.5,17.2,61.5,39358,89.2,20.9,3422,4.7,1.3,0.3,0.7,0,NA,NA,NA,74797,32783,61222,9.3,5.2,5,1.2,2.3,0,64.3,80.7,71.1 +2230,41039,"Lane County, Oregon",Lane County, Oregon,34179,382628,82,1.2,40.2,4.4,2.2,82.2,20.5,NA,2.34,2.84,24.3,8.5,59.4,43960,93.1,33.4,159509,5.6,2.5,2.1,0.4,1.3,15.3,14.3,9.7,91348,38563,69311,7.8,6.3,5.9,2.2,2.9,0.5,84.3,91,91.4 +2231,41041,"Lincoln County, Oregon",Lincoln County, Oregon,31388,50632,82.5,0.3,52.5,3.8,2.7,84,31.1,NA,2.19,2.74,16.6,16.6,71.4,38739,91.8,28.8,22829,5.4,2.1,1.2,0.2,0.9,15.7,22,9.8,83483,37265,61314,11.4,8,8.1,3.7,3.4,0.6,82,86.6,90.8 +2232,41043,"Linn County, Oregon",Linn County, Oregon,37676,129794,85.3,0.4,40.2,5.7,2.2,77.8,19.2,NA,2.54,3.02,16.2,14.8,67,46942,91.3,20.8,50534,5.7,1.6,1,0.1,1.5,12.8,16.4,8.6,87810,34422,73396,9.8,5.5,6.6,3.8,3.9,0.8,79.9,89.8,90.4 +2233,41045,"Malheur County, Oregon",Malheur County, Oregon,27167,31701,73.6,1,36.2,6.3,2.4,74.8,17,NA,2.8,3.55,16.7,17.2,63.4,34431,83.8,15.5,10039,19.4,0.7,0.8,0.1,2,17.8,21,14.6,68201,23814,49902,7.7,4.2,9.7,6.9,6.4,0.6,68.4,83.9,86.7 +2234,41047,"Marion County, Oregon",Marion County, Oregon,36446,346532,69.2,1.1,37.2,6,1.9,76.1,16.4,NA,2.68,3.21,25,7.7,62.2,45217,86.1,26,125413,17.8,2.5,2.6,0.6,4.2,13.1,16.6,9.3,95954,35452,74624,7.1,4.8,8.7,3,3.3,1,80.8,90.9,91.3 +2235,41049,"Morrow County, Oregon",Morrow County, Oregon,33578,12249,64.3,1,36.2,7.1,1.3,72.3,16.2,22.1,2.82,3.24,10.4,32.8,70.9,41740,76,9.8,4322,29.4,0.3,0.1,0.3,7.6,NA,NA,NA,88254,30787,70217,9.9,3.4,9.4,1.6,1.8,2.7,68.1,88.3,87.3 +2236,41051,"Multnomah County, Oregon",Multnomah County, Oregon,45606,803863,70,5.5,38.5,4.7,1.5,82.1,14.4,25,2.25,2.96,38.4,1.8,54.1,55234,92.3,48.6,347392,8.1,4.4,5.8,1.5,3.4,12.5,14.4,11.3,119642,52354,86247,5,5.1,5.9,1.8,2.4,0.7,87.1,92.9,93 +2237,41053,"Polk County, Oregon",Polk County, Oregon,37900,88553,79.8,0.8,37.6,5.3,2.1,77.9,18.8,26.3,2.66,3.13,21.9,6.2,64.6,50426,91.8,30.6,32574,9.1,1.8,1.7,0.3,1.3,12.2,13.2,13,104766,39423,81318,9,4.6,5.1,1.7,3,0.5,84.2,89.5,90.4 +2238,41055,"Sherman County, Oregon",Sherman County, Oregon,36129,1908,86.7,0.4,45.8,5.7,1.9,81.2,22.7,NA,2.42,3.11,5,30.1,67.1,42432,88.3,16.1,784,1.5,2.9,0,0.5,0,NA,NA,NA,73740,33190,59500,13.2,1,3.1,0,0.5,0,76.3,88.8,82.7 +2239,41057,"Tillamook County, Oregon",Tillamook County, Oregon,33766,27471,87.3,0.6,48.9,4.1,2.5,81.9,27.4,NA,2.26,2.76,9.3,15,73.2,41424,90.6,25.1,11817,7,1.2,1.4,0.3,1.6,NA,NA,NA,84601,37336,66551,8.7,4.2,4.7,0,0,0.3,80.1,84.8,88.9 +2240,41059,"Umatilla County, Oregon",Umatilla County, Oregon,35072,80087,70.9,0.7,36.7,6.2,1.9,75.2,16.2,19.1,2.7,3.16,17.1,18.5,67.1,42505,84.4,18,28194,20.6,0.6,1,0.8,3.2,12.6,15.4,9,86384,31371,68958,6.6,4.8,7.1,1.5,3.3,0.6,74.7,87.5,85.3 +2241,41061,"Union County, Oregon",Union County, Oregon,32655,26192,88.4,0.9,40.1,4.9,2.5,77.9,21,NA,2.36,2.84,15.3,12.3,64.6,44169,93.5,24.9,10856,4.2,1.5,1.4,0.1,0.2,NA,NA,NA,83393,34745,64212,8,5.2,6.9,3.6,3.6,0.8,76.2,86.2,82.9 +2242,41063,"Wallowa County, Oregon",Wallowa County, Oregon,35771,7532,90,1.2,50.2,4.8,2.8,80,29,NA,2.21,2.81,7.8,11.1,76.4,36620,92.9,36.9,3356,3.5,1.1,1,0,0.8,NA,NA,NA,84099,37963,65559,10.6,5.6,6.9,0,0.4,0.9,79.6,80.3,82.4 +2243,41065,"Wasco County, Oregon",Wasco County, Oregon,31872,26603,79.6,0.4,40.5,5.5,2.9,78.4,20.9,18.7,2.43,3.08,14.6,18.8,66.2,40706,86.9,21.8,10411,13.2,1,1.1,0.6,3.4,NA,NA,NA,91342,36582,63602,9.5,7.9,9.5,2.2,5.3,2.2,76.9,87.8,87.9 +2244,41067,"Washington County, Oregon",Washington County, Oregon,50081,600266,66,2.3,37.8,5.4,1.6,78,14.3,24.1,2.55,3.05,30.7,2.1,60.9,61975,92.9,46.7,232366,11.1,6.1,8,1.5,3.5,8,8.7,8.6,133965,52136,104434,5.7,4.2,5.4,2.2,2.7,0.5,90.1,94.1,94.7 +2245,41069,"Wheeler County, Oregon",Wheeler County, Oregon,28894,1434,86,0,57.3,5.2,4.6,84.9,36.3,NA,2.13,2.71,0.5,15.2,69.2,37778,91.4,20.4,663,3.8,0,0.5,0.5,0,NA,NA,NA,72405,33337,51250,14.1,4.1,3.8,0,0.4,0,79.8,75.6,79.9 +2246,41071,"Yamhill County, Oregon",Yamhill County, Oregon,37796,108122,78.4,0.7,39.5,5.1,2.3,78.6,18.3,NA,2.63,3.06,16.1,9.8,69.9,49668,89.8,29.2,38836,10.4,1.9,1.4,0.6,2.2,10.4,13.6,8.4,109850,40615,87084,8.7,3.8,6.1,2.7,4.3,0.9,84.3,90.7,91.7 +2247,42001,"Adams County, Pennsylvania",Adams County, Pennsylvania,39444,105183,90.2,1.9,43.8,4.7,2.4,80.3,21.3,NA,2.5,2.96,9.8,5.9,79.1,48236,90.7,24.8,40411,4.2,1.5,0.5,0.2,1.2,8.4,13.6,5.4,98943,39339,81071,8,2.8,5.9,8.8,6.2,0.3,78.6,85.1,88.6 +2248,42003,"Allegheny County, Pennsylvania",Allegheny County, Pennsylvania,42910,1240476,76.9,12.5,40.6,5.1,2.7,81.3,19.7,25.7,2.2,2.92,25.8,0.6,64.9,55447,95.5,44.8,546507,2.4,3.8,2.4,0.9,1.4,11.2,14.8,9.5,107275,48208,76393,6,4.7,3.9,1.9,2.5,0.3,79.9,86.7,89.8 +2249,42005,"Armstrong County, Pennsylvania",Armstrong County, Pennsylvania,35342,65069,95.8,1,47.2,4.5,3.1,81,23.4,29,2.3,2.81,8.9,7.8,78.6,45035,93.1,18.9,28007,0.8,1.6,0.4,0.2,0.6,11.3,15.3,9.8,82218,35313,64295,8.8,4.4,4,5,2.9,0.1,72.5,80.2,84.7 +2250,42007,"Beaver County, Pennsylvania",Beaver County, Pennsylvania,38796,166993,87.7,6.2,44.7,4.8,2.7,80.5,22.2,NA,2.28,2.89,14.4,3.3,74.5,49392,95.1,28.3,71975,1.8,2.3,0.4,0.1,0.5,10.1,15.4,7.7,90373,39805,70156,7.8,4.7,3.8,1.3,2.1,0,75.2,84.5,87.7 +2251,42009,"Bedford County, Pennsylvania",Bedford County, Pennsylvania,31081,47503,96,0.8,47.5,5,2.8,80.5,23.5,NA,2.38,2.96,9.3,13.7,78.1,41752,90,16.3,19763,1,2.1,0.3,0.1,0.3,11,13.5,10.6,76732,32550,60302,8.1,4.4,7.6,9.7,8.3,0.6,68,73.4,82.1 +2252,42011,"Berks County, Pennsylvania",Berks County, Pennsylvania,38194,429989,72.3,4.7,39.9,5.5,2.4,77.9,17.7,25,2.57,3.14,16.8,2.7,71,50638,88.4,27.2,161701,17.5,3.1,0.8,0.4,5.2,11.7,17.5,8.3,101044,39012,77684,5.7,5.3,6.7,5.8,5,0.9,76.2,85.9,88.1 +2253,42013,"Blair County, Pennsylvania",Blair County, Pennsylvania,34391,121854,93.3,1.8,42.9,5,2.7,79.7,21.1,20.9,2.33,2.95,16.1,6.4,72.4,42629,93.2,24.1,50548,0.9,2.3,0.3,0.2,0.4,13,16.6,10.4,80522,34593,60594,8.7,4.4,5.8,7.1,5.8,0.5,71.2,81.5,84.7 +2254,42015,"Bradford County, Pennsylvania",Bradford County, Pennsylvania,34342,59971,95.1,1,43.7,5.6,2.9,77.8,22.1,NA,2.42,2.99,14,12.6,72.3,45822,91.1,21.2,24487,1.6,1.1,0.5,0.2,0.3,13.4,17.7,11.5,84646,35298,62482,8.6,5.3,6.7,8.1,6.1,0.2,71.9,78.7,84.1 +2255,42017,"Bucks County, Pennsylvania",Bucks County, Pennsylvania,50713,645993,82.4,3.7,44.1,4.7,2.5,79.9,20,29.6,2.57,3.06,17.5,1.7,78,65837,94.9,43.9,247674,4.4,7.3,2.5,0.8,2.5,6.1,7.6,6.1,145806,56824,111951,5.7,4.2,3.9,1.2,1.9,0.4,87.4,90.9,94.1 +2256,42019,"Butler County, Pennsylvania",Butler County, Pennsylvania,42795,195870,93.8,1,43.3,4.8,2.2,80.5,20.1,27.3,2.37,2.98,14.2,6.7,76.4,56659,95.7,38.6,80245,1.6,1.9,0.9,0.1,0.5,8,7.6,6.5,113602,47658,86775,7.3,4,3.2,1.3,1.9,0.2,80.6,85.9,89.6 +2257,42021,"Cambria County, Pennsylvania",Cambria County, Pennsylvania,32756,132355,91.6,3.2,45.7,4.8,3.1,80.7,23.5,23.3,2.26,2.94,13.6,4.1,75.8,42446,92.9,23,55692,1.5,1.2,0.4,0.1,0.5,14.2,20.5,10.1,77930,33863,56292,8.8,4.7,3.6,2.8,1.8,0.1,69.3,78.2,83.2 +2258,42023,"Cameron County, Pennsylvania",Cameron County, Pennsylvania,27583,4475,94.1,0,52.5,3.8,3.7,83.7,29.5,NA,1.98,2.47,16.6,6.9,68.9,38865,91,11.3,2229,1.2,0.7,0.9,0,0.4,NA,NA,NA,59531,29242,47681,9.7,10,2.5,0,0.3,0.4,71.8,76.6,81.1 +2259,42025,"Carbon County, Pennsylvania",Carbon County, Pennsylvania,35032,65191,90,2.3,46.3,4.7,2.5,80.9,22.1,NA,2.37,2.89,9.5,4.7,77.2,46073,90.3,18.3,27093,3.9,3.1,0.5,0.1,0.5,12,18.6,9.1,85885,36380,67877,7.8,7.2,5.4,2.9,3.8,0.3,73.2,81.9,87.9 +2260,42027,"Centre County, Pennsylvania",Centre County, Pennsylvania,33509,158041,84.9,3.3,33.8,3.6,2.1,85.2,15.5,NA,2.33,2.9,28.2,4.9,61.8,51071,94.6,46.5,59006,2.6,5.6,5.2,1.3,1.9,16.9,9.2,5.4,99196,38732,72748,5.2,3.4,5.5,10.9,8.1,0.6,84.2,87.6,85.5 +2261,42029,"Chester County, Pennsylvania",Chester County, Pennsylvania,55546,540896,78.4,5.3,40.7,5.4,2,77.7,17.3,27.4,2.6,3.1,17.7,2.1,74.9,73478,94.9,56.6,202405,5.1,5.1,3.7,0.5,1.7,5.9,7.4,5.2,165377,63089,123041,5.3,3.5,4.4,4.1,4.2,0.5,88.8,91.7,94.1 +2262,42031,"Clarion County, Pennsylvania",Clarion County, Pennsylvania,31956,37297,94.8,1.8,41.6,5,2,81.1,20.2,NA,2.39,2.92,12.5,9.2,71.4,43570,91,23.3,14982,0.6,1.8,0.3,0.5,0.1,NA,NA,NA,78579,32498,60668,7.8,3.5,6.3,10.5,8.2,0.2,73.3,79.4,83.5 +2263,42033,"Clearfield County, Pennsylvania",Clearfield County, Pennsylvania,31978,78902,93.1,2.2,45.6,4.6,2.8,81.6,21.5,24.9,2.32,2.88,11,10.5,78.3,42036,90.4,20.1,32089,0.9,1.6,0.6,0,0.2,13.8,19.3,11.8,79059,32502,60181,7.8,5.1,6.2,4.4,7.1,0.5,70,78.2,81.5 +2264,42035,"Clinton County, Pennsylvania",Clinton County, Pennsylvania,31466,37707,94.5,1.4,39.8,5.3,2.6,79.8,19.7,NA,2.36,2.9,18.9,8.1,71.6,45821,89.7,21.3,15258,1.1,4.5,0.5,0.1,0.5,NA,NA,NA,76816,31762,58842,7.7,5.8,9.9,13.9,13.2,1,70.9,81,83.3 +2265,42037,"Columbia County, Pennsylvania",Columbia County, Pennsylvania,32461,65055,92.4,1.9,41.4,4.2,2.8,82.3,20.2,21.7,2.36,2.89,15.2,7.6,70.4,45752,91.8,24.9,25874,1.2,2,0.8,0.1,0.3,15.7,18.7,10.3,79343,32432,61992,6.6,4.4,4.3,5,5.1,0.4,73.1,83.4,86.3 +2266,42039,"Crawford County, Pennsylvania",Crawford County, Pennsylvania,31364,83189,93.7,1.7,43.9,5.3,2.5,79.4,22.1,NA,2.36,2.91,13.6,9.9,73.7,42091,91,21.2,33616,0.7,3,0.4,0.4,0.7,12.8,17,9,77237,31919,60254,9.4,4.8,8.8,12.7,11.2,0.8,70.7,78.6,84.2 +2267,42041,"Cumberland County, Pennsylvania",Cumberland County, Pennsylvania,44245,264422,83.4,4.5,40.3,5.3,2.7,79.5,18.8,NA,2.39,3,18.2,4.6,71.4,56734,93.5,39.6,105187,2.7,4.3,2.5,1,1.7,7.8,9.8,5.3,110385,45365,85634,8.4,3.2,5.4,6.5,5.5,0.6,83.8,87.2,90.9 +2268,42043,"Dauphin County, Pennsylvania",Dauphin County, Pennsylvania,41710,287484,64.9,17.7,39.4,6,2.1,77.6,17.7,21.9,2.35,2.99,24.4,2.6,63.3,51077,91.5,34.3,119763,6.3,4.2,2,1.1,2.9,12.3,17,9.9,98206,41055,74159,6.9,4.3,6.3,6.5,6.6,0.4,77.9,86.7,89.3 +2269,42045,"Delaware County, Pennsylvania",Delaware County, Pennsylvania,44117,576195,64.5,22,39,5.7,2.3,77.9,17,28.4,2.56,3.21,23,0.3,69.6,57735,93.6,41.6,216660,3.9,5.9,3.9,2.2,2.8,10.2,13.8,8.2,126081,48676,88576,5.1,6.5,4.8,2.8,3.4,0.4,82,89.4,92.2 +2270,42047,"Elk County, Pennsylvania",Elk County, Pennsylvania,35730,30703,95.1,0.8,48.5,4.5,2.9,81,23.4,NA,2.25,2.9,12.2,4.3,78.9,42478,93.5,19.9,13481,0.8,1.1,0.7,0.2,0.1,NA,NA,NA,80111,35683,64103,8,5.7,2.7,0.5,0.5,0.4,74.5,79.5,85.6 +2271,42049,"Erie County, Pennsylvania",Erie County, Pennsylvania,33307,269544,83.5,6.9,40.1,5.2,2.2,79.1,19.2,NA,2.33,2.98,21.6,4.8,68.3,43446,92.6,29.6,110106,2.5,3.2,0.8,0.7,1.3,15.4,21.8,9.7,82408,34285,61476,7.3,5.5,4.1,2,2.1,0.2,75.1,85.9,87.5 +2272,42051,"Fayette County, Pennsylvania",Fayette County, Pennsylvania,31513,126967,90.1,4.1,45.4,4.9,2.8,80.7,22.2,NA,2.23,2.81,11.6,10.1,72.5,43782,90,18.9,54962,1.1,1.6,0.5,0.2,0.2,17.4,24.3,13.2,74330,32278,56093,7.2,6.1,4.4,3.7,2.9,0.2,68,79.7,82.9 +2273,42053,"Forest County, Pennsylvania",Forest County, Pennsylvania,27038,6785,79,14,48.6,0.5,2.9,96.4,24,23.8,2.26,2.94,9,9.1,76.9,40059,85.6,12.1,1944,0.9,1,0.4,0.1,0.3,NA,NA,NA,61627,23033,50061,8.1,3.2,5.6,4.7,1.8,1.4,67.4,75.6,71.6 +2274,42055,"Franklin County, Pennsylvania",Franklin County, Pennsylvania,40692,156626,87.8,3.2,42.2,5.6,2.7,77.9,20,NA,2.46,2.99,12.9,6,73.2,49815,90.7,24,63028,5.1,2.2,0.6,0.2,1.4,7.8,10.1,6.3,95559,39149,74946,8.8,3.4,9.1,11.6,11.9,1.1,78.1,82.8,88.2 +2275,42057,"Fulton County, Pennsylvania",Fulton County, Pennsylvania,36555,14545,94.1,1.4,45.9,4.8,2.4,80.2,22.2,31.5,2.35,2.88,5.4,14.8,77.6,47199,89.3,17.1,6156,0.3,1.2,0,0,0.1,NA,NA,NA,83930,36413,64798,6.7,3,5,4.9,5.3,0.2,68,77.7,81.7 +2276,42059,"Greene County, Pennsylvania",Greene County, Pennsylvania,32996,35265,92.3,2.7,43,4.6,1.8,80.9,20,NA,2.27,2.76,10.2,15.3,78.1,44531,89.9,21.1,14126,0.8,1.3,0.1,0.1,0.2,NA,NA,NA,82555,33316,66870,8.2,5.5,4.1,1.8,2.1,0.1,71.7,81.8,85.5 +2277,42061,"Huntingdon County, Pennsylvania",Huntingdon County, Pennsylvania,32090,43844,90.2,4.9,43.5,4.5,2.6,82.1,21.5,NA,2.43,2.99,10.2,11.3,78.6,42552,90.7,18.2,16038,0.8,1,0.4,0,0.1,NA,NA,NA,81916,32158,65429,8.8,4.3,5,6.2,5.4,1.1,71.6,77.7,84.3 +2278,42063,"Indiana County, Pennsylvania",Indiana County, Pennsylvania,29672,83213,92.6,2.5,39.5,4.5,2.6,81.9,20,25.2,2.41,3.14,15,8.9,71.1,42131,92.4,26.9,32291,0.8,3.9,0.3,0.4,0.7,12.8,15,9.4,77466,31524,58739,7.2,5.7,7.6,10.8,9.8,0.5,70.5,79.4,78.9 +2279,42065,"Jefferson County, Pennsylvania",Jefferson County, Pennsylvania,32612,44099,96.5,0.5,43.7,5.5,2.7,78.6,21.7,NA,2.38,2.99,12.8,6.5,74.2,41103,91.4,17.5,18207,0.5,2.6,0.4,0.2,0.4,15.3,23.7,12.3,73117,31091,56898,8.1,4.3,8.5,15.5,13.1,0,68.5,78,79.9 +2280,42067,"Juniata County, Pennsylvania",Juniata County, Pennsylvania,34419,23419,93.2,1.1,43.1,6,2.3,77.7,20.9,NA,2.59,3.13,12.2,8,73.2,44267,83.3,15,8928,4,4.4,0.3,0.1,1.8,NA,NA,NA,80988,32025,63923,6.3,2.1,15.3,36.1,27.2,1.1,64.5,76.6,81.2 +2281,42069,"Lackawanna County, Pennsylvania",Lackawanna County, Pennsylvania,34765,215834,83.4,3.1,41.9,5.1,2.8,79.5,20.3,NA,2.35,2.99,25,2,65.4,46789,91.6,30.1,88266,6,3.5,1.2,0.4,2.2,14,19.2,12.1,87019,36217,64691,6.4,4.5,4.7,2.9,2.9,0.3,75.3,85.5,87.1 +2282,42071,"Lancaster County, Pennsylvania",Lancaster County, Pennsylvania,40243,555151,82.9,4,39.1,6.3,2.8,76.7,19.2,24,2.57,3.09,19.1,3.7,69.9,50485,87.1,31,210536,7.7,6.8,1.4,0.9,3,8.7,11.3,8.1,107934,41319,83703,5.9,3.1,11,18.4,15.4,2.1,78.5,84.5,86.9 +2283,42073,"Lawrence County, Pennsylvania",Lawrence County, Pennsylvania,33544,85423,90.4,3.7,44.9,5.1,3,79.9,23,23.7,2.31,2.89,11.4,6.2,75.4,44465,92.4,22.8,36005,1.9,2.4,0.4,0.2,0.8,11.6,16.5,7.8,79865,34283,60779,8.3,6.4,5.3,5.6,4.1,0.8,70.8,83.2,86 +2284,42075,"Lebanon County, Pennsylvania",Lebanon County, Pennsylvania,38268,143592,82,2.1,41.3,5.6,2.9,77.3,20.1,22.4,2.5,3.01,14.8,4.7,71.3,49202,88,24,55846,9.3,2.5,0.8,0.3,2.5,10.6,15.2,7.4,95935,37701,76350,8.2,3.8,8.7,10.2,12.6,0.7,74.2,84.6,85.7 +2285,42077,"Lehigh County, Pennsylvania",Lehigh County, Pennsylvania,38547,375408,66.8,6.9,39.3,5.8,2.3,77.5,17.3,25.1,2.55,3.08,23.5,1.8,65.2,49159,90.3,33.4,143445,19.4,3.8,1.7,2.2,8,11.9,18.2,8,107564,41804,77493,5.8,5.2,6.3,2.6,3.2,0.3,78.5,87.9,88.7 +2286,42079,"Luzerne County, Pennsylvania",Luzerne County, Pennsylvania,34906,325978,78.3,5.2,42.1,5.3,2.5,79.7,19.9,23.6,2.36,2.99,18.1,2.9,67.8,45097,90.7,25,133434,10.5,2.7,0.8,0.4,3.6,15.4,25.1,10.2,82477,34857,62321,7.1,5.3,6.3,4,3.9,0.4,72.7,83.5,86.3 +2287,42081,"Lycoming County, Pennsylvania",Lycoming County, Pennsylvania,35111,113570,89.1,4.4,41.3,5.2,2.7,79.4,20.2,20.9,2.33,2.87,18.3,5.6,69.2,43517,91.1,24.8,46201,1.2,1.9,0.6,0.2,0.5,12.5,18,8.1,83918,34853,64412,8.6,5.3,5.4,7.4,6.1,0.1,73.2,82.7,86.6 +2288,42083,"McKean County, Pennsylvania",McKean County, Pennsylvania,31763,40149,93.7,2.3,43.8,4.5,2.1,80.4,20.5,NA,2.31,2.85,10.7,7.6,78.7,43234,92.5,20.3,16204,0.8,1.2,0.4,0.1,0.2,NA,NA,NA,79327,32353,61705,8.2,4.9,4.2,3.1,3.2,0.1,72.6,82.1,85.4 +2289,42085,"Mercer County, Pennsylvania",Mercer County, Pennsylvania,32316,109852,89,5.6,45.2,4.8,3.1,80.9,22.7,22,2.24,2.82,14.3,6.6,72.5,44354,91.3,25.1,46123,0.7,2.4,0.4,0.2,0.5,12.8,20,7.4,78316,33320,60614,8.7,4.9,6,9.3,7.9,0.3,69.5,81.7,84.4 +2290,42087,"Mifflin County, Pennsylvania",Mifflin County, Pennsylvania,33460,46074,93.9,0.7,43.1,6.5,2.6,77.3,21.8,NA,2.45,2.95,12.6,7.4,71.5,42139,84.4,13.2,18502,1.4,5.4,0.3,0.2,1.3,16,26.5,8.6,73879,30357,61415,8.2,3.1,12.9,29,22.6,0.9,64.9,77.4,82.3 +2291,42089,"Monroe County, Pennsylvania",Monroe County, Pennsylvania,35891,167784,66.5,14,43.9,4.7,1.8,80.7,18.9,NA,2.72,3.21,9.1,3.6,79.5,47022,90.3,27.9,60562,12.3,6.4,1.6,0.9,2,11.3,15.4,8.2,100240,37512,82374,7.3,6,6.5,7.3,6.1,0.4,83.5,88.7,91.8 +2292,42091,"Montgomery County, Pennsylvania",Montgomery County, Pennsylvania,53507,861225,74.4,9.3,41.1,5.3,2.6,78.5,18.4,27.9,2.52,3.1,24.4,0.8,71.7,68450,94.9,52.3,333514,4.1,6,4.7,1.2,2.4,6.5,7.9,6.8,154372,60507,111521,4.9,4.1,4,2.6,3.1,0.4,88.1,91.2,93.7 +2293,42093,"Montour County, Pennsylvania",Montour County, Pennsylvania,39536,18079,90.5,2.5,43,5.5,3.2,79.7,21.4,NA,2.25,2.79,17.9,6.6,67.1,56066,92.8,36.6,7689,1.7,3.9,0.9,0.9,1,NA,NA,NA,106486,45274,72926,7.7,1.7,4.4,6.3,6.8,0.7,73.6,83.4,85.6 +2294,42095,"Northampton County, Pennsylvania",Northampton County, Pennsylvania,41286,315927,76.7,5.9,42,4.7,2.9,80.5,19.9,27.3,2.5,3.01,18.8,2.2,71.1,54403,92.7,33.8,121496,10.5,4.6,1.6,0.8,2.7,8.8,12.6,6.2,113739,44837,86687,6.5,4.4,4.2,1.6,2.5,0.4,80.4,88.3,89.1 +2295,42097,"Northumberland County, Pennsylvania",Northumberland County, Pennsylvania,33660,90925,91.1,2.7,44.4,5.1,2.5,80.2,21.7,25.4,2.32,2.9,13.1,3.9,74.8,42841,90,19.2,37581,2.6,2.1,0.4,0.1,0.7,12.2,16,10.7,75909,32241,57948,8.3,3.7,4.3,6.8,5.1,0.1,67.8,78.4,82.7 +2296,42099,"Perry County, Pennsylvania",Perry County, Pennsylvania,40782,45988,94.5,0.8,43.8,5.4,1.7,78.9,19.9,NA,2.5,2.98,7.2,8.7,80.7,51055,89.9,18.6,18232,1.6,3.8,0.4,0.1,0.3,NA,NA,NA,95139,38594,78824,8.6,3.2,9.9,18.8,15.4,0.9,75,81.3,85.5 +2297,42101,"Philadelphia County, Pennsylvania",Philadelphia County, Pennsylvania,35064,1582432,36.1,39.9,35.1,6.1,1.6,78.6,14.4,32,2.29,3.12,34.3,0.4,52.3,48497,87.4,34.6,669222,11.2,6.7,5.6,2.3,7,22,30.1,21.1,88307,37669,60698,4,7.8,7.2,3.6,4.5,0.8,75.5,87.9,87.5 +2298,42103,"Pike County, Pennsylvania",Pike County, Pennsylvania,39728,59691,80.4,6.6,49.4,3.7,2.5,82.7,23.7,43.6,2.47,2.96,5,1.8,86.2,49502,93.2,28.9,24009,8.9,6.6,0.8,0.6,2.4,9.3,12.4,7.8,101573,42243,79318,8.5,6.4,5.5,5.4,4.2,0.3,83.5,87.2,90.4 +2299,42105,"Potter County, Pennsylvania",Potter County, Pennsylvania,31988,16276,95.7,0.4,48.2,4.9,2.8,79.8,25.3,NA,2.37,2.92,7.1,10.7,80.2,41663,90.8,17.1,6757,0.7,2.3,0.1,0,0.5,NA,NA,NA,74947,31841,59840,9.7,4,6.7,9.1,8.2,0.6,71.7,77.6,83 +2300,42107,"Schuylkill County, Pennsylvania",Schuylkill County, Pennsylvania,35139,143259,89.7,2.9,43.9,4.7,2.8,80.1,20.8,NA,2.37,2.92,11.5,3.6,76.3,46157,90,19.1,57465,4,2.2,0.7,0.1,0.9,12.5,18.4,9.5,82922,33769,66901,7.3,5.1,6.3,7.6,6.1,0.3,71.6,82.1,84.7 +2301,42109,"Snyder County, Pennsylvania",Snyder County, Pennsylvania,32573,39711,95,0.8,40.5,5.2,2.3,79.4,20,NA,2.53,3.04,10.5,7.9,74.3,44043,84.3,21.4,14549,2.1,5.5,0.3,0.1,0.6,NA,NA,NA,86097,32361,68435,5.5,2.3,11.8,22.9,18,1.5,71.2,77.8,81 +2302,42111,"Somerset County, Pennsylvania",Somerset County, Pennsylvania,31803,73255,94.5,1.9,47,4.6,3.6,81.8,23.5,NA,2.37,2.95,9.2,9.6,80.3,40452,90.1,17.3,29071,1,2.2,0.3,0,0.4,11.2,15.3,9.4,75974,31736,59378,8,5.2,5.8,6.7,6.5,0.6,68.4,76.7,80.2 +2303,42113,"Sullivan County, Pennsylvania",Sullivan County, Pennsylvania,34234,5849,94.6,2.3,56.1,2.7,3.3,89.8,30.4,NA,2.17,2.72,5.8,6.9,83.2,42445,91.8,19.7,2536,0.7,2.1,0,0.1,1.1,NA,NA,NA,81442,38338,64758,9.5,6.7,4.6,4.5,2.6,0.2,74.9,75.5,79.3 +2304,42115,"Susquehanna County, Pennsylvania",Susquehanna County, Pennsylvania,34946,38349,95.7,0.2,48.6,4.8,2.6,81.2,24.7,NA,2.43,2.94,8.9,10.7,78.3,42183,91.5,19.8,15639,1.2,1.8,0.6,0.1,0.3,NA,NA,NA,92206,39044,66930,9.1,5.5,6.8,4.5,4.6,0.5,73.7,79.6,87.3 +2305,42117,"Tioga County, Pennsylvania",Tioga County, Pennsylvania,32264,41078,96,0.9,45,5,2.6,80.3,23,NA,2.41,2.9,11,15.3,76.7,42165,92,21.5,16639,1,1.4,0.9,0,0.2,NA,NA,NA,78295,32785,62932,10.7,4.1,6.4,5,3.9,0.4,72.8,79.1,86 +2306,42119,"Union County, Pennsylvania",Union County, Pennsylvania,32644,42570,89.1,6,40.5,4.3,3.3,82.5,19.5,18,2.36,2.91,15,8.6,71.4,43793,86.7,26.4,14301,2,5.7,0.6,0.6,1.1,NA,NA,NA,103373,36765,72894,6.4,2.1,9.9,21.9,14.6,1.5,71.7,75,76.6 +2307,42121,"Venango County, Pennsylvania",Venango County, Pennsylvania,33055,50096,94.2,1.1,47.6,4.9,2.5,80.9,24.2,NA,2.29,2.8,10.2,8,75.6,40676,91.5,19.7,21342,0.8,1.3,0.2,0,0.3,12.8,18.6,8,76779,33044,61626,9.7,6.2,4.4,3.6,3,0.2,72,81.9,87.2 +2308,42123,"Warren County, Pennsylvania",Warren County, Pennsylvania,33650,38174,95.2,0.8,47.4,5.2,2.8,80.4,24.2,NA,2.31,2.86,13,7.7,78,41502,93.9,19.5,16271,1.3,1.7,0.4,0.2,0.3,NA,NA,NA,76006,33333,59013,11,4.2,4.4,6.4,4.6,0.8,73.6,79.1,82.9 +2309,42125,"Washington County, Pennsylvania",Washington County, Pennsylvania,40594,209778,90.8,3.2,44.2,5,2.7,80.3,21.5,26.7,2.33,2.91,12,5.2,76.4,53293,94,32.8,87665,1.6,1.8,0.6,0.2,0.5,9.4,12.4,8,104399,44392,77487,6.7,4.4,4,1.9,2,0.2,75.8,85.4,89 +2310,42127,"Wayne County, Pennsylvania",Wayne County, Pennsylvania,32511,51189,90.1,3.2,48.9,4.1,2.8,83.4,25,NA,2.36,2.87,7.6,9,81.9,39904,91.4,21.6,20314,2.6,3.3,1.1,0.7,1,12.2,15.7,7.9,81581,33735,62182,9.9,5.7,6.5,2.6,3.2,0.3,76.5,80.6,86 +2311,42129,"Westmoreland County, Pennsylvania",Westmoreland County, Pennsylvania,38788,353345,92.6,2.5,47.1,4.3,3.2,81.7,23.7,NA,2.24,2.82,11.8,4.9,78.3,50881,95.4,31.8,154385,1.1,1.7,0.7,0.2,0.3,10,13.1,8,95075,42132,72468,7.7,4.7,3.2,1.7,1.7,0.1,76.1,82.9,87.2 +2312,42131,"Wyoming County, Pennsylvania",Wyoming County, Pennsylvania,35765,26075,94.5,0.8,45.2,4.6,2.4,80.7,22.4,NA,2.33,2.84,8.4,10.1,76.8,47397,92.4,21.5,10892,1.7,1.3,0.5,0,0.4,NA,NA,NA,94177,39484,70268,7.3,4.8,3.6,1.8,1.5,0.1,76,83.2,86.2 +2313,42133,"York County, Pennsylvania",York County, Pennsylvania,41271,459312,82.9,5.9,40.9,5.4,2.2,78,18.4,NA,2.5,3.01,14,4.3,75.8,51693,91.4,27.2,180207,6.2,2.3,1,0.7,1.8,8.6,11.1,8.4,101502,40530,82238,7.4,4,4.7,2.2,3.2,0.3,79.6,87,89.4 +2314,44001,"Bristol County, Rhode Island",Bristol County, Rhode Island,48386,50568,90.4,1.1,44.1,3.6,3.1,81.9,20.5,25.5,2.41,3,27.2,0,73.3,68888,93.5,51.8,19420,2.7,11.4,1.9,0.1,2.8,NA,NA,NA,148308,58817,110926,5.2,3,2.7,0.7,1.8,0.5,83.3,87.9,92 +2315,44003,"Kent County, Rhode Island",Kent County, Rhode Island,46864,170658,86.6,2.1,43.6,4.6,2.4,81.7,19.9,25.2,2.32,2.87,26.4,1.4,72.1,59015,92.8,34.3,72743,4.5,5,2.1,0.4,1.4,7.4,6.6,8.1,115863,49243,91278,7.3,4.3,3,1.3,1.5,0.2,81.5,87.6,91.6 +2316,44005,"Newport County, Rhode Island",Newport County, Rhode Island,47250,85095,84.9,3.8,46.4,4,2.8,83.7,24.4,NA,2.24,2.8,29.7,2.1,67.4,57996,95.3,53,36186,4.6,6.3,0.6,0.4,2,8.6,11.6,7.8,139007,60920,100859,8.9,6.4,4.1,5,2.8,0.2,85.6,89.4,93.5 +2317,44007,"Providence County, Rhode Island",Providence County, Rhode Island,39512,658977,62.1,8.3,37.9,5.5,2,79.7,16,25.6,2.46,3.11,48.9,0.4,56.6,52324,86.3,32.2,256505,19.4,10.7,2.7,1.8,7.6,13,16.6,13.3,101714,40689,78204,4.2,5.8,5.3,2.7,3.4,1.1,76.1,87.1,89.3 +2318,44009,"Washington County, Rhode Island",Washington County, Rhode Island,46143,130073,90.4,1.3,45.3,3.6,2.3,84.3,22.6,26.6,2.36,2.88,18.8,1.6,76.8,62086,95.3,50.5,52048,2.2,3.7,1.7,0.4,1.3,8,6.5,5.8,130358,53226,102478,6.1,4.3,2.2,1.4,1.5,0.1,86.4,89.1,93.6 +2319,45001,"Abbeville County, South Carolina",Abbeville County, South Carolina,32929,24352,69.3,25.8,44.3,4.7,2.6,80.4,22.6,NA,2.46,3.03,10.9,22.1,77,41110,86.2,19.3,9536,1.9,1,0,0,0.1,NA,NA,NA,73094,30650,52112,7.7,3.6,10.7,11.2,6.7,0,68.9,81.9,80.1 +2320,45003,"Aiken County, South Carolina",Aiken County, South Carolina,35193,171949,66.1,24.5,41.6,5.7,2.4,78.4,20.4,24.7,2.47,3.01,8.5,17.5,76.7,46767,89.8,31.1,68606,4.4,1.4,0.9,0.1,0.7,13.9,18.6,11.7,88922,36627,67940,9.9,5.3,8.8,2.8,3.9,0.5,76,89,89.7 +2321,45005,"Allendale County, South Carolina",Allendale County, South Carolina,24091,7738,24.2,64,42.5,4.7,2.3,81.3,21.7,NA,2.16,2.95,9.9,23.2,64.7,35099,79.6,13.3,3163,1.5,0.6,0.9,0.3,0.3,NA,NA,NA,54043,23057,31603,6.2,7.6,12.2,0,1.4,0,47,70.9,70.6 +2322,45007,"Anderson County, South Carolina",Anderson County, South Carolina,33752,207218,77.2,13.6,40.5,5.6,1.6,77.3,18.2,NA,2.49,3.01,10.6,14.1,75.4,44206,87.8,26.4,82134,2.9,1.5,0.5,0.6,1.1,14.4,21.3,10.8,86976,34923,64683,8,4.7,10.4,4.7,6.5,0.8,74,88.1,87.2 +2323,45009,"Bamberg County, South Carolina",Bamberg County, South Carolina,20967,13164,37.8,59.9,41.7,4.7,2.6,81.4,23.5,27.4,2.65,3.69,9.6,23.7,74.2,34063,76.9,18.8,4592,0.3,0.2,0.3,0,0.3,NA,NA,NA,55753,22182,43206,5,12.2,14.3,7.2,10.6,1.3,60.8,80.7,78.1 +2324,45011,"Barnwell County, South Carolina",Barnwell County, South Carolina,26337,20565,52.2,43.3,40.7,6.6,1.8,76.3,18.9,27.5,2.49,3.25,10,30.6,71,39647,80.8,12.8,8107,1.7,1.2,0.5,0.2,0.4,28.5,49.4,19.2,62036,26141,41800,6.7,7.1,11.8,4.1,2.7,0.4,53.1,79.2,73.9 +2325,45013,"Beaufort County, South Carolina",Beaufort County, South Carolina,41048,192123,70.1,15.8,47.2,4.8,2.5,82.2,27.9,NA,2.36,2.82,16,10.7,75.7,47608,94.2,44.8,78794,8.3,2.1,0.8,0.5,1.8,10.5,18.4,6.6,123126,51657,84819,11.2,2.4,8.4,4.9,6.3,0.2,84.5,92.5,90.9 +2326,45015,"Berkeley County, South Carolina",Berkeley County, South Carolina,41071,238723,63.1,23.2,36.7,6.2,1.1,76.2,14.5,29.1,2.6,3.11,14.6,14.6,74.1,51325,90.6,29.9,90348,6,2.4,2.1,0.3,1.4,10.3,14.5,9,102485,39727,82327,12.5,3.2,9.9,6.2,6.3,0.7,80.6,91.2,87.4 +2327,45017,"Calhoun County, South Carolina",Calhoun County, South Carolina,31509,14150,55.2,38.6,47.4,4.7,2.4,81.3,24.1,NA,2.28,2.85,3.5,32.8,83.7,40701,88.3,21.8,6124,3.4,0.4,0.6,0,0.4,NA,NA,NA,74774,32567,56690,9.3,5.9,7.9,2.5,3,0.1,65.4,81,78.5 +2328,45019,"Charleston County, South Carolina",Charleston County, South Carolina,45670,414711,66.2,23.8,39,5.7,1.9,80.3,17.5,24.9,2.3,2.98,27.7,5,63.5,53910,92.9,49,175499,4.8,2.9,1.6,0.4,1.7,11.6,15.9,9.2,126878,54769,84320,8.4,3.2,8.9,5.8,6,0.9,81.2,91.8,86.2 +2329,45021,"Cherokee County, South Carolina",Cherokee County, South Carolina,30808,56299,71.2,18.9,40.3,5.9,1.4,77,17.1,24.7,2.53,3.25,11.4,23.8,73.3,38719,85.5,18.4,21864,4.1,0.9,0.8,0.1,0.9,18.5,28.8,16,66482,27175,49047,7.6,5,10.2,5.3,4.3,0.4,62.6,85.1,79 +2330,45023,"Chester County, South Carolina",Chester County, South Carolina,28733,32177,58.3,36,42.2,5.4,1.6,77.6,18.9,NA,2.48,3.04,4.8,23.1,77.9,37939,84.4,13.7,12926,1.1,0.1,0.6,0.3,0.3,19.3,28.5,15.7,66845,27656,51216,8.6,6.3,11.7,3.2,5.4,0.3,63.7,84,80.1 +2331,45025,"Chesterfield County, South Carolina",Chesterfield County, South Carolina,28410,43575,61.5,30.7,42.4,5.5,1.6,77.8,18.9,24.7,2.46,3.09,6.7,40.2,72.4,38649,82,13.2,17381,4.1,1.1,0.5,0,1,20.2,27.3,15,68312,28363,47620,7.1,8.1,12.1,2.4,5.9,0,61.9,79.6,79.9 +2332,45027,"Clarendon County, South Carolina",Clarendon County, South Carolina,25890,31037,50.1,45.2,45.9,4.5,2.5,81.5,24.4,NA,2.48,3.13,7.4,35.2,73,34641,81.9,17.7,11949,2.4,0.6,0.7,0.1,0.6,18.5,26.3,12.5,68565,28289,48887,6.9,9,9.8,3.9,4.4,0.2,67.2,80.4,83.8 +2333,45029,"Colleton County, South Carolina",Colleton County, South Carolina,28945,38623,57.7,34.7,42.2,5.6,1.9,77.3,20.1,35.6,2.38,2.96,5.2,40.9,73.1,37897,85.6,16.7,15968,2.8,0.8,0.1,0,1,18.7,24.9,11.3,69181,27859,48779,8.9,8.8,15.5,2,12,0.4,63.4,82,82.1 +2334,45031,"Darlington County, South Carolina",Darlington County, South Carolina,26133,62754,54.5,41,41.5,5.5,1.9,77.6,19.5,22.6,2.45,3.16,6.9,27.9,70.6,39771,86.5,19.7,25074,3.1,0.7,0.2,0.1,0.4,20.3,32.2,12.9,73030,30281,47419,6.2,7,9,1.9,3.2,0.2,63.6,83.3,75.3 +2335,45033,"Dillon County, South Carolina",Dillon County, South Carolina,24836,28031,45.3,45.7,37.5,7.1,1.4,74.6,17.3,NA,2.61,3.25,8.9,36.5,60.3,34295,81.6,11.7,10587,3.4,0,0,0.4,1.4,29.2,43.3,23.1,57551,23016,44038,6.1,6.3,14.6,0.8,5.1,0.4,48.5,75.8,64.6 +2336,45035,"Dorchester County, South Carolina",Dorchester County, South Carolina,40337,164322,63.1,25.1,37.9,5.8,1.3,75.8,14.8,NA,2.64,3.12,14.1,12.4,75.4,49192,91.3,30,61573,4.9,2.7,2,0.4,1.9,11.5,16.6,8.4,96656,37279,76896,12.1,4.4,11.3,10.3,8.9,0.3,82.3,91.6,88.6 +2337,45037,"Edgefield County, South Carolina",Edgefield County, South Carolina,29605,26508,59.4,31.4,42,4,1.7,82.7,19.6,NA,2.53,3.03,6.6,21,79.8,45714,81.8,21.4,9508,4.7,0.3,0.4,0.1,2.7,NA,NA,NA,84628,32802,67092,7.7,5.7,10.8,8.6,7.9,0.3,70.3,84.2,77.7 +2338,45039,"Fairfield County, South Carolina",Fairfield County, South Carolina,29793,20741,38.7,55.4,46.7,4.5,3.4,81.6,23.1,NA,2.32,2.93,6.2,22.3,76,41420,84.6,15.3,8773,1.7,0.7,0.3,0.2,0,NA,NA,NA,74173,32111,46972,6.7,5,8,7.3,8.1,0,68.3,85.1,81.1 +2339,45041,"Florence County, South Carolina",Florence County, South Carolina,31261,136921,50.5,43,39.2,5.8,1.5,76.3,17.7,NA,2.54,3.29,17.3,17.6,64.5,43083,87.7,23.6,52522,2.6,1.1,0.8,0.3,1,18.3,24.4,14.3,78842,31803,56650,7.3,4.5,10,1.1,3.8,0.3,67.9,84.9,80.7 +2340,45043,"Georgetown County, South Carolina",Georgetown County, South Carolina,33594,64200,66.2,28.9,51.6,4.1,2.2,82.7,29.8,28.4,2.39,2.91,12.7,17.9,83.1,40761,91.9,32.5,26593,1.6,1.2,0.7,0.1,0.6,14.4,26.1,8.1,98299,43928,66734,9.9,5.4,10.1,3.8,6.5,0.2,76.3,85.3,84.2 +2341,45045,"Greenville County, South Carolina",Greenville County, South Carolina,39448,537575,68.2,16.8,38.5,6,1.5,76.9,16.4,23.9,2.44,3,19.3,7.3,68.8,49636,90.5,40,215774,8.1,2.8,1.8,0.5,2.7,11,14.8,9.3,104150,42299,74624,6.9,3.9,10.1,6,5.8,0.5,80,90.8,91.1 +2342,45047,"Greenwood County, South Carolina",Greenwood County, South Carolina,31996,69329,62.8,31.3,39.6,5.9,2.6,77.5,19.1,NA,2.37,3.12,18.4,11.4,66.2,41811,88.9,25.6,27770,3.9,0.5,0.5,0.1,0.5,17.1,25.7,11.9,73454,31018,50635,7,3.9,7.9,2.3,3.6,0.2,70.7,84,80.2 +2343,45049,"Hampton County, South Carolina",Hampton County, South Carolina,28096,18555,40.4,52.6,40.9,5.3,2.3,79.3,18.9,36.6,2.52,3.24,5.2,35.5,73.6,33691,82.5,11.8,7104,2,0.4,0.5,0.1,1.3,NA,NA,NA,59862,25082,43059,6.1,9.5,12.7,7.3,7.2,1,60.3,82.6,79.7 +2344,45051,"Horry County, South Carolina",Horry County, South Carolina,33002,368937,77.8,11.9,48.2,4.3,1.7,82.8,25.7,23,2.41,2.92,20,13.4,75.8,38815,91.4,26.6,150342,5.1,2.7,1.1,0.4,1.5,12.8,19.7,7.8,84884,36572,64623,9.3,4.8,12.4,6.9,7.4,0.3,77.4,89.6,91.5 +2345,45053,"Jasper County, South Carolina",Jasper County, South Carolina,33784,30658,47,34.4,44.3,5.6,1.5,81,22,NA,2.39,2.82,12.2,26.4,76,36457,90.2,25.9,12420,11.7,1.4,0.4,1.9,1.9,18.3,26.5,15.1,78167,32505,63503,9,4.9,12.9,8.6,8.4,0.2,69.6,88.7,82.4 +2346,45055,"Kershaw County, South Carolina",Kershaw County, South Carolina,34419,66924,67.7,23.4,40.3,5.6,1.6,76.8,18.9,NA,2.57,3.13,5.2,20.7,81.7,43110,89.2,22.8,25877,5.1,1,0.7,0,0.4,14.1,21,10,86839,34250,64343,10.1,4.6,8.9,1.1,4,0.7,78.1,90.1,88.8 +2347,45057,"Lancaster County, South Carolina",Lancaster County, South Carolina,39360,100905,70.4,19.4,42.2,5.6,2.6,78.4,21.5,29.6,2.53,3.05,5.9,12.3,83.3,50450,89,31.2,39204,5.5,2.4,1.3,0.3,1.4,12.3,15,8.9,102695,41492,74751,7.5,5.7,8.3,3.2,4.7,1,75.3,88.1,87 +2348,45059,"Laurens County, South Carolina",Laurens County, South Carolina,30006,67904,67.4,23,40.9,5.7,1.7,78,18.9,NA,2.49,3.1,8.1,28.6,70.7,38789,83.7,17.9,26291,4.8,1.3,0.5,0.4,1.5,17.6,24.9,13.6,72549,28728,55517,6.6,4.5,12.7,1.6,5,0.5,65.8,84.5,83.9 +2349,45061,"Lee County, South Carolina",Lee County, South Carolina,24788,16330,34,62.3,41.8,4.9,1.3,81.1,20.1,28.1,2.39,3.16,7.2,33.5,73.5,36019,81,12.8,6294,3.3,0.8,0,0.4,0,NA,NA,NA,58286,24133,44145,6.6,4.5,10.3,3.2,5.5,0.6,59.3,77.8,80.7 +2350,45063,"Lexington County, South Carolina",Lexington County, South Carolina,40283,300370,73.4,15,39.7,5.7,1.8,76.9,16.7,NA,2.46,2.99,9.9,15.8,76.9,49136,91.5,33.1,120789,6,2.1,1.2,0.6,1.6,11.4,15.2,8.7,95320,38807,75014,9.4,3.9,9,4.7,4.8,0.4,79,90.8,91 +2351,45065,"McCormick County, South Carolina",McCormick County, South Carolina,30780,9701,54.7,41.2,58.7,2.5,3.5,89.5,37.8,NA,2.14,2.64,7.4,16.7,83.9,40264,85.2,23.1,4107,0.9,0.9,0,0,0,NA,NA,NA,73615,33437,55344,9.3,5.3,4.1,0,1.5,0.1,65.7,76.4,77.8 +2352,45067,"Marion County, South Carolina",Marion County, South Carolina,24304,28900,38.5,55.8,43,5.2,1.6,77.5,21.1,28.6,2.43,3.32,8.3,37.5,62.2,33440,84,13.8,11788,2.1,0.4,0.1,0.2,1.5,27.3,41.7,21.3,51626,22676,34501,5.9,5.2,13.8,0,7.1,0.3,50.1,77.4,65.5 +2353,45069,"Marlboro County, South Carolina",Marlboro County, South Carolina,21928,26285,38.7,49.3,41.2,5.3,2,79.9,18.6,26.6,2.45,3.61,8.3,29.4,63,35655,81.5,8.7,9729,2.3,0.3,0.2,0,0.2,26.2,32.3,29.4,50984,22016,36293,6.4,7.7,14.1,4,7.3,1.5,47.8,77.1,65.1 +2354,45071,"Newberry County, South Carolina",Newberry County, South Carolina,33254,38121,61.4,29.2,42,5.5,1.5,78.3,19.9,26.8,2.42,2.95,8.1,20.3,73.4,42047,86.3,23.5,15220,6,1,0,0.4,1.3,16,25.9,9.7,79019,33073,59670,6.8,2.9,8.5,3.4,2.7,0.2,66.5,85.3,83.2 +2355,45073,"Oconee County, South Carolina",Oconee County, South Carolina,32568,79566,84.7,6.8,46.7,4.5,2.5,80.6,24.2,24.8,2.34,2.8,9.3,20.1,75.4,43555,87.1,28.5,33653,3.7,1,0.6,0,1.1,16.4,22.9,8.6,87937,37575,60193,7.9,5.6,10.4,5,6.8,0.3,68.6,85.9,82.6 +2356,45075,"Orangeburg County, South Carolina",Orangeburg County, South Carolina,24751,83531,34.3,61.6,40.8,5.3,2.1,78.4,20.6,NA,2.44,3.2,11.1,31.7,65.9,37062,83.3,19.4,32880,2.7,1,0.5,0.6,1.1,23.9,34.5,18.5,61346,25682,43214,6.4,9.4,9.9,3.1,3.4,0.1,60.4,81.7,77.6 +2357,45077,"Pickens County, South Carolina",Pickens County, South Carolina,28891,132604,85,6.2,36.2,4.7,1.9,81.3,17,NA,2.43,2.96,16.5,17.3,70.5,43941,87.3,27.3,51404,4.1,1.7,1.1,0.2,1,17.2,15.6,9.1,82867,33075,59411,5.9,3.1,8.9,4.4,4.4,0.3,73.4,87.9,85.2 +2358,45079,"Richland County, South Carolina",Richland County, South Carolina,35152,418725,41.3,47.3,34.2,5.6,1.2,78.3,13.7,NA,2.36,3.09,25.3,4.4,60.4,46633,92,41.1,165308,5,2.8,2.1,0.8,1.6,16.9,22.5,11.3,89852,37190,61699,9.5,6.3,8.8,3.7,5.2,0.5,79.3,92.5,89.1 +2359,45081,"Saluda County, South Carolina",Saluda County, South Carolina,29654,18958,59.1,22.1,43,5.8,2.3,78.1,20.1,NA,2.48,2.9,3.4,31.4,78.1,42474,84,19.8,7507,15.1,1.5,0.7,0.3,4.6,NA,NA,NA,72636,29590,52957,6.6,2.5,16.1,9.8,13.1,0,60.4,83.3,75.2 +2360,45083,"Spartanburg County, South Carolina",Spartanburg County, South Carolina,34845,338096,67.7,19.8,37.9,6,1.8,76.6,16.2,NA,2.57,3.1,11.8,11.4,72.9,45224,87.8,25.7,128606,6.5,4,1.4,0.5,2.3,14.5,19.5,11.9,85090,33427,64195,6.6,4,10.9,5.3,5.9,0.5,73.4,88,87 +2361,45085,"Sumter County, South Carolina",Sumter County, South Carolina,31607,104853,45.1,46.2,37.3,6.5,2.2,76.1,17.4,NA,2.48,3.15,11.9,17.7,66.8,42192,89.1,23.2,41181,4.2,1.5,1.2,0.5,0.3,16.4,19.8,16.3,72474,29372,55990,13.5,7.3,10.5,1.3,2.7,1,70,84.5,84 +2362,45087,"Union County, South Carolina",Union County, South Carolina,27260,26990,65.2,29.2,44.3,5.4,2.3,78.9,20.9,27.7,2.26,2.93,10.4,22.4,69.3,37020,80.7,13.5,11738,0.9,0.9,0.1,0.1,0.4,22.7,38.4,12.2,58786,26723,41200,8.2,7.9,11.7,8.8,6.9,0.5,50.3,80.5,81.5 +2363,45089,"Williamsburg County, South Carolina",Williamsburg County, South Carolina,24848,30517,32.7,64,44,4.7,2,80.3,22,31.7,2.38,3.13,7.7,42.6,74.6,35743,83.4,15.4,12160,1.3,0.2,0.3,0,0.5,23.6,28.5,25,57757,24533,43471,5.6,5.2,10.8,1,3.3,0.3,57.4,75.3,71.6 +2364,45091,"York County, South Carolina",York County, South Carolina,42313,288559,69.5,18.7,39.4,5.6,1.2,76.1,15,NA,2.55,3.03,15.9,9,73.4,53944,92.5,38.1,111623,4.8,2.9,1.7,0.4,1,8.9,11.3,8.4,110350,43442,83060,7.8,3.9,8.2,2.8,3.4,0.4,81.4,92.5,92.2 +2365,46003,"Aurora County, South Dakota",Aurora County, South Dakota,38597,2573,91.9,1,42.4,6.4,3.3,75.5,20.9,NA,2.38,2.95,5.7,6.9,76.4,45000,91.1,18.7,1042,5.6,1.5,0.4,0,3,NA,NA,NA,101472,43275,74130,5.2,0.3,5.5,5.8,2.4,0,68.6,81.8,81.7 +2366,46005,"Beadle County, South Dakota",Beadle County, South Dakota,33730,19279,71.3,1.1,36.9,8.1,3.6,71.6,18.3,NA,2.5,3.23,19.3,6.1,70.2,43804,85.1,26.4,7485,7.7,2.2,6.9,0.3,7.4,NA,NA,NA,79653,31506,63082,5.7,2.7,5.9,9.9,8.1,0.1,69.1,83.9,86.5 +2367,46007,"Bennett County, South Dakota",Bennett County, South Dakota,29980,3354,37.3,0.2,28.8,8.6,2.1,65.6,15.3,NA,3.23,4.02,5.5,9.7,57.7,39219,86.9,20.3,1024,0.1,0,1.5,14.3,1.4,NA,NA,NA,59699,21005,44569,6.3,11.8,29.1,19.5,24.9,0,63.5,74.3,63.7 +2368,46009,"Bon Homme County, South Dakota",Bon Homme County, South Dakota,28185,7024,86.9,1.9,41.8,4.8,3.8,81.5,21.3,NA,2.25,2.8,7.5,4.7,78.4,34280,89.8,20.1,2426,1.1,2.4,0,0.2,0.2,NA,NA,NA,77164,28003,61275,7.5,2.3,5.7,2.1,6.9,0,70.8,81,82.2 +2369,46011,"Brookings County, South Dakota",Brookings County, South Dakota,33766,34968,88.7,1.2,28,5.7,1.4,78.9,13.3,13.8,2.35,3.14,26.1,5.6,58.9,48819,96.7,44,13490,3,3.2,1.4,1.3,2,NA,NA,NA,87946,34769,67341,4.9,2.6,4.3,2.1,2.6,0,82.7,91.2,89.8 +2370,46013,"Brown County, South Dakota",Brown County, South Dakota,39961,38079,85.7,0.4,37.8,5.8,2.2,76.1,17.6,13.4,2.26,3.01,27.6,5.9,65.7,47418,93.7,33.2,16364,3.6,1.5,1.8,1.1,1.6,NA,NA,NA,90537,39599,70239,6.1,3,7.5,2.9,4.6,0,75.8,87.7,88.1 +2371,46015,"Brule County, South Dakota",Brule County, South Dakota,33397,5261,82,1.4,41.4,5.7,3.1,75.6,20.3,NA,2.54,3.43,13.2,7.5,72.5,45133,90.1,30.2,1932,2.6,2.4,0.7,0.1,1,NA,NA,NA,92236,36063,74043,5.6,0.7,7.6,11.1,6.9,0.2,74.3,79.9,81.2 +2372,46017,"Buffalo County, South Dakota",Buffalo County, South Dakota,23313,1757,21.7,0,26.2,12.1,0.6,63.7,9.3,NA,3.54,4.72,9.3,22.8,52.6,35354,85.6,7,496,0,0,0,2.8,0,NA,NA,NA,54977,17408,47000,11.4,12,42.9,26.8,32.9,3,34.9,68.8,61.5 +2373,46019,"Butte County, South Dakota",Butte County, South Dakota,34215,10538,89.2,0,39.3,6.3,1.7,75.8,19.7,21.7,2.46,3.07,10.2,26,80.5,41169,88.3,19.4,4230,1.6,0.7,0.3,0,0.1,NA,NA,NA,87955,36097,67692,7.8,4.3,15.8,11.9,17,0.1,74.2,82.2,87.7 +2374,46021,"Campbell County, South Dakota",Campbell County, South Dakota,38633,1481,93.7,0,52.4,5.7,3.4,79.1,28.4,NA,2.1,2.63,7.1,12.4,78.1,44643,91.5,29.5,704,4.3,3.8,0,0.3,1.1,NA,NA,NA,92987,42435,65000,6.7,3.5,4.1,0,5.6,0.2,68,76.1,77.6 +2375,46023,"Charles Mix County, South Dakota",Charles Mix County, South Dakota,33295,9281,64,0.1,36.1,8.5,2.6,69.2,18.5,14.2,2.98,3.8,7.5,4.6,73.9,41439,89.6,25.1,3006,1,1.9,0.6,3.7,1.5,NA,NA,NA,81581,29095,64850,7.2,6,18.1,12.6,18.3,0.5,68.8,78.3,80.4 +2376,46025,"Clark County, South Dakota",Clark County, South Dakota,33371,3876,91.8,0.5,40.6,8.7,5.1,70.8,23.4,19.6,2.82,3.61,7,8.8,82.3,36985,90,16.2,1322,2.2,1.9,1.1,0,0.9,NA,NA,NA,88749,34133,62885,8.4,4.1,6.9,3.7,2.8,0,76.5,79.8,84.6 +2377,46027,"Clay County, South Dakota",Clay County, South Dakota,22958,15133,86.7,2,24.5,5,1.7,82.4,12.2,NA,2.28,2.95,36.7,3.4,51.8,46501,93.9,46,5561,1.5,2.1,2.4,1.2,2.2,NA,NA,NA,76464,29412,58794,4.6,3.4,9.3,4.9,3.3,0,81.6,90.9,89.7 +2378,46029,"Codington County, South Dakota",Codington County, South Dakota,38747,28556,91.3,1,39.9,5.5,2.4,76.6,19,14.9,2.26,2.94,19.4,7.1,67.4,44909,92.4,20.9,12361,1.6,0.7,0.1,0.9,0.8,NA,NA,NA,84357,37308,65080,8,1.8,6.7,6.1,5.8,0.2,70.3,86.3,86.9 +2379,46031,"Corson County, South Dakota",Corson County, South Dakota,25750,3859,30.1,0.1,29.9,10.2,1,64.4,12.9,20.4,3.47,4.15,4.7,11,60.5,38056,86.8,19.2,1112,1.3,1.3,0,21.9,0.6,NA,NA,NA,67937,20743,43750,8,24,18.8,3.4,9.9,0.6,66.3,71.4,81.7 +2380,46033,"Custer County, South Dakota",Custer County, South Dakota,42159,8686,90.9,0.4,57.2,3.8,1.6,86.2,32.5,NA,2.1,2.44,5.5,21.9,85.6,50856,95,32.1,4033,2.5,3.3,0.8,0.4,0,NA,NA,NA,109295,50278,81958,15,2.5,10.1,20.3,19.1,0,80.6,85.6,86.9 +2381,46035,"Davison County, South Dakota",Davison County, South Dakota,38793,19936,90.1,0.6,39.8,6.8,3.1,76.3,20.3,13.1,2.2,2.97,25.8,6.2,63,43936,91.8,25,8714,3.8,0.5,0.4,0.9,1.1,NA,NA,NA,82114,36524,61401,7.7,0.3,7.7,8.2,5.9,0,65.7,82.8,85.4 +2382,46037,"Day County, South Dakota",Day County, South Dakota,34497,5460,85.4,0.1,47.1,5.1,3.6,77.1,26.3,NA,2.27,2.98,10.5,2.9,75.8,41890,91.8,21.3,2343,1,0.5,0.2,1,0.5,NA,NA,NA,86182,37817,62270,9.7,1.4,7.5,1.2,3.6,1,69.3,81.4,82.6 +2383,46039,"Deuel County, South Dakota",Deuel County, South Dakota,40316,4318,94.7,0.3,42,5.9,3.3,75.7,21.9,26.6,2.37,3,8.7,2.5,80.6,48653,93.6,24.1,1800,1.5,1.5,0.1,0,0,NA,NA,NA,90704,37556,79556,8.9,1.3,7.7,4.4,5.3,0.1,71.5,81.8,81.7 +2384,46041,"Dewey County, South Dakota",Dewey County, South Dakota,32299,5230,20.2,0.4,27.6,11,0.3,62.4,9.9,NA,3.07,3.73,5.9,17.3,61.5,37557,86.9,17.3,1681,0,0.4,0.1,16,0.1,NA,NA,NA,69239,21940,57928,4.6,14.7,23.5,5.1,15.1,1.4,61.7,76.1,77.6 +2385,46043,"Douglas County, South Dakota",Douglas County, South Dakota,38946,2823,93.1,1.5,41.9,8,4.5,73.8,23.4,NA,2.41,2.9,4.5,2.8,77.7,46277,91.7,22.9,1117,2.5,0.4,0,0,1,NA,NA,NA,93588,37172,78125,8.2,0.2,18.8,25.3,27.9,2.3,72.2,83.6,84.6 +2386,46045,"Edmunds County, South Dakota",Edmunds County, South Dakota,41875,4033,95,0.8,43.6,8.8,3.1,75.8,22.4,20.3,2.47,2.95,4.5,8.2,80.9,44583,94.5,29.5,1589,2,4,0.2,0,0,NA,NA,NA,109208,43546,77266,8,0.5,4.1,0.8,1.4,0,83.8,88,90.6 +2387,46047,"Fall River County, South Dakota",Fall River County, South Dakota,31217,7179,85,0.2,54.5,4.2,3.2,83.1,30.9,20.7,2.01,2.59,16.4,9.7,75.3,41008,91.5,22.2,3443,1,1.7,0.5,2.1,1,NA,NA,NA,74869,36268,61056,15.8,3,15,6.6,13.7,1,73.9,78,83.8 +2388,46049,"Faulk County, South Dakota",Faulk County, South Dakota,33961,2137,96.8,0,43.2,4.3,5,75.2,24.4,NA,2.33,3.24,5.6,6.6,81.9,38693,92.9,18.3,836,0.1,0.5,0,3.9,0.2,NA,NA,NA,89401,36556,58000,6.7,5.1,4.3,0,4,0,69.5,79.5,83.6 +2389,46051,"Grant County, South Dakota",Grant County, South Dakota,35550,7544,91.1,0.6,43.7,5.4,2.2,78.1,23.1,15.1,2.43,2.95,12.5,5,81.6,43564,92.1,25.5,2989,5.3,2.1,0.9,0,2.8,NA,NA,NA,92573,38497,73818,6.8,3.3,9.9,0.9,5.4,0,77.7,82.2,82.9 +2390,46053,"Gregory County, South Dakota",Gregory County, South Dakota,31266,3993,87.4,1,45.7,5.9,3.8,75.6,25.8,16.5,2.4,3.19,9.5,5.8,78.3,39303,91.4,20.9,1635,0.7,0.6,0.7,0.6,0,NA,NA,NA,73414,32510,52432,6.9,3.3,7.9,5.4,3.2,0.6,67.3,79.4,80.2 +2391,46055,"Haakon County, South Dakota",Haakon County, South Dakota,37283,1708,88.3,1.4,47.1,6,5.4,78.1,28.4,NA,2.46,2.98,6.2,18.2,82,41616,96.9,19.5,674,0,3,0,0,0,NA,NA,NA,85748,35643,59231,4.8,0,10.6,17.1,5.5,0,74.9,80.3,71.1 +2392,46057,"Hamlin County, South Dakota",Hamlin County, South Dakota,41904,6288,92.8,0.3,32.5,10,2.7,66.8,14.2,21.8,2.8,3.3,5,3.4,81.5,51021,92.6,24.4,2181,5,1,0,0.1,3.6,NA,NA,NA,101165,35757,83194,6.7,1.8,9.9,7.6,10.1,0,75.9,90.6,86.9 +2393,46059,"Hand County, South Dakota",Hand County, South Dakota,41645,3045,93.7,0.4,43.8,5.9,4.9,75.6,24.7,NA,2.17,2.99,11.7,5.3,64.2,44038,95.4,26.2,1373,1.3,3,1.2,0,1.2,NA,NA,NA,95268,43377,72054,4.6,1.4,4.1,4.7,6.2,0.1,73.7,85.7,85.7 +2394,46061,"Hanson County, South Dakota",Hanson County, South Dakota,43203,3473,93.4,0.4,37.9,7.7,0.8,70.6,15.9,21.9,3.01,3.69,2.5,3.2,88.6,48769,92.3,21.5,1134,1.7,2.8,0,0,0.4,NA,NA,NA,99652,36246,86375,7.6,1.3,8.7,22.4,15.4,0.2,79.5,92.2,91.4 +2395,46063,"Harding County, South Dakota",Harding County, South Dakota,43913,1092,88.6,1.6,48.9,5.8,0.8,78.3,20.1,17,2.13,2.83,7.7,20.5,77.1,45101,94.5,30.4,493,0.6,2,0,0,0,NA,NA,NA,109939,48974,74766,9.5,0.9,3.4,5.4,1.7,0,82.6,86.2,92.7 +2396,46065,"Hughes County, South Dakota",Hughes County, South Dakota,44011,17732,81.2,0,39.3,5.4,1.9,75.4,17.6,NA,2.28,2.83,18.6,10.8,75.2,50051,96.1,35.9,7316,1.8,0.8,0.6,0.6,0.3,NA,NA,NA,93294,38880,78981,9.1,0.6,7.1,9.9,6.3,0.4,81.7,85.6,89.9 +2397,46067,"Hutchinson County, South Dakota",Hutchinson County, South Dakota,40727,7393,91.6,0.1,41.6,8,5.2,73.6,21.7,17.5,2.38,3.04,10.9,1.5,78.3,50630,93.1,25.7,2944,1.6,3,0.2,1,0.4,NA,NA,NA,93830,38061,74459,6.7,1.8,4.2,1.3,2.4,0,69.1,79.2,84 +2398,46069,"Hyde County, South Dakota",Hyde County, South Dakota,37094,1305,87,0,50.9,7.3,4.9,79.6,26.5,NA,2.35,2.87,1.7,5.4,82.2,47070,89.7,21.1,535,0,0,0,0.7,0,NA,NA,NA,87286,35789,74279,3.9,3,6.7,8.7,6.9,0,86.4,80.4,88.6 +2399,46071,"Jackson County, South Dakota",Jackson County, South Dakota,22386,2826,36.2,0.2,33.2,8.7,2.1,66.1,12.5,10.2,3.74,4.53,7.3,14.5,60.8,38988,89.3,11.4,740,0,0,0,11.4,0,NA,NA,NA,49471,17120,26686,3.1,7.6,29.2,11.7,13.7,1.6,61.8,75.4,59.9 +2400,46073,"Jerauld County, South Dakota",Jerauld County, South Dakota,40778,1845,88.7,0,46.5,6,5,76.6,29.1,17.7,2.18,2.77,6.3,8,84.9,46618,93.9,21.1,827,1.6,0.7,0,2.3,0.5,NA,NA,NA,106575,47339,75417,8.8,1.4,6.3,1.6,3,0,72.2,81.7,81.6 +2401,46075,"Jones County, South Dakota",Jones County, South Dakota,34767,1030,82.9,0.8,33.6,13.7,2.9,68.2,21.7,NA,2.9,3.58,8.7,23.4,73.5,39318,95.5,25.3,355,0,2.8,0,6.5,0,NA,NA,NA,80421,29059,64688,5.7,0,11.1,7.6,13.7,0,76.6,86.5,83.7 +2402,46077,"Kingsbury County, South Dakota",Kingsbury County, South Dakota,38223,5210,94.7,0,41.9,6.7,3.5,74.7,23,NA,2.5,3.29,9,6.8,81.4,44088,91.6,22.3,2031,1.2,1.6,0,0.1,0.2,NA,NA,NA,91414,37976,70221,6.9,1.5,6,5,3.8,0,77,87.8,87.5 +2403,46079,"Lake County, South Dakota",Lake County, South Dakota,39251,11052,92.1,0.5,43.7,4.4,3,80.3,23.6,NA,2.27,2.8,15.6,4.3,71.4,44130,93.7,34.7,4632,3,1.7,0.4,0.1,0,NA,NA,NA,100698,43820,73792,7.1,1.1,3.6,0,0.3,0,82.9,87,87.5 +2404,46081,"Lawrence County, South Dakota",Lawrence County, South Dakota,34400,26574,91.1,0.5,43.8,3.8,2.6,83.2,24.1,18.1,2.16,2.85,24.4,10.9,63.9,41847,95.4,34.1,11812,2.2,2.1,1.2,0.7,0.5,NA,NA,NA,90061,42663,66766,10.9,2,10.9,3.6,10.1,0.3,76.9,84.5,88.7 +2405,46083,"Lincoln County, South Dakota",Lincoln County, South Dakota,48465,68286,90.5,2.3,35.8,6.4,1.2,73,14.2,NA,2.55,3.04,23.2,2.1,72,55705,95.9,42.5,26645,2,2.8,0.8,0.3,1,NA,NA,NA,129224,50843,96552,5.9,1.4,3.7,1.5,1.5,0,88.3,92.9,96.1 +2406,46085,"Lyman County, South Dakota",Lyman County, South Dakota,29408,3717,57.4,0,36,8.2,1.2,71.7,18,NA,3.07,4.04,6.3,10.5,72.2,44871,91,25.3,1185,1.2,0.2,0,2.9,0.3,NA,NA,NA,80098,29144,61169,5.8,3.7,21.6,26.1,23.7,2.4,61.5,81,81.8 +2407,46087,"McCook County, South Dakota",McCook County, South Dakota,42766,5732,94.9,0.3,39.9,7.9,2.9,71.7,18.4,26.4,2.48,3.07,8.5,2.1,81.8,50538,93.5,28.7,2218,2.6,1,0,0.1,0.7,NA,NA,NA,97710,37131,80847,8.1,2,8.9,1.6,4.8,0.7,80.9,87.7,87.5 +2408,46089,"McPherson County, South Dakota",McPherson County, South Dakota,33164,2278,96,1.7,48.8,5.8,7.1,78.8,30.8,19.8,2.25,3.02,7.4,4.6,81,40417,81,22.4,896,1.6,15.5,0,0,2.7,NA,NA,NA,90834,40645,62024,10,0.7,5.3,2.1,5.2,1.3,70.8,77.2,74.7 +2409,46091,"Marshall County, South Dakota",Marshall County, South Dakota,39599,4355,86.1,0.3,42.8,7.2,3.4,76.2,22.6,NA,2.56,3.38,8.8,7.6,80.1,43467,92.1,22.4,1646,2.3,1.8,0,0,1.6,NA,NA,NA,101999,42601,72500,8.3,1.1,3.4,4.6,2.6,0.5,75.7,83.7,85.7 +2410,46093,"Meade County, South Dakota",Meade County, South Dakota,36634,30297,87.4,2,37,5.2,1.9,78.3,16.3,21.2,2.47,2.96,9.9,13,72.7,44931,94.6,26.9,11801,2.4,0.9,2.1,0.2,0.2,NA,NA,NA,89185,36301,74161,13.3,2.8,9.3,5.2,5.5,0.2,80.3,85.3,89 +2411,46095,"Mellette County, South Dakota",Mellette County, South Dakota,25343,2043,31.6,0.2,31,7.6,0.5,68.4,15.2,15.8,3.24,4.08,3.1,25.2,59.9,32439,84.6,16.3,616,0,0,0,15.9,0,NA,NA,NA,58700,18423,51364,7.4,17,28.2,2.5,2.6,0,62.8,72.7,70.8 +2412,46097,"Miner County, South Dakota",Miner County, South Dakota,34638,2299,94.6,1,48.9,4.9,4.1,79.6,25.2,NA,2.45,3.09,9.1,0.5,82.3,41115,93.4,16.1,916,1.4,0.9,0,0,0,NA,NA,NA,84107,34056,72589,5.9,1.1,9.2,7.3,10,0,70.7,86.9,79.6 +2413,46099,"Minnehaha County, South Dakota",Minnehaha County, South Dakota,44059,200689,80.9,6.6,35.7,7.2,1.5,74.5,13.6,NA,2.37,3.06,29.9,3.9,63.5,50580,93.1,34.6,82394,4.6,2.5,1.1,3.4,2,8.8,10.5,7,100454,41644,76074,7,2,8.1,5.6,6,0.2,80.7,91.9,92.2 +2414,46101,"Moody County, South Dakota",Moody County, South Dakota,39879,6371,75.5,1.1,40.5,7.3,2,73.1,20,NA,2.51,3.02,13.4,4.4,70.9,45432,94.6,31,2504,3.6,1.1,3.5,1.7,1.5,NA,NA,NA,94107,36544,77500,7.1,2.4,9.2,6.8,9.5,0,76,87.8,86.5 +2415,46102,"Oglala Lakota County, South Dakota",Oglala Lakota County, South Dakota,18415,13587,6.6,0.1,27,9.2,0.7,63.9,7.1,14.9,4.84,5.33,1.9,28.8,53.5,33634,78,9.8,2731,0,0,0,31,0,52.8,55,50.1,50403,11650,34769,3.7,13.1,43.5,18.5,28.8,2,49.7,62.8,57.7 +2416,46103,"Pennington County, South Dakota",Pennington County, South Dakota,36689,112081,80.3,1.3,39.7,6,2.2,77.8,19.6,18.7,2.37,3.02,22.1,8.5,69.1,44318,94.7,34.1,45698,1.7,1.6,0.9,1.5,0.5,12,17.3,8.7,95438,40527,70768,12.8,2.9,10.5,5.3,7.1,0.2,80.6,89.2,90.4 +2417,46105,"Perkins County, South Dakota",Perkins County, South Dakota,32424,3058,94.7,0,43.6,7.2,6.3,77.1,26.1,NA,2.37,2.98,8.6,16,78.9,41314,92.8,21.8,1254,0.2,1,0.9,0.5,0,NA,NA,NA,98722,41539,65455,10.2,4.4,8.3,4.9,8.8,0,80.9,76.5,87.6 +2418,46107,"Potter County, South Dakota",Potter County, South Dakota,37692,2430,90.4,1.9,44.9,5.8,5,77.4,27.9,12.3,2.31,2.95,8.8,5.6,78.8,45075,97.7,26.6,1021,0.7,0.5,1.8,0,0.7,NA,NA,NA,88564,37661,71726,6,3.6,7.6,34.5,12.6,0,75.2,85.7,90.2 +2419,46109,"Roberts County, South Dakota",Roberts County, South Dakota,34432,10219,57.9,0.3,37.9,7.6,2.7,72.2,20.6,16.4,2.73,3.47,7.9,5.7,69.4,42105,91.7,18.3,3657,0.3,0.5,0.3,2.1,0.1,NA,NA,NA,79910,31216,63691,7.6,6.4,19.9,18.3,20.6,0.6,68.2,80.3,81.8 +2420,46111,"Sanborn County, South Dakota",Sanborn County, South Dakota,40060,2370,94.9,0,38.6,8.1,2.2,72.2,20,NA,2.49,3.24,6,8.3,77.6,44175,89.8,19.2,929,3.9,2.4,0,0.6,0.3,NA,NA,NA,85845,34851,69870,7.2,1.3,6.4,0.9,4.7,0,63.4,81.2,80.8 +2421,46115,"Spink County, South Dakota",Spink County, South Dakota,38037,6283,94.6,0.9,45.1,6.6,4,77.9,23.9,16.7,2.47,3.17,9.4,6.4,75.1,42135,92,27.1,2453,1.4,1.5,0,0,0.8,NA,NA,NA,92183,37347,73011,7,1.3,7.8,4.8,3.7,0,73.5,84.9,88.1 +2422,46117,"Stanley County, South Dakota",Stanley County, South Dakota,43106,3012,91,0.1,43.7,3.2,1.7,78.5,22.4,NA,2.37,3.21,13,25.1,79.3,49219,95.4,25.4,1272,1.1,0.8,0,0,0,NA,NA,NA,106448,48110,77000,5.6,0.4,3.7,0,0,2.5,77,87.1,86 +2423,46119,"Sully County, South Dakota",Sully County, South Dakota,43095,1481,92.5,5,51.4,4.7,0.9,80.6,23.8,NA,2.37,2.91,2.9,11.7,76.1,46304,96.2,20.9,624,1.6,1.1,0,3.4,5,NA,NA,NA,106129,47550,70250,4.3,0,7.9,18.9,7.4,0,70.8,81.7,81.4 +2424,46121,"Todd County, South Dakota",Todd County, South Dakota,21542,9293,8.1,0.3,25.4,10.9,0.7,60.7,7.8,NA,3.69,4.58,15.5,14,44.9,36436,82.5,16.6,2474,0.2,0.6,5.7,29.4,2.3,NA,NA,NA,48924,13849,39148,4.9,18.2,23.9,3.8,6.3,0,62.2,79.3,69.7 +2425,46123,"Tripp County, South Dakota",Tripp County, South Dakota,31197,5607,80.7,0.6,45.1,6.7,2.6,77.1,24,NA,2.39,2.91,7.1,10.9,70.8,34302,89.5,19.9,2265,0.8,3.3,0.6,2.2,0.8,NA,NA,NA,75895,31961,58854,4.5,2,12.9,13.5,13.6,0,70.1,83.1,86 +2426,46125,"Turner County, South Dakota",Turner County, South Dakota,40275,8772,94.1,0.8,41.3,5.8,3.2,74.7,20.3,NA,2.42,2.97,9.3,3.7,79,48438,91.7,26.2,3535,2.1,2.5,0.4,0.1,1.4,NA,NA,NA,89745,36569,75283,8.4,1.1,6.7,6.9,6,0.1,75.7,81.9,84.1 +2427,46127,"Union County, South Dakota",Union County, South Dakota,46283,16916,90.4,0.8,40.4,5.3,2.3,75.8,18.9,18.6,2.36,2.83,19.6,4,71.3,54908,94.9,36.5,7124,3.3,2.4,0.3,0.4,0,NA,NA,NA,116720,49563,84137,7.7,2.6,5.2,4.4,4.8,0.5,81.3,89.7,87.9 +2428,46129,"Walworth County, South Dakota",Walworth County, South Dakota,39922,5298,79.7,0.3,41.6,6.9,2.8,76.5,23.2,NA,2.13,2.7,8.8,9.1,74.2,48796,92,31.1,2396,3.3,1.5,0.1,0.5,0.1,NA,NA,NA,85035,37717,62722,8.7,3.5,10.7,19.6,11.6,1,74.7,84.2,85.1 +2429,46135,"Yankton County, South Dakota",Yankton County, South Dakota,40969,23379,88.7,1.5,42.2,5.2,2.4,78.5,20.5,NA,2.2,2.89,18.7,4.9,72.3,46570,92.7,27.7,9792,4.2,1.4,0.3,0.4,0.9,NA,NA,NA,94056,39880,73855,8.4,1.6,6.3,4.5,5.7,0.2,73.4,84.4,86.1 +2430,46137,"Ziebach County, South Dakota",Ziebach County, South Dakota,26211,2410,27.3,0,36.6,7.8,0.6,73.9,11,22.4,3.33,3.61,13.4,23.9,53.9,37629,88.8,14.1,724,0.1,0.6,0.6,31.4,0,NA,NA,NA,76468,26500,47333,6.7,23.4,25.9,6.3,10,1.5,63.8,70.9,77.8 +2431,47001,"Anderson County, Tennessee",Anderson County, Tennessee,34832,78175,87.7,3.4,42,5.2,2.3,78.6,20.1,NA,2.4,2.98,15.3,9.5,71,44891,91.3,26.3,32069,3,1.3,1.5,0.2,0.9,14.8,18.5,13.2,85124,35460,63171,9.3,4.8,8.5,2.3,3.1,0.9,73.7,87.2,88.5 +2432,47003,"Bedford County, Tennessee",Bedford County, Tennessee,34218,51291,79.6,7.1,37.6,6.6,1.2,74.5,14.5,NA,2.67,3.1,11.5,11.7,70.2,40375,84.8,16.9,18953,10.6,0.6,0.5,0.6,2,13.6,22.8,6.1,78968,29468,62197,6.5,3.3,13.3,7.7,10,0,70.4,84.9,85.1 +2433,47005,"Benton County, Tennessee",Benton County, Tennessee,28746,15948,92.5,1.8,47.5,5,2.3,79.2,23.7,25.7,2.28,2.92,2.8,23.9,74.7,39981,87.2,12.4,6928,1.2,1.4,0.1,0,0.2,NA,NA,NA,63604,28169,50435,6.5,5.6,9.1,1.2,3.9,0.3,63.7,82.1,75.4 +2434,47007,"Bledsoe County, Tennessee",Bledsoe County, Tennessee,26502,14905,88.5,5.5,44.9,4.2,2.7,84,20.3,NA,2.85,3.09,4.4,26.1,79.1,31509,79.6,8.8,4812,2.7,0.9,0,0,0.2,NA,NA,NA,62764,23547,49655,7.3,4.9,17.5,11.4,10.6,0,61.6,80.8,82.1 +2435,47009,"Blount County, Tennessee",Blount County, Tennessee,37322,137747,90.4,2.6,43.9,4.9,2.1,80.1,20.8,25.7,2.49,3,10.1,9.9,77,46184,90.7,26.8,54449,2.9,1,0.5,0.2,0.8,8.9,11.2,7.9,95542,38705,74607,8.6,3.7,9.8,8.2,8.8,0.5,77.6,89.7,87.8 +2436,47011,"Bradley County, Tennessee",Bradley County, Tennessee,32404,109743,84.9,5.2,39.3,5.6,2,78.1,17.1,23.1,2.55,3.08,17.1,8.1,67.5,42637,88.4,24.6,41909,5.4,2.7,0.4,0.5,1.7,13.1,15.7,11.4,82060,32249,63789,7.6,4.6,10.3,2.6,6.4,0.4,73.9,87.1,87.9 +2437,47013,"Campbell County, Tennessee",Campbell County, Tennessee,27306,39568,96.1,0.3,44.2,5.4,1.3,79.6,20.8,30.6,2.33,2.83,12.8,14,67.3,40504,82.9,13.2,16709,0.5,0.6,0.1,0,0.4,19.2,21.2,14.2,67185,28414,50260,8.7,5.7,9.7,0.5,3.4,0.1,60.5,83.8,76.7 +2438,47015,"Cannon County, Tennessee",Cannon County, Tennessee,31335,14661,94.1,2.4,40.8,5.8,2,77.7,17.4,NA,2.55,3.16,3.1,12.5,77.2,44596,84.2,16.9,5686,2,0.7,0,0.1,0.7,NA,NA,NA,73507,29745,58092,6.8,2.6,10.4,10.4,6.6,0,64.3,82.7,79.5 +2439,47017,"Carroll County, Tennessee",Carroll County, Tennessee,30379,28461,85.7,8.9,41.6,5.3,2.4,78.1,19.9,26.7,2.43,3.01,9.6,15.5,74.8,40137,88.7,18.9,11258,1.3,0.3,0.1,0,0.1,NA,NA,NA,67708,27126,50391,8.9,3.8,11,1.4,5.2,0.4,67.1,83.3,78.2 +2440,47019,"Carter County, Tennessee",Carter County, Tennessee,28110,56462,94.3,2,45.8,4,2.3,82.1,22.3,NA,2.27,2.87,12.5,17.5,74.1,37031,88.7,20.7,24188,1.6,0.5,0.2,0.5,0.5,18,25.6,12,64727,29232,48435,8.6,6.7,12.9,6.9,7.5,0.2,65.8,81.7,80 +2441,47021,"Cheatham County, Tennessee",Cheatham County, Tennessee,40989,41500,90.4,2.3,41.4,5.6,1.2,78.4,15.7,NA,2.59,3.04,6.6,10.5,81.9,50305,90.3,25.1,15908,4.3,1.1,0.5,0.3,1,NA,NA,NA,97824,38581,82015,9,3.8,9.5,2.6,3,0.3,76.3,89.5,89.3 +2442,47023,"Chester County, Tennessee",Chester County, Tennessee,29215,17452,85,9.8,37.8,5.4,2,78.3,17.7,28.1,2.56,3.07,6.9,14.6,76.6,45005,85.7,19.2,6333,2,0.5,0.3,1.6,0.1,NA,NA,NA,72399,27480,60543,6.2,4.2,9.3,0,2.4,0,60,87.1,86.1 +2443,47025,"Claiborne County, Tennessee",Claiborne County, Tennessee,27189,32221,94.9,0.7,42.5,5.4,1.7,81,19.8,NA,2.3,2.87,8.3,24,71.6,37561,83.1,17.3,13456,0.9,0.3,1.2,0.2,0.2,18.2,21.4,12.9,63952,27552,46587,6.3,4.4,9.9,0.7,2.1,0.2,58.9,81.7,75.2 +2444,47027,"Clay County, Tennessee",Clay County, Tennessee,25933,7621,94.5,0.9,48.8,4.2,1.9,80.3,25,NA,2.35,2.92,8.2,28.6,77.6,37730,83.8,12,3201,2.7,0.6,2.5,0,1.7,NA,NA,NA,55826,23401,44712,7.7,4.1,9.2,8.6,2.1,0.5,54.5,80,75.9 +2445,47029,"Cocke County, Tennessee",Cocke County, Tennessee,27748,36503,93.5,1.5,45.4,5.7,2.1,79.5,21.9,31.8,2.39,2.81,8.2,30,71.2,37295,83.7,11.6,15123,2.7,0.8,0.2,0.1,1.1,20.3,35.3,12.2,63075,27442,48416,8.5,4.5,12.9,3.6,5.8,0.1,54.2,80.6,75.6 +2446,47031,"Coffee County, Tennessee",Coffee County, Tennessee,30911,58940,87.5,4.1,39.2,6.3,1.9,75.7,17.5,24.6,2.56,3.1,12.6,11.9,70.2,40926,87.4,22.9,22794,3.1,0.8,1,0.2,0.7,16.1,20.8,12,74417,29543,60656,10,3.6,10.1,3.3,6.1,0.3,67.2,86.3,80.7 +2447,47033,"Crockett County, Tennessee",Crockett County, Tennessee,32412,13937,73.5,10.7,40.2,5.7,2.1,76.6,19.1,24.1,2.5,2.99,6.7,12.6,68.9,42125,86,15.7,5494,6.6,0.5,0.8,0.1,0.9,NA,NA,NA,79436,32495,59049,6.9,2.9,11.1,1.1,6.3,0.2,59.9,83.9,86.2 +2448,47035,"Cumberland County, Tennessee",Cumberland County, Tennessee,30703,62529,94.9,1.1,53,4.2,2.9,83.2,31.8,NA,2.26,2.71,8,13.9,80.2,37391,89.6,18.5,27447,1.9,1.2,1.2,0,0.1,13.4,18.5,11,73753,32517,58475,11.2,4.6,9.5,10.2,7.3,0.2,74.7,85.8,85.6 +2449,47037,"Davidson County, Tennessee",Davidson County, Tennessee,43544,709846,57.1,25.2,34.6,6.5,1.2,79.1,12.7,NA,2.19,2.94,37.2,1.4,53.4,51937,90.3,47.3,314578,8.5,2.8,2.2,2.9,5.2,13.9,20.7,11.1,110098,48394,75664,4.7,4.2,12.3,5.1,8.7,1.2,81.9,92.2,91.6 +2450,47039,"Decatur County, Tennessee",Decatur County, Tennessee,26530,11499,91.6,3.1,45.9,4.9,1.1,79.6,23.7,NA,2.55,3.15,4.8,17.1,75,39804,84.2,15,4439,1,0.6,0.3,0,0.1,NA,NA,NA,62272,26073,46190,6,8.7,10.4,3.1,3.4,0,59.3,81.7,79 +2451,47041,"DeKalb County, Tennessee",DeKalb County, Tennessee,29704,20551,88.8,1.8,42.2,7.4,2,78.1,18.8,28.7,2.38,2.91,9.7,12.8,68.9,38483,82.7,20,8495,5.4,0.7,0.8,0.1,1.9,NA,NA,NA,66814,28137,48484,8,6.1,8.4,5,4.6,0.5,67.7,82,79.4 +2452,47043,"Dickson County, Tennessee",Dickson County, Tennessee,37575,55197,89.9,4,39,5.9,1.5,77.2,16.6,NA,2.58,3.01,8,11.2,80.3,46916,89.2,21.4,21092,2.4,0.6,0.1,0.2,0.3,9.9,11,11.4,93410,37163,73223,8.4,2.7,8.6,4.8,4.8,1.9,74.9,87.3,85 +2453,47045,"Dyer County, Tennessee",Dyer County, Tennessee,31749,36681,77.8,14.9,40,6.1,1.5,76.1,17.5,20.5,2.43,3.07,13.9,7.7,62.4,44376,89.2,21.6,14884,2.3,0.3,0.3,0.3,1,17.9,20,12.1,89280,37628,54973,6.8,3.4,9.8,2.7,4.9,0,64.4,88,87.2 +2454,47047,"Fayette County, Tennessee",Fayette County, Tennessee,38716,42653,66.6,27,47.2,4.9,1.9,81.7,22.4,NA,2.52,2.99,4.1,8.9,80.7,50574,90.9,26.9,16730,2.3,0.5,0.7,0.2,0.5,NA,NA,NA,105471,42294,84764,8.8,4.6,7.9,3.2,4.8,0.2,74.4,87.8,88.8 +2455,47049,"Fentress County, Tennessee",Fentress County, Tennessee,25732,18948,95.1,0.3,47,5.4,2.7,79.5,23,NA,2.44,3.05,5.8,17.8,80.6,33096,83.2,15.3,7706,1.1,0.3,0.6,0,0.2,NA,NA,NA,56885,24283,50865,9.2,3,10.9,6.9,7.2,0.4,61.8,78.5,83.5 +2456,47051,"Franklin County, Tennessee",Franklin County, Tennessee,32664,43478,88.6,4.6,42.7,5,2.1,80.4,20.5,NA,2.41,3.02,8.6,8.3,76.4,42167,90.8,23.1,17097,2.2,1.3,0.7,0,0,12.7,19.9,10.7,80473,32926,61553,9.9,2.7,8.4,8,4.2,0.4,67.7,85.7,78.9 +2457,47053,"Gibson County, Tennessee",Gibson County, Tennessee,31565,50610,76.1,15,39.8,5.9,1.8,75.6,17.3,NA,2.47,3.06,13.8,9.8,66.8,40405,88.4,19.1,20098,2.6,0.4,1.2,0.4,0.6,13.4,14.5,11.7,72720,29139,59009,7.7,5.5,9.8,4.1,5.2,0.1,65,87.2,86.4 +2458,47055,"Giles County, Tennessee",Giles County, Tennessee,34289,30442,84.6,8.6,43.6,5.7,1.7,79.3,20.8,29,2.54,3.09,9.5,14.2,74,43426,87.6,19.2,11710,3.2,0.6,0.1,0,0.7,NA,NA,NA,83628,34348,61476,9.4,5.2,8.7,1,2.6,0,69,83.1,82.6 +2459,47057,"Grainger County, Tennessee",Grainger County, Tennessee,27356,23929,96,1.1,45.7,4.7,1.3,80.2,21.3,NA,2.49,3.06,5,27.8,78.7,36963,83.8,14.9,9566,1.9,0.3,0.1,0,0.7,NA,NA,NA,68952,28789,51351,7.4,5.1,8.8,1,2.8,0,61.6,80.1,77 +2460,47059,"Greene County, Tennessee",Greene County, Tennessee,29040,70919,92.2,1.9,44.6,4.6,2.2,80.8,21.8,NA,2.46,3.01,7.6,23.1,75.9,39494,86.7,17.7,28093,2.7,1.3,0.2,0.1,0.4,15.2,20.4,12.8,72597,30170,54071,8,5.1,10,2.8,5.5,0.8,61.6,81.5,77.6 +2461,47061,"Grundy County, Tennessee",Grundy County, Tennessee,24347,13665,94.5,0.4,42.9,5.9,1.9,78.7,20.7,NA,2.64,3.25,6.1,24,83.2,32329,80,12.4,5106,0.1,0.2,0,0,0,NA,NA,NA,61536,24411,45573,6.9,6.5,13.2,3.9,8.7,0.9,64.2,81.8,82.5 +2462,47063,"Hamblen County, Tennessee",Hamblen County, Tennessee,31023,64930,82.1,2.7,40.8,6.1,1.7,76.1,17.9,22.2,2.49,3.04,17.4,9.7,68.3,41259,87.1,20.1,25758,10.4,0.7,1.5,0.1,3.6,17.2,23.7,10.8,74136,30120,52794,8.6,5.8,13.6,3.7,5.7,0.4,68.6,83.5,86.3 +2463,47065,"Hamilton County, Tennessee",Hamilton County, Tennessee,38837,370913,71.1,17.6,39.5,5.8,2.1,78.8,18.1,NA,2.39,2.98,23.3,3.1,64.3,48074,91.1,37,151316,5,2.1,1.1,0.4,2.1,12.5,19,9.1,103813,43484,72568,6.9,3.8,9.6,3.1,4.7,1,79.3,90.8,90.4 +2464,47067,"Hancock County, Tennessee",Hancock County, Tennessee,21521,6790,96.8,0.4,41.9,5.4,3.1,78.6,22.4,NA,2.4,3.04,9.6,23.4,72.7,25944,78.8,8.6,2773,1.5,0.2,0.7,0,0.3,NA,NA,NA,57797,24037,31995,5.8,7.4,10.5,0.2,0.8,0,49,69.3,66.6 +2465,47069,"Hardeman County, Tennessee",Hardeman County, Tennessee,28194,25477,54.1,40.2,40.4,5,1.6,80.4,18.6,33.3,2.41,3.19,5.2,17.4,71.2,35647,82.6,11.3,9049,1.8,0.6,0.2,0.1,0,NA,NA,NA,61126,22580,46173,7.5,10.3,8.3,0.8,2.6,0,52.9,83,79.9 +2466,47071,"Hardin County, Tennessee",Hardin County, Tennessee,25847,26939,92.5,3,45.4,4.6,1.7,80,23.2,24.9,2.45,3.01,5.8,13.3,78,38165,84.4,14.8,10833,1.5,0.8,0.4,0,0,20.8,24.2,16.7,66579,27876,49149,7.1,3.8,13.2,4.4,6.4,0.7,56.2,82.9,85 +2467,47073,"Hawkins County, Tennessee",Hawkins County, Tennessee,28033,57446,94.5,1.2,45.9,4.9,1.7,80.8,21.6,NA,2.46,2.94,7.6,20.2,79.5,40077,86.4,16.8,23090,1,0.5,0.2,0.1,0.3,17.1,23.6,12.1,70133,29206,55278,8,8.2,10,1.6,2.9,0.1,65.5,82.4,84 +2468,47075,"Haywood County, Tennessee",Haywood County, Tennessee,25366,17672,43.6,50.1,43.1,5.5,1.6,77.7,20.2,26.6,2.44,3.08,12.7,11.5,57.3,36655,82.8,13.1,7166,2.6,0,0.1,0.2,0.6,NA,NA,NA,60977,25554,43513,4.8,6.1,11.2,6.7,4.9,0,53.3,81.6,76.2 +2469,47077,"Henderson County, Tennessee",Henderson County, Tennessee,28442,27906,87.8,7.6,40.3,5.8,1.7,77.3,18.3,27,2.52,3.21,5.8,20.6,71.5,41393,89.2,14.4,10928,0.9,0.3,0.4,0,0.3,NA,NA,NA,68265,27722,53471,7.2,6.4,11.7,7.7,9,0.6,59.8,81,79.9 +2470,47079,"Henry County, Tennessee",Henry County, Tennessee,30671,32345,87.4,7.2,45.8,4.9,2.1,79.8,23.5,NA,2.41,3.09,7.7,23.3,75.6,37457,88.4,18.6,13205,1.6,1.2,0.5,0,0.2,18.3,29.4,10.1,67325,29136,48540,10.1,2.9,11.3,5.1,8.3,0,67.2,83,81.9 +2471,47081,"Hickman County, Tennessee",Hickman County, Tennessee,31791,25229,90.8,3.6,41.7,5.2,1.7,79.1,17.9,NA,2.58,3,4,21.1,77.7,39122,84.6,13.6,9180,1.4,1.1,0.7,0,0.2,NA,NA,NA,77088,29512,57223,9.5,2.6,9.7,8.8,8.6,0,67.3,85.8,77.2 +2472,47083,"Houston County, Tennessee",Houston County, Tennessee,30009,8293,93,2.9,44.2,4.5,1.6,78.7,20,NA,2.54,3.13,4.1,17.3,81.2,40763,87.3,13.7,3190,1.1,0.3,0,0,0,NA,NA,NA,68009,30169,54475,10.9,6.5,12.7,3,1.9,0,62.4,79.2,81.7 +2473,47085,"Humphreys County, Tennessee",Humphreys County, Tennessee,29908,19074,90.6,1.9,43.7,5.5,2.9,78.3,20.6,NA,2.73,3.28,6.1,14.2,79.5,37865,87.7,16.4,6864,1,0.3,1.7,0,0,NA,NA,NA,78658,30868,59333,7.7,10.7,11,13.3,7.1,0,69.4,80.6,82.5 +2474,47087,"Jackson County, Tennessee",Jackson County, Tennessee,25913,11882,93.3,0.5,48,4.7,1.6,81.7,23.2,NA,2.49,3.23,2.5,24.5,83.3,36481,82.6,13.5,4695,3.1,1.2,0.1,0.9,0,NA,NA,NA,63542,27572,41475,8.4,6.9,9,1,3.8,0,59.6,73.6,78.7 +2475,47089,"Jefferson County, Tennessee",Jefferson County, Tennessee,29797,55835,91.7,1.5,44.1,4.6,2,80.7,20.3,NA,2.54,2.96,9,19.9,74,41181,88.9,21,21351,2.9,1.1,0.7,0.1,0.7,11.5,16.3,8.2,87614,34953,63084,9.5,4.6,9.6,7.4,4.3,0,67.7,87.8,84.9 +2476,47091,"Johnson County, Tennessee",Johnson County, Tennessee,27146,18073,89.1,3.7,46.4,4.1,2.2,83.2,23.3,25.7,2.29,2.66,6.3,20.4,78.6,36014,81.3,15.7,7172,3.7,0.8,0.6,0,0.7,NA,NA,NA,69081,28786,52152,9,3,12.5,9,10.2,0,62.2,77.9,79.5 +2477,47093,"Knox County, Tennessee",Knox County, Tennessee,37114,487401,81.2,8.1,37.3,5.5,1.7,78.9,16.1,22.2,2.41,3.03,23.5,3.7,64.9,49051,92.3,40.2,197298,4,2.2,1.5,1,1.5,12.2,13.7,9.6,101286,41957,71662,7,3.3,8.4,2.2,3.9,1,78.7,91,88 +2478,47095,"Lake County, Tennessee",Lake County, Tennessee,20227,6691,66.1,22.3,41.6,4.1,1,84.9,15.8,21.4,2.23,2.89,27.1,3.4,45.3,29920,71.8,9.4,2022,1.9,0.4,0,0.1,0.4,NA,NA,NA,48831,16275,30500,6.7,5,15.1,3.7,2.8,0,51.3,78.5,75.1 +2479,47097,"Lauderdale County, Tennessee",Lauderdale County, Tennessee,29155,24933,59.7,33.9,39.4,5.8,1.8,78,16.3,25.9,2.47,3.01,10.6,12.4,62.5,40793,82.8,10.9,9214,2,0.7,0.4,0,0.5,NA,NA,NA,66056,25716,49205,5.6,4.7,10,1.3,2.7,0.4,60.2,83.4,83.9 +2480,47099,"Lawrence County, Tennessee",Lawrence County, Tennessee,30138,44901,93.4,1.3,39,6.4,1.7,74.9,17.7,25.9,2.66,3.25,9.5,10.9,76.1,40414,85.5,15.5,16704,1.5,2.2,0.1,0,0.2,15.3,17.9,13.2,69737,27208,53233,5.7,5.6,14.9,12.6,12.1,0.9,64.7,83.5,81.8 +2481,47101,"Lewis County, Tennessee",Lewis County, Tennessee,29529,12784,93.3,0.8,42.2,5.8,1.6,78.7,20.5,NA,2.43,3.02,2.5,25.9,80.5,42019,85.4,10.9,5153,1.7,0.3,0,0.3,0,NA,NA,NA,69487,29149,49477,7.8,4.1,11.1,4.9,11.1,1.1,59.2,84.5,78.3 +2482,47103,"Lincoln County, Tennessee",Lincoln County, Tennessee,35391,35617,86.9,5.8,43,6,2,77.8,19.6,31.3,2.41,2.97,7.4,10.7,77,43793,87,19.3,14589,2.4,0.9,0.6,0,0.3,NA,NA,NA,84108,34761,63115,7.9,3.2,10.5,8.6,7.9,1.1,63.9,83.4,77.8 +2483,47105,"Loudon County, Tennessee",Loudon County, Tennessee,38361,56996,88.4,1.4,48.7,4.6,2.7,80.9,27,24,2.41,2.86,6.7,7.5,80.9,45445,88.9,28.6,23438,4.9,1.4,0.4,0.1,1.5,12.6,23.5,6.4,101958,42817,80296,8.9,2.5,8.2,1.4,4.4,0.2,75.6,89.4,89.4 +2484,47107,"McMinn County, Tennessee",McMinn County, Tennessee,31465,54135,89.3,3.1,42.5,5.3,1.9,78.8,20.1,24.4,2.47,2.95,9.4,17.7,74.7,42589,86.2,17.5,21471,3,1.8,0.3,0.5,0.9,13.3,18.3,10.7,76417,30669,59674,8.7,4.4,10.4,3.7,4.4,0.6,67.4,86.1,86.2 +2485,47109,"McNairy County, Tennessee",McNairy County, Tennessee,28549,25933,90.9,5.3,43.1,5.5,1.6,78.4,21.1,NA,2.61,3.18,3.3,15,78.7,41910,87.4,11.8,9806,0.9,1,0,0,0.2,NA,NA,NA,68636,26747,50714,6.4,5.4,9.7,10.9,5,0.1,58.6,82.9,83.6 +2486,47111,"Macon County, Tennessee",Macon County, Tennessee,30476,25793,90.3,0.8,38.3,6.2,1.2,75,15.3,32,2.77,3.35,9.2,20.4,71.8,37691,81.6,11.8,9200,2.8,0.2,0,0,1.5,NA,NA,NA,72710,27065,56269,6.6,3.4,10.9,1.3,1.5,0.2,62.9,82.1,83.5 +2487,47113,"Madison County, Tennessee",Madison County, Tennessee,30492,98845,54.5,36.6,38.3,6,1.5,77.5,17.6,19.8,2.4,3.02,19.9,5.3,62.5,40931,90.3,26,39534,3.1,0.6,0.7,0.4,1.4,18.6,29.7,11.5,78567,32221,58189,6.7,7,10.2,4.9,5.9,0.7,69.8,87.9,87.7 +2488,47115,"Marion County, Tennessee",Marion County, Tennessee,28158,29010,91.3,2.8,43.7,5.4,1.7,79.3,20.5,NA,2.5,2.91,3.3,20,79.8,39150,82.3,16.5,11529,1.1,0.2,0.1,0.3,0.3,NA,NA,NA,73573,29313,58103,8.5,7.8,9.8,1.7,3.8,0.9,68.3,84.1,83.1 +2489,47117,"Marshall County, Tennessee",Marshall County, Tennessee,37810,35276,87.6,4.1,39.6,5.8,1.3,76.6,16.4,29.6,2.63,3.16,6.5,7.2,77.4,47322,90.5,21,13268,4.5,0.4,0.7,0,0.5,NA,NA,NA,92668,35984,70829,8.2,3.8,8.2,1.3,3.6,0.9,78.4,89.2,88.6 +2490,47119,"Maury County, Tennessee",Maury County, Tennessee,39896,104855,80.1,10.6,39.2,6.3,1.2,76.8,16.8,28.6,2.51,3.03,16,7.5,71.3,48354,92.5,26.5,41260,5,0.7,0.8,0.1,0.8,9.9,14.1,8,92848,37158,74162,7.4,2.4,8.7,10,6.4,0.4,82.9,92.2,89.7 +2491,47121,"Meigs County, Tennessee",Meigs County, Tennessee,28285,13076,90.7,2.3,45.5,4.8,1.3,79.6,21.3,NA,2.45,3.05,2.9,34.9,76.9,41166,82.9,12,5279,1.1,1.4,0.2,0.4,0.5,NA,NA,NA,75683,30197,58395,8.2,6,11.8,7.5,7.1,0,61.7,86.8,80.3 +2492,47123,"Monroe County, Tennessee",Monroe County, Tennessee,29107,47054,89,1.8,44.8,5,1.9,79.3,21.8,NA,2.41,2.87,9.8,21.9,72.2,39907,86.3,15.8,19283,2.9,1.4,0.3,0.2,0.2,16.1,23,16.7,70427,29107,56648,7.8,5.1,11.9,5.2,6.7,0.1,62.2,81.9,83.9 +2493,47125,"Montgomery County, Tennessee",Montgomery County, Tennessee,40022,227957,64.3,20,31.7,7.9,0.8,73.1,9.8,27.2,2.65,3.17,19.6,3.2,62.9,47177,94.3,31.7,84321,8,2.7,2.6,0.8,1.8,11.6,14.8,7.8,88167,33645,72365,19.3,5.3,8.9,3.7,4.7,0.7,84.2,94.4,92.6 +2494,47127,"Moore County, Tennessee",Moore County, Tennessee,36705,6611,92.2,2.9,46.2,4.8,2.4,80.6,21.4,NA,2.47,2.9,3,12.5,82.3,45417,89.1,24.7,2638,1.3,0.5,0,0,0,NA,NA,NA,89343,37193,66687,11.9,5.4,6.1,0,1.4,3.1,64.7,84.8,73.1 +2495,47129,"Morgan County, Tennessee",Morgan County, Tennessee,31103,21193,92.6,4.6,42.5,4.6,0.9,80.9,18.9,NA,2.65,3.16,4,25.1,84.3,45356,83.4,13.7,7188,1.9,2.1,0,0.1,0,NA,NA,NA,79735,30576,57408,7.9,4.9,10.3,7.7,4.5,0.2,65.2,82.7,83.7 +2496,47131,"Obion County, Tennessee",Obion County, Tennessee,29745,30570,80.2,10.6,41.9,5.5,2.2,78,20.5,NA,2.41,3.12,10.8,11.3,67.1,39859,85,18.1,12516,3.5,0.5,0.4,0,0.3,NA,NA,NA,71392,29891,53102,6.2,3.5,8.5,11,4.3,0,59.5,82,82 +2497,47133,"Overton County, Tennessee",Overton County, Tennessee,28681,22807,95.9,1.4,43.1,5.1,1.9,79,20.2,NA,2.51,3.08,3.9,19.1,77.5,37451,81.8,13.5,8992,0.9,1.3,0.3,0,0.1,NA,NA,NA,72901,30191,46159,5.5,1.9,8,3.9,6.2,0.2,61.3,80.3,76.2 +2498,47135,"Perry County, Tennessee",Perry County, Tennessee,26561,8561,92.2,0.5,41.6,6.3,3.2,77.5,22.1,NA,2.77,3.28,2.4,26.4,75,41351,82.4,12.7,3040,1.7,3.5,0.1,0.3,0.1,NA,NA,NA,64784,25563,50489,7.4,8.8,16.1,0,7.5,0.7,56,70.3,76.6 +2499,47137,"Pickett County, Tennessee",Pickett County, Tennessee,28269,5062,96,0.4,51.7,4.1,4.3,82.6,27.9,27.5,2.36,3.19,5.7,19.7,82.3,41645,81.4,17.2,2106,6.6,0,0,0,0,NA,NA,NA,60117,28784,44591,12.3,3.7,6.8,1.2,0.3,0,61,74.7,76 +2500,47139,"Polk County, Tennessee",Polk County, Tennessee,29979,17702,90.9,0.8,46.2,4.6,1.6,80.8,20.7,NA,2.45,2.92,4.1,23.3,84.1,42415,85.7,14.7,7144,1.2,1.6,0.1,0.3,0,NA,NA,NA,81605,33714,60227,6.4,4.1,15.7,14.2,11.8,0,62.2,81.3,83.9 +2501,47141,"Putnam County, Tennessee",Putnam County, Tennessee,30367,81366,87.7,2.5,36.1,5.5,1.6,79.1,16.4,NA,2.36,2.92,24.6,8.4,60.7,41141,88.8,29.2,33057,4.8,1.2,0.7,0.5,1.1,16.9,21.4,14.6,75297,30508,56537,6.5,3.4,9.5,5,6,0.3,77.6,87.9,85.5 +2502,47143,"Rhea County, Tennessee",Rhea County, Tennessee,29947,33299,89.1,1.6,41,6.2,1.3,77.9,19.3,NA,2.46,2.8,10.8,19.1,73,40403,84.1,17.4,13243,4.6,0.8,0,0,0.8,15.3,19.5,12,70688,28160,58133,9.1,5.8,11.4,1.3,5.1,0,69.4,88.9,88.9 +2503,47145,"Roane County, Tennessee",Roane County, Tennessee,34426,54403,91.9,2.4,47.4,4.5,2.3,81.2,23.2,28.6,2.39,2.9,9,12.4,77.6,42893,89.3,22,22539,2,1.3,0.7,0.2,0.3,12.7,16.5,11,86288,36357,66218,9.3,4.8,7.6,3.3,1.9,0.1,70.5,86.8,87.1 +2504,47147,"Robertson County, Tennessee",Robertson County, Tennessee,40414,74291,81.5,7,39.1,6.3,1.1,75.9,14.8,NA,2.65,3.06,7.4,7.7,77.2,48151,88.9,21.1,27755,6.7,0.8,0.6,0.5,1.6,10.2,13.5,8.9,95255,36135,78439,6.9,3,9.6,4.5,5.4,0.5,74.9,89.9,86.4 +2505,47149,"Rutherford County, Tennessee",Rutherford County, Tennessee,41382,351591,68,15,34,6.3,1,75.2,10.9,NA,2.76,3.26,21.4,2.5,65,50201,92.4,34.4,125861,7.9,2.2,3,2,4,9.2,10.6,7.6,101352,37294,82588,6.2,3,9.8,3.8,5.2,0.6,84.5,94.3,94 +2506,47151,"Scott County, Tennessee",Scott County, Tennessee,24416,21969,96.6,0.4,40.7,6,1.1,76.5,16.9,NA,2.51,3.07,5.7,25.5,71.8,37453,80.5,10.2,8638,0.4,0,0.4,0,0,NA,NA,NA,55691,23544,42679,7,6.7,11.1,7,7.9,0.6,55.8,79.8,76.6 +2507,47153,"Sequatchie County, Tennessee",Sequatchie County, Tennessee,25213,16409,93.3,0.5,44.7,5.5,1.9,80,21.1,NA,2.64,3.07,6.3,21.3,74.7,32380,81.7,18.9,6121,2.2,0.5,0.1,0,0.5,NA,NA,NA,68308,26368,52260,9.5,4.8,12.4,8.2,8.7,0,68.9,83.7,82 +2508,47155,"Sevier County, Tennessee",Sevier County, Tennessee,32210,98802,87.7,0.9,43.6,5.4,1.7,79.1,19.9,NA,2.49,3.01,14.4,15.1,72,37745,87.8,21.4,39221,5.9,2.2,0.4,0.1,1.5,13.6,20.3,10.2,84059,33686,63829,9.1,3.2,13.3,4.6,6.3,0.7,70.3,88,83.5 +2509,47157,"Shelby County, Tennessee",Shelby County, Tennessee,36698,922195,35,52.8,35.8,6.9,1.4,74.5,14.4,NA,2.52,3.3,25.1,1.1,54.6,45451,89.8,34.2,360590,5.5,1.9,1.7,1.1,2,17.5,25.8,13.3,93795,37666,62337,6.3,6.8,12.1,7.2,7.1,1.1,72.5,89.3,87.2 +2510,47159,"Smith County, Tennessee",Smith County, Tennessee,34082,20196,90.8,1.9,40.7,5.6,1.5,77.6,16.4,32,2.63,3.11,7.1,18.3,75.5,44184,87.3,17.9,7619,2.5,1.3,1.1,0.1,0.2,NA,NA,NA,85700,32720,62799,6.4,3.2,8.5,2.4,3.2,0,73.1,86.5,86.5 +2511,47161,"Stewart County, Tennessee",Stewart County, Tennessee,30541,13859,93.2,1.3,44.6,5.6,1.8,78.4,21,NA,2.65,3.61,3.5,19.3,83.6,40429,89.9,16.2,5173,1.4,0.6,2.6,0,2.3,NA,NA,NA,73864,29881,62052,13.4,2.9,9.4,14.8,7.4,1.4,64.9,80,81.7 +2512,47163,"Sullivan County, Tennessee",Sullivan County, Tennessee,32330,159693,93.1,2,45,4.8,2.2,80.8,22,21.7,2.3,2.87,15.5,10.4,72.9,41572,89.6,26.6,68408,2,0.8,0.3,0.2,0.3,14.9,24.5,10.3,80669,35143,56802,8.7,5.7,9.1,2.1,1.8,0.2,72.1,84.6,86.9 +2513,47165,"Sumner County, Tennessee",Sumner County, Tennessee,41646,200553,80.9,8.6,39.7,5.8,1.5,76.7,16.4,NA,2.59,3.07,16.8,5.4,72.2,51740,91.8,32.6,76706,4.8,1.5,1,0.4,1.4,9,12.9,8.5,108835,42482,86005,7.4,3,7.6,3.5,4.3,0.7,82.1,92,92.1 +2514,47167,"Tipton County, Tennessee",Tipton County, Tennessee,37638,61339,74.7,18.6,38.7,5.6,1.4,76.1,15.3,NA,2.69,3.14,5.8,10.2,77.2,47202,89.3,18.5,22544,2.1,1,0.7,0.1,0.1,11.6,17.3,7.9,87322,33312,71736,9.2,4.7,8.8,3.3,5,0.6,72.2,87.6,85 +2515,47169,"Trousdale County, Tennessee",Trousdale County, Tennessee,31855,11805,80.5,11.3,34.6,5.3,0.6,83.5,12.6,NA,2.52,3.06,8.8,20.7,74.5,47415,85,10.1,3658,9.4,0,0,0,0.7,NA,NA,NA,75095,26692,63190,6.4,0.3,7.2,0,2.8,0,65.6,85.6,84.8 +2516,47171,"Unicoi County, Tennessee",Unicoi County, Tennessee,27344,17779,92.5,0.5,47.4,4.7,2.4,81.7,23.1,NA,2.22,2.84,11.7,18,72.8,41172,88,20,7803,4.1,0.2,0,0.1,0,NA,NA,NA,65839,29087,50381,9,5.6,9,0.1,1.5,0,72.9,78.2,82.3 +2517,47173,"Union County, Tennessee",Union County, Tennessee,30918,20141,95.2,0.6,42.4,5.3,1.2,78.4,18.4,NA,2.57,2.89,2.6,26.1,80.4,43143,83.3,14.5,7771,1.2,1,0,0,0.1,NA,NA,NA,76005,29725,61858,6.4,3.9,8.2,1.5,2.9,0.4,65.4,83.7,77 +2518,47175,"Van Buren County, Tennessee",Van Buren County, Tennessee,32010,6293,95.1,0.4,47.2,5.4,1.5,79.1,24,NA,2.52,3,3.6,19.2,84.7,38837,84.2,14,2462,1.9,3.3,0,0.5,2.3,NA,NA,NA,69959,27404,60281,9,1.5,14.5,26.6,22,0.3,63.6,83,85 +2519,47177,"Warren County, Tennessee",Warren County, Tennessee,29820,41587,86.1,2.8,40,5.8,1.8,76.5,18,27.2,2.54,3.15,13,12,70.9,39082,84.8,15.1,16132,5.8,1,0.1,0.1,1.4,15.3,19.1,11.6,72310,28619,54088,7.1,3.1,11.2,2.1,3,0.3,63.9,84.4,82.1 +2520,47179,"Washington County, Tennessee",Washington County, Tennessee,31769,134693,87.7,3.8,40.3,4.7,2,81.2,18.6,21.5,2.31,2.9,23.2,7.6,64.4,43593,91.1,33.5,56234,2.9,1,0.9,0.5,1.2,15.8,17.3,11,85716,36493,61051,8.9,4.7,10.5,1.6,4.4,0.2,77.7,89.5,87.7 +2521,47181,"Wayne County, Tennessee",Wayne County, Tennessee,28014,16251,89.2,4.2,44.3,3.8,1.6,82.8,19.3,NA,2.51,3.06,5.2,22.7,81.5,38732,83.5,12.5,5734,1.2,1.5,0.3,0,0.4,NA,NA,NA,76998,29526,52824,7.8,3.1,13,1.5,6.1,0,61.5,80.3,81.2 +2522,47183,"Weakley County, Tennessee",Weakley County, Tennessee,28833,32959,86.7,7.4,37.9,4.8,2,80.9,18.1,NA,2.32,2.86,15.5,11.9,66.4,40801,88,21.6,13274,1.7,0.8,0.5,0,0.7,19.3,26,13.6,63928,26807,49502,7.1,2.4,9.3,5.2,2,0.2,67.8,83.9,82.4 +2523,47185,"White County, Tennessee",White County, Tennessee,27786,27764,93.1,1.2,43.3,5.7,1.5,78.3,20.7,25.1,2.49,3.03,4.8,16.8,77.7,35819,83.4,14.2,11001,2.1,1,0.2,0,0,NA,NA,NA,70030,28427,52206,8.3,4.4,11.4,8.8,7.4,0.5,68.2,83,83.9 +2524,47187,"Williamson County, Tennessee",Williamson County, Tennessee,57045,254609,82.8,3.8,40.3,5.4,1.3,73.7,14.3,NA,2.8,3.2,13.8,1.7,79.8,75237,95.9,61.8,90716,4.8,3.2,3.1,0.5,0.6,4.5,4.4,5.1,177673,64632,131202,5.5,2,4.2,1.2,2.1,0.3,92.3,95.4,95.5 +2525,47189,"Wilson County, Tennessee",Wilson County, Tennessee,45087,153587,82.1,7.2,39.9,5.9,1.2,76.5,15.8,30.1,2.68,3.08,12.8,4.9,76.8,55541,93.5,37.2,56609,4,2.1,1.4,0.9,1.2,7.6,9.1,7.2,120719,45461,94048,7.7,3.1,7,2.8,4.9,0.5,83,92.3,91.7 +2526,48001,"Anderson County, Texas",Anderson County, Texas,29736,57825,60.2,18.8,39.5,5.2,0.8,80.6,15,24.6,2.72,3.2,9.1,22.4,70,41638,86,14.5,17142,9.4,0.7,0.6,0.9,1.3,17.1,27.1,8.5,77422,25793,58846,7.8,5.5,18.3,13.4,13.3,0.6,69.9,88.1,83.7 +2527,48003,"Andrews County, Texas",Andrews County, Texas,39241,18518,59.6,1.9,33.1,8.1,0.8,69.2,9.7,NA,2.71,3.18,6.3,22.8,76.3,52843,76.9,19.9,6780,47.1,0,0.3,0.8,9,NA,NA,NA,102475,36935,76902,3.5,2.4,22.4,13.9,19.7,3,69.8,90.4,90.4 +2528,48005,"Angelina County, Texas",Angelina County, Texas,30359,86791,67.1,12.2,37.8,6.5,1.6,74.5,16.5,21.6,2.6,3.11,13.8,18.8,64.3,41629,84.9,18,32183,15.2,0.3,1,0.6,2.3,16.3,24,9.9,75570,28858,58847,7.6,4.6,18,7.1,12.4,0.5,71,86.4,88.9 +2529,48007,"Aransas County, Texas",Aransas County, Texas,33336,24449,80.7,1.1,51,4.4,2.6,82.6,28,NA,2.06,2.53,13.4,20.8,77.7,41902,91.4,27.6,11738,17.1,1.6,0.8,0,1.5,NA,NA,NA,87292,41138,61754,10.9,6.2,13.7,15.6,13.3,0.1,74.7,89.3,87.5 +2530,48009,"Archer County, Texas",Archer County, Texas,39922,8734,91.1,0.8,43.1,4.8,2.6,77,21,NA,2.52,3.06,3.5,9.6,85,49198,91,25.2,3439,5,1.7,0,0,1.3,NA,NA,NA,98442,39715,71958,8.9,3,17,18.3,16.7,2.4,75.1,87.2,84.2 +2531,48011,"Armstrong County, Texas",Armstrong County, Texas,38889,1883,92.6,0.5,43,6.3,3.5,78.3,26,NA,2.43,2.77,0.7,6.8,81.8,57813,94,21.4,754,6.5,2.1,0.8,0,0.7,NA,NA,NA,83081,33883,68462,12.5,0.8,7.4,0,0.5,0,78.1,89.1,91.9 +2532,48013,"Atascosa County, Texas",Atascosa County, Texas,33211,50058,54.5,1.3,36.1,6.8,1.7,73.2,15,NA,2.98,3.47,4.6,34.5,77.4,42627,80.9,15.3,16635,46.2,1.4,0.1,0.1,7.1,16.1,17.5,15.4,83533,28648,69413,8.6,3.9,21.4,14.1,15.3,2.5,60.3,90.7,82.8 +2533,48015,"Austin County, Texas",Austin County, Texas,36850,30712,70.8,9.3,41.6,5.7,1.4,76.4,20.9,28.7,2.5,2.88,6.2,22.4,77.5,51620,88.5,23.4,12174,19.5,4,0.5,0,1.8,NA,NA,NA,96058,37915,75994,4.2,4,15.1,8.7,15.2,2.3,68.6,93,80.9 +2534,48017,"Bailey County, Texas",Bailey County, Texas,30051,7044,71,0.9,35.1,7.2,2.3,72,17.4,14.7,3.06,3.49,6.2,6.6,78.9,53865,71.9,16.7,2250,55.2,1.6,0,0,13.8,NA,NA,NA,79645,30860,70625,1.7,0.5,33.7,20.2,45.5,0,65.7,79.3,80.3 +2535,48019,"Bandera County, Texas",Bandera County, Texas,35487,21589,79.1,1.1,53.4,4,2.1,83.3,29.4,40.4,2.37,2.86,2.4,31.6,86.2,37931,91.9,25.5,8943,14.6,2.4,0.4,0,1.8,NA,NA,NA,91805,39552,69703,12.4,8,12.1,3.2,9.1,0.8,75.7,88.7,88.5 +2536,48021,"Bastrop County, Texas",Bastrop County, Texas,39391,102370,56.6,5.7,37.5,6.5,1.2,74,15.3,35.4,2.83,3.37,6.2,26.8,75.7,47873,81.9,23.3,35164,29.1,1.1,0.7,0.2,4.5,12.4,19.1,9.9,98377,34363,82730,9.6,4.2,20.9,10.4,16.3,4.1,76.2,88.5,86.1 +2537,48023,"Baylor County, Texas",Baylor County, Texas,27242,3464,80.9,0.8,47.5,3.9,3,76.7,26.4,NA,2.19,2.68,10.2,6.3,66.8,38839,82.5,28.4,1548,13.1,0,1.7,0,0,NA,NA,NA,61655,28579,42313,8.1,4.2,21.5,11.9,21,3.6,71.4,78,82.6 +2538,48025,"Bee County, Texas",Bee County, Texas,28528,31000,57.3,6.1,35.8,5.1,1.6,79.5,12.6,NA,2.8,3.58,10.8,16.2,72.1,39370,81.6,11.4,8581,45.5,0.9,0.2,0.1,4,NA,NA,NA,71739,22771,56075,6.4,6,18.1,4.8,9.9,0.1,67.8,85.9,77.7 +2539,48027,"Bell County, Texas",Bell County, Texas,36231,379811,52.1,23.3,32.1,7.9,1.3,72.4,11.6,NA,2.67,3.27,24.4,5.6,56.2,44228,91,27.2,138557,17.1,3,3.5,1.1,2.9,14.6,20.7,10.4,87878,33558,66051,19.4,6.9,14.4,5.3,7.7,1.7,82.4,91.1,89.9 +2540,48029,"Bexar County, Texas",Bexar County, Texas,36280,2037344,49.4,7.9,34.6,6.5,1.4,75.1,12.7,25.8,2.7,3.38,28.4,2.7,59.1,45263,86.4,31.5,740402,40.8,2,2.4,0.7,6.2,14.7,20.5,12.5,95613,35795,70571,9.7,5.2,15.9,6.7,9.3,1.5,78.3,93,90.3 +2541,48031,"Blanco County, Texas",Blanco County, Texas,39390,12008,80.7,0.8,50.3,4.3,2.7,82.1,25.6,NA,2.38,2.87,8.8,10.5,74.2,48097,92.5,34.3,5001,8.6,0.7,0.3,0,0.7,NA,NA,NA,110438,47358,87564,8,3.8,16.1,15.6,14.3,0.7,79.6,91.5,89.9 +2542,48033,"Borden County, Texas",Borden County, Texas,37500,723,85.2,1.5,30,8.6,2.5,66.8,13.6,NA,3.03,3.29,0,8.4,63.6,43889,94.6,35.3,239,4.2,4.6,0,0,0,NA,NA,NA,107695,36074,64250,6.6,0.3,1.4,0,0,0,66.1,96.2,85.8 +2543,48035,"Bosque County, Texas",Bosque County, Texas,35970,18546,79.4,1.4,46.3,5.1,2.1,79.1,25.3,29.7,2.44,2.88,4.1,16.3,75.9,43881,88.2,20.7,7467,15.6,1,0.2,0.1,1.2,NA,NA,NA,88401,35879,69339,9.1,3.8,17.8,10.8,14.6,0.9,69.9,85.6,82.2 +2544,48037,"Bowie County, Texas",Bowie County, Texas,32809,92321,65.7,24.9,38.4,6,1.8,76.1,17.3,NA,2.49,3.13,18.4,12.2,62.7,43451,90,22.1,34801,4.9,1.4,1,0.1,1.1,16.3,20.9,13.9,81415,31100,59295,8.5,3.2,15.4,7.1,9.5,0.8,65.8,82.3,80.1 +2545,48039,"Brazoria County, Texas",Brazoria County, Texas,47399,381650,53.5,15.8,36.5,6.4,1.2,74.1,12.5,NA,2.81,3.31,14.4,8.5,74,62043,89.2,32.1,131184,22,2,5.1,1.3,3.9,7.3,8.6,7.8,120034,41681,95155,6.1,3.8,12.8,6.2,7.5,1.3,84.4,93.8,93.2 +2546,48041,"Brazos County, Texas",Brazos County, Texas,29532,237980,66.4,10.8,26.8,5.6,1.2,79.7,9.8,18.5,2.49,3.13,36.3,5.8,46.8,46354,89,42.5,88415,18,3.4,4.4,0.9,4,23.9,20.2,8.2,88284,33928,58388,4.3,3.9,11.9,5.4,7.3,1.2,83.3,94.3,84.8 +2547,48043,"Brewster County, Texas",Brewster County, Texas,38347,9464,75.4,0.3,42.2,4.1,2.7,82.9,25.3,16.5,1.84,2.58,12.2,13.9,57.2,45889,90,45.3,4929,35.4,1.3,0.6,0.8,8.2,NA,NA,NA,72031,36716,52612,8.2,2.4,10.6,17.9,8.2,0,69.5,81.9,79.6 +2548,48045,"Briscoe County, Texas",Briscoe County, Texas,28750,1223,84.5,5.4,50.8,3.9,2,82.2,28,NA,2.2,3.04,2.5,7.2,78.2,35737,80.5,19,555,18.9,1.8,0,0,3.4,NA,NA,NA,69058,40723,41188,7.2,0,18.1,11,5,0,61.3,72.8,69.5 +2549,48047,"Brooks County, Texas",Brooks County, Texas,18554,6987,51.8,0.8,38.1,3.1,1.8,81.5,18.2,NA,2.27,3.03,15.1,8.1,53.2,24585,67.4,14.4,2884,84.4,0,0,0,8,NA,NA,NA,53032,25010,31310,4.7,3.7,23.1,0,17,0,35.8,80.1,75.7 +2550,48049,"Brown County, Texas",Brown County, Texas,30845,38294,78.1,3.3,41.4,5.2,3,79.2,20.6,19.2,2.44,3.03,18,13.8,68.2,39584,87.7,19.9,14979,18.8,0.6,0.4,0.1,1.5,14.5,19.5,12.9,77845,31827,55305,7.5,4,17.8,11.6,11.6,0.2,70,87.7,87.5 +2551,48051,"Burleson County, Texas",Burleson County, Texas,40749,18327,72,11.6,44.3,5.3,1.8,78,22.4,NA,2.33,2.91,5.5,27,80.9,48435,85.1,23.1,7749,13.3,0.6,0.5,0,2.6,NA,NA,NA,95502,39545,72888,7.3,3.3,12.4,4.4,7.9,1,68.2,83.9,80.3 +2552,48053,"Burnet County, Texas",Burnet County, Texas,36868,51064,81.5,1.2,44.9,4.9,2.3,79.5,23.4,NA,2.56,3.07,8.6,17.8,77.3,45122,89.2,28.7,19597,13.5,1.4,0.3,0.1,1.9,8,9.3,7.8,108845,43180,77158,8.9,2.3,16.2,11.5,12.8,0.7,81.7,90.2,90.4 +2553,48055,"Caldwell County, Texas",Caldwell County, Texas,35407,47184,57.8,4.3,38.2,6.2,1.7,76.6,15.2,NA,2.78,3.33,11.2,27.1,73.2,41903,80.3,16.4,15741,39.4,0.5,0.4,0.2,7,13.9,18.7,11.4,87208,30497,68503,7.6,2.7,25.1,12.9,22.2,1.4,68.5,89,88.4 +2554,48057,"Calhoun County, Texas",Calhoun County, Texas,38609,19921,65.8,2.5,39.9,5.8,3.5,76.6,18.6,NA,2.33,2.82,10.9,12.5,76.4,46516,82.5,16.9,8398,31.8,0.3,4.4,0.4,3.9,NA,NA,NA,89985,38539,71870,8.5,3.8,10.4,0,11.5,0.2,67.9,87,84.7 +2555,48059,"Callahan County, Texas",Callahan County, Texas,33724,14017,85.6,1.7,43.8,5.2,2.8,78.6,20.8,26.6,2.66,3.35,2.4,15.4,82,44899,93.1,23.9,5237,9.9,1.9,0.2,0,0.2,NA,NA,NA,81976,33609,68455,9.6,5.3,16.2,1.5,6.3,1.9,74.1,88.4,88.4 +2556,48061,"Cameron County, Texas",Cameron County, Texas,26241,423192,50,0.6,32.4,7.3,1.6,70.9,14,NA,3.1,3.65,19.5,8.9,65.2,34185,71.6,20.6,135435,77.8,0.6,0.6,0.1,15.6,24.4,35.2,21,70034,23142,51334,4.2,5.3,26.7,9.4,15.5,3.2,65.1,86.2,80.1 +2557,48063,"Camp County, Texas",Camp County, Texas,30704,12652,60.3,14.6,38.7,6.3,0.9,73.6,18,23.7,2.69,3.31,9.5,15.7,76.6,37279,84.1,19.7,4677,13.9,1,0.8,0.7,3.9,NA,NA,NA,77431,28347,55061,10.5,5.8,22.4,10.9,18,2.8,61.3,86,83.7 +2558,48065,"Carson County, Texas",Carson County, Texas,42308,5802,91,0.6,42.3,4.9,2.4,77.5,21.9,23.8,2.49,3.12,3.8,7.1,78.8,55485,93.6,25.9,2302,2.3,0.3,0.1,0,0,NA,NA,NA,102684,41529,84583,8.8,1.6,13.1,5.4,10.6,0,72.1,82.4,81.3 +2559,48067,"Cass County, Texas",Cass County, Texas,30239,28582,76.7,16.8,43.8,5.7,2.1,77.4,22.2,25.7,2.4,2.98,7.6,18.6,77.5,42162,87.3,17.6,11775,2.3,0.9,0.8,0.1,0.3,NA,NA,NA,71132,29362,54328,9.8,6.4,12.3,1.9,7.6,0.7,58.3,85.6,79.3 +2560,48069,"Castro County, Texas",Castro County, Texas,32158,7328,54,1.2,34.9,7.7,0.8,71.1,16.8,NA,2.98,3.42,8.2,13.5,69.2,42358,76.3,21,2427,52.5,0,3,0,9.5,NA,NA,NA,81404,27587,63485,8.5,3.3,21.4,11.2,12.6,1.8,52.2,86.7,82.8 +2561,48071,"Chambers County, Texas",Chambers County, Texas,49087,49178,72.5,7.3,35.3,6.7,0.8,72.5,12.6,NA,2.96,3.29,4.6,12.6,82.4,63177,89.5,23,16558,19.5,1.8,1.5,0.5,1.7,13.1,17.5,12.9,118778,40487,108114,8.2,7.2,16.3,5.5,7,1.6,78.8,93.6,89.2 +2562,48073,"Cherokee County, Texas",Cherokee County, Texas,28976,51143,67.2,13.1,38.2,6.8,1.7,74.6,18,NA,2.65,3.06,8.1,18.6,72.7,37293,80.7,18.5,18085,16.9,0.1,1,0,3.5,17.9,25.7,9.8,79137,27825,59830,6.9,5.2,20.4,6.4,13.9,0.9,66.9,87.1,84 +2563,48075,"Childress County, Texas",Childress County, Texas,36498,6772,61.1,6.7,33.6,5.6,2.3,81.4,16.6,NA,2.48,2.81,21.4,6,63.6,42233,83.9,11.5,2174,27.9,0,0,0,0.8,NA,NA,NA,79090,30197,60333,2.9,0,13.4,0,8.5,0,62.7,88.8,80.8 +2564,48077,"Clay County, Texas",Clay County, Texas,38709,10402,91,1.1,47.8,4.5,2.5,80.4,22.7,NA,2.44,2.85,3.7,9.1,80.5,53882,92.8,23.9,4227,4.4,0.4,0.5,0.2,0,NA,NA,NA,88709,37126,77355,11.3,2,18,17.9,25.8,0.8,75.8,84.8,84.1 +2565,48079,"Cochran County, Texas",Cochran County, Texas,27309,2520,47.8,7.3,38.7,7.3,2.5,72.9,16.8,22.3,2.46,3.09,2.5,12.5,65.3,39231,71.7,10.7,949,50.6,2,0,0.1,13.6,NA,NA,NA,60297,23292,42137,6.1,5.2,21.1,5,14.4,0.2,49.1,87.6,76.9 +2566,48081,"Coke County, Texas",Coke County, Texas,28238,3315,85.2,1.7,47.2,4.4,4.1,78.4,27.5,26.4,2.15,2.8,10.1,13.8,70.6,32432,87.8,21.1,1489,11.7,0.1,1,0,0.8,NA,NA,NA,65666,30384,46431,8.3,5.8,12.5,13.9,11.6,0,65.5,82.1,84.9 +2567,48083,"Coleman County, Texas",Coleman County, Texas,25686,7765,79.3,3.9,48.5,3.7,2.2,79.4,26.2,NA,2.39,3.19,7.3,8.8,76.9,39447,88.6,17.9,3230,13.6,0.1,0.8,0,1.4,NA,NA,NA,75407,32880,52364,7.8,6.6,27.3,18.7,25.2,0.1,67.3,83.8,83.9 +2568,48085,"Collin County, Texas",Collin County, Texas,57039,1116601,57,10.7,37.3,5.8,1,74.9,11.4,28.1,2.77,3.28,26.8,1.6,64.1,70867,94.5,54.9,400182,12,8.6,10.2,2.8,4.1,6.3,7.1,6.8,150558,55057,117588,4.9,3.8,9.9,5.4,7.3,1.9,91.9,96.7,96.1 +2569,48087,"Collingsworth County, Texas",Collingsworth County, Texas,29357,2733,57.4,7.9,38.1,6.9,3.9,71.1,21.5,14.1,2.82,3.34,11.7,3.6,74.6,33539,75.4,26,947,16.6,4.6,0,0,5.4,NA,NA,NA,76830,31033,60165,6.9,0.7,23,9,28.7,0,68.1,86.2,86.6 +2570,48089,"Colorado County, Texas",Colorado County, Texas,36340,20736,66.1,13,43.8,6.2,3.1,76.6,22.8,29.1,2.69,3.27,6.9,16.4,81,47380,88.4,24,7577,20.3,0.9,0.4,0.7,2.2,NA,NA,NA,98115,37885,68554,6.3,3,14,14.9,12.3,1.1,66.9,81.6,81 +2571,48091,"Comal County, Texas",Comal County, Texas,47064,174552,74.7,2.5,42,5.3,1.6,77.8,18.6,NA,2.56,3.01,14.3,8.4,76.9,58745,94.2,42.2,67651,17.6,1.6,1,0.3,1.8,6.4,5.5,6.7,132390,51472,99015,11.4,3.3,10.9,5.5,7.8,0.1,89.3,94,94.9 +2572,48093,"Comanche County, Texas",Comanche County, Texas,33440,13786,73.8,0.5,43.7,5.6,2.4,77.1,23.7,20.6,2.52,3.05,4.7,14.2,80,40734,84.6,20,5395,20.1,1.1,0.3,0.5,2.9,NA,NA,NA,79496,31183,59946,9.1,6.3,17.9,14.9,13.3,1.3,68.5,85.3,84.5 +2573,48095,"Concho County, Texas",Concho County, Texas,29058,3301,77.7,3.7,45.3,2.7,3.9,87.2,19.9,26.7,2.86,3.88,2,13.5,77.7,37286,79.5,13.2,849,27.6,0.4,1.1,0,2.5,NA,NA,NA,71323,26200,59632,6.6,0.4,10,9.7,6.7,0,65.8,85.5,84.1 +2574,48097,"Cooke County, Texas",Cooke County, Texas,37968,42473,78.9,3.3,40.3,6.3,1.9,76.6,18.6,NA,2.58,3.04,11.1,12.3,72.2,48210,88.4,23.6,16252,12.8,1.1,0.3,0,2.5,14.1,26,6.8,99881,38518,72472,7.6,3.6,16,8.3,12.6,0.1,71.6,87.4,80.4 +2575,48099,"Coryell County, Texas",Coryell County, Texas,32841,83772,61.8,13.9,32.4,6.5,0.9,77.3,11,24.3,2.59,3.07,17.4,4.9,59.4,41372,90.7,18.7,26099,12.4,4.2,3.3,0.2,2.3,9.9,11.6,10.3,84950,29059,68904,18.8,6.1,11.9,5.5,5.9,0.6,79.4,90.8,88.8 +2576,48101,"Cottle County, Texas",Cottle County, Texas,28636,1302,65.7,4.9,44.3,4.9,1.4,78,26,NA,2.27,3.03,11.9,1.9,78.6,42260,79.6,21.8,571,13.8,0.5,0,0,0.5,NA,NA,NA,77808,33973,58819,4.3,5.3,8.9,0,0,0,61.5,86.2,64.3 +2577,48103,"Crane County, Texas",Crane County, Texas,29507,4623,39.3,2.6,36.7,6.6,1,74,15,NA,2.7,3.42,2.5,28,81.4,43467,75.6,14.3,1665,59.6,0.8,1.6,0.2,10.8,NA,NA,NA,80750,30862,59915,5.9,4.4,23,0,11.5,9.4,53.2,91.5,78 +2578,48105,"Crockett County, Texas",Crockett County, Texas,46373,2881,37.1,0.6,42.9,3.6,0.3,76.8,21.6,NA,2.4,2.8,3.5,5.2,74.7,51746,65.8,11,1176,49,0,0,0,0,NA,NA,NA,97081,36215,81739,3.9,3,13.4,17.3,4,0,63.4,90.6,76.1 +2579,48107,"Crosby County, Texas",Crosby County, Texas,27459,5072,69.3,2.6,39.3,6,1.6,74.4,19.1,NA,2.52,2.99,9.4,6.8,71.9,37604,78.4,14.1,1974,42.2,0.4,1.5,0,4.7,NA,NA,NA,79476,30845,52197,6.4,5.7,21.7,5.3,15.4,1.1,64.2,87.3,86.3 +2580,48109,"Culberson County, Texas",Culberson County, Texas,28834,2181,46.2,0.2,48.1,4.7,0,78.4,26.7,NA,3.05,4.37,2.3,10,74.1,36729,73.3,16.3,702,77.5,0,1.6,0,18.5,NA,NA,NA,53258,22621,42672,6.9,0.9,28.1,0,0,11.1,31.1,75.9,62.5 +2581,48111,"Dallam County, Texas",Dallam County, Texas,38517,7180,62.3,0.2,30.4,9.6,0.6,67.4,9.6,NA,3.01,3.46,10.7,12,68.1,43997,80.7,15.7,2373,28.3,4.1,0.1,0,3.8,NA,NA,NA,82731,27774,72332,8.3,1.6,36.3,65.9,42,0,65,88.8,79.5 +2582,48113,"Dallas County, Texas",Dallas County, Texas,40081,2603816,40.8,22.5,34,6.9,1.2,74.6,11.5,27.2,2.65,3.4,40.3,1.7,50.8,48566,81.7,34.8,971690,29.3,3.7,4.4,2.4,8.4,14,20.6,12.1,109165,41272,74149,4.3,4.6,21.6,9.8,15.2,2.9,79.1,92.4,90.2 +2583,48115,"Dawson County, Texas",Dawson County, Texas,31073,12311,54.6,7.1,34.6,6.6,1.6,76.1,13.5,22.1,2.53,3.18,5.3,4.2,69.9,40955,72.3,14.5,4154,44.9,2.3,0,0.1,7.7,NA,NA,NA,73403,26182,55789,3.8,7.4,22.4,23.3,18.7,0.5,54,87.3,82.8 +2584,48117,"Deaf Smith County, Texas",Deaf Smith County, Texas,33206,18487,52.8,1.9,31.4,9,2,68.8,13.3,16.8,3.06,3.62,11.7,5.2,65.9,41724,71.4,11.8,5973,60.4,0.5,0.1,0.1,10,NA,NA,NA,71959,24087,54114,3.3,2.3,20.4,5.2,11,0.9,58.3,90.1,80.4 +2585,48119,"Delta County, Texas",Delta County, Texas,33775,5345,80.7,8.3,40.7,7.9,2.5,76.3,20.5,NA,2.52,3.02,5.9,9,83.1,42130,90,19.5,2095,1.8,0,0.2,0,0.6,NA,NA,NA,79499,31640,62855,8.3,3.5,7.7,0,5,0,67.6,84.3,79.1 +2586,48121,"Denton County, Texas",Denton County, Texas,51661,945644,60.6,10.7,36.8,5.8,1,76.2,11.2,28.2,2.69,3.19,25,2.7,65.4,64540,93.4,48.4,346809,14.4,4.9,6.4,1.7,3.4,7,7.7,6.5,141539,52909,108185,6,3.6,10.8,7.6,8.5,1.4,90.6,96.1,95.5 +2587,48123,"DeWitt County, Texas",DeWitt County, Texas,30263,19853,61,7.4,41.8,6.5,2.4,77.4,19.9,24.7,2.69,3.33,5.8,16.1,70.7,41353,85.4,15.7,6683,16.9,1.5,0.1,0.1,1.5,NA,NA,NA,86159,30723,64014,6.2,3.7,17.5,11,12.2,1.7,62,83.5,73.2 +2588,48125,"Dickens County, Texas",Dickens County, Texas,28358,1641,78.1,1.5,45.7,6,1.3,78.4,24.4,NA,2.31,2.9,1.2,4.7,81.4,41210,85,19.1,684,21.5,0,0,0,1.3,NA,NA,NA,74248,31451,50417,4,8.4,12.1,41.1,14.7,0,66.4,81.4,85.5 +2589,48127,"Dimmit County, Texas",Dimmit County, Texas,17551,8507,30.5,0.7,36.3,7,1,71.6,16.6,27.4,2.78,3.2,11.2,26.5,60.8,31669,74.4,11,3010,76.9,0.2,0,2.9,11.9,NA,NA,NA,56336,20919,33409,3.2,6.6,17.5,7.2,4.8,4.1,60.9,81.2,74.7 +2590,48129,"Donley County, Texas",Donley County, Texas,26934,3276,87.2,5.4,45.4,3.8,2.7,82.1,26.9,NA,2.41,3.03,8.6,7.3,75.4,39391,83.5,16.1,1203,4.9,0,1.4,0,2.4,NA,NA,NA,69217,27623,56648,6.8,0,13.2,18.4,13.2,1.2,57.4,79.6,67 +2591,48131,"Duval County, Texas",Duval County, Texas,28421,9824,67.8,0.7,35.9,6.3,1.3,74.1,15.6,NA,3.09,4.07,5,8.6,71,35376,73.6,7,2992,68.3,4.9,0,0,4,NA,NA,NA,60248,23379,50081,5.5,6.4,22,13.5,18.9,0,46.5,67.2,67.7 +2592,48133,"Eastland County, Texas",Eastland County, Texas,29794,17846,82.5,2.3,42.6,5.6,2.3,78.6,21.9,NA,2.36,2.92,11.8,12.7,71.1,40965,85,22.2,7168,14.2,0.5,1.3,0,2.5,NA,NA,NA,76423,31650,51741,9.1,4.9,15.9,6,8.4,1.3,64.2,86.6,82.4 +2593,48135,"Ector County, Texas",Ector County, Texas,41752,163206,53.3,5.1,31.3,8.6,0.9,69.7,9.8,NA,2.58,3.17,19.7,17.7,64.4,52521,77.6,16.6,62422,51.3,0.9,1.2,0.8,9.1,15.3,20.9,16.5,92177,34459,71031,4.8,5.6,21.6,17,20.8,1.3,66,91.5,85.2 +2594,48137,"Edwards County, Texas",Edwards County, Texas,19640,1392,85.6,1.6,39.6,1.5,3.1,83.9,22.6,NA,2.86,4.67,1.9,17.1,94.5,19366,78.4,25.9,474,50.2,0,0,0,16.9,NA,NA,NA,51921,25240,38500,6.1,0,24,0,0,0,46.4,60.1,59.5 +2595,48139,"Ellis County, Texas",Ellis County, Texas,43008,203927,64.4,13.2,36.3,6.5,1.1,73.5,12.9,NA,2.93,3.32,11.1,8.2,76.3,54482,87.6,28.6,68852,20,1.3,0.5,0.6,3,8.1,11.3,6.1,113936,39646,95898,7.2,3.5,15.6,10.4,13.1,1.5,83.1,92.8,91.7 +2596,48141,"El Paso County, Texas",El Paso County, Texas,29185,866275,39.2,3.3,33.3,6.8,1.6,73.6,12.8,NA,2.88,3.46,21.1,5.7,63.7,38449,80.6,25.4,296341,74.3,1.3,1.3,0.3,18.4,18.9,25.1,20.6,77793,27541,58859,7.6,5.7,21.9,10.3,12.8,2.7,73.2,89.7,88.3 +2597,48143,"Erath County, Texas",Erath County, Texas,32290,43244,80.2,1.4,31.9,6,1.6,79.1,14.5,NA,2.45,2.99,16.4,14.1,63.8,46316,87.1,32.5,16379,14,1.4,0.8,0.1,3.6,15.9,16.7,11,86705,33116,65351,6.1,5,16.1,11.9,15,0.4,79.1,90.6,89 +2598,48145,"Falls County, Texas",Falls County, Texas,30254,17063,57.9,20.2,41.5,5.4,2.3,78.9,19.4,30,2.52,3.29,6.9,11.1,78.4,45583,84.9,15,6009,12.9,0.8,0.1,0.3,2.9,NA,NA,NA,73085,29535,55372,8.1,7,16.2,3.4,16.6,0.6,69.2,78.8,79.5 +2599,48147,"Fannin County, Texas",Fannin County, Texas,36313,36525,82.4,6.3,40.7,5,1.8,78.7,17.8,NA,2.61,3.12,8.5,12.9,75.5,47659,86.8,20.2,12793,8.6,0.8,0.7,0.1,1.3,NA,NA,NA,94746,34865,68377,8.1,4.9,14.8,6.1,8.6,0.8,70,86.8,81.8 +2600,48149,"Fayette County, Texas",Fayette County, Texas,37624,24783,79.2,6,48.6,4.9,3.5,79.9,26.3,24.3,2.47,3.06,8,13.7,79.7,44967,90.3,27.2,9855,12.6,2.7,0.5,0,0.6,NA,NA,NA,102640,41964,76541,7.8,2.3,10.3,15.7,10.9,0.1,73.4,83,77.1 +2601,48151,"Fisher County, Texas",Fisher County, Texas,38155,3661,76.8,3.8,42.6,6.4,2.7,79.2,21.6,24,2.28,2.7,3.5,8,81.8,45109,90.3,18.2,1590,19.7,0.7,0,0,3.1,NA,NA,NA,80053,35440,64700,9.8,3.4,12,0.8,3.9,0,66.9,84.6,82.7 +2602,48153,"Floyd County, Texas",Floyd County, Texas,31980,5294,69.6,2.7,38.5,6.1,2.8,74,19.2,NA,2.72,3.26,5.3,2.3,75.2,42064,74.6,16.7,1939,46.4,0.4,0.2,0,7,NA,NA,NA,83028,31438,55461,5.8,3.3,24.2,19.9,19.7,2.6,59.9,87.9,72.9 +2603,48155,"Foard County, Texas",Foard County, Texas,27163,1079,72.9,0.3,45.7,5.1,4.8,76.5,29,NA,2.47,3.32,20.4,1.2,66.7,43250,81.2,14.5,421,7.6,1.9,0.2,0,4.5,NA,NA,NA,67922,27873,42212,4.6,8.2,13.8,37.5,8.3,0,51.1,76.5,65.6 +2604,48157,"Fort Bend County, Texas",Fort Bend County, Texas,48069,859721,37,20.5,37.1,6.2,0.9,73,12.2,NA,3.04,3.39,11.3,2.5,77.5,61668,91.9,49.3,281259,19,9.5,12.6,4.5,6.2,7.2,8.3,8.7,142109,46693,113409,4.4,4.8,11.9,8,9,2.8,91.1,94.5,94.9 +2605,48159,"Franklin County, Texas",Franklin County, Texas,35846,10522,78.7,5.2,43.5,5.4,1.9,77.4,22.1,26.3,2.64,3.19,6.4,10.9,79.4,46692,90.9,29.3,3942,11.4,1.6,0.3,0,3.9,NA,NA,NA,100219,39633,66800,6.3,4,16.6,4.8,18.8,2.1,75.7,88.3,89.8 +2606,48161,"Freestone County, Texas",Freestone County, Texas,33359,19813,67.9,14.7,41.8,5.2,2.3,77.3,20,27.3,2.68,3.39,5.8,26.3,74.8,41684,86.6,15.9,6867,8.5,0.5,0.8,0,0.4,NA,NA,NA,79090,29170,58460,7.2,1.5,12.4,8.5,9.8,0,66,85.9,77.5 +2607,48163,"Frio County, Texas",Frio County, Texas,29921,18019,46.6,4.5,31.8,6.5,1.7,74,12.3,NA,2.82,3.32,17.1,18.1,63,38481,70.6,11.4,5144,61,0,0.7,0,15.9,NA,NA,NA,69774,22170,60098,4.5,4.2,15.5,4.2,3.9,0,54.9,83.2,80.2 +2608,48165,"Gaines County, Texas",Gaines County, Texas,37145,21904,76.8,2.5,29.3,10,0.8,64.3,9.4,NA,3.08,3.64,6.6,20.8,76.6,57455,58.3,8.1,7057,31.3,28.6,0,0,15,NA,NA,NA,93729,30786,76605,4.1,1.3,32.4,25.2,29.9,0.8,59.4,88.7,80.8 +2609,48167,"Galveston County, Texas",Galveston County, Texas,44169,354721,64.5,12.4,38.5,5.8,1.5,76.1,15.3,NA,2.52,3.07,21.1,4.5,67.5,58531,89.8,34.3,138666,18.3,2.5,3.2,0.5,2.8,11.2,14,10.5,112903,44123,85348,7.3,5.2,13.8,8.1,9.3,0.8,81.8,92.8,92.8 +2610,48169,"Garza County, Texas",Garza County, Texas,28405,5435,61.1,10.5,38.4,5,2.9,81.1,14.8,NA,2.9,3.58,7,10.1,68.5,35536,68.1,10.6,1433,36.6,0,0,0.4,2.9,NA,NA,NA,68426,20328,50545,7.2,7.7,17.2,0,8.9,0,58.1,82.3,81.7 +2611,48171,"Gillespie County, Texas",Gillespie County, Texas,36445,27202,84.9,0.5,50.5,4.6,3.6,80.6,29.7,NA,2.38,2.97,11.9,13,71,41958,89.3,35.3,11272,12,4.2,0.8,0,1.4,NA,NA,NA,101721,43555,67799,8.7,3,15.5,12.9,19,1.4,80.4,87.5,87 +2612,48173,"Glasscock County, Texas",Glasscock County, Texas,65926,1070,68.1,0,40.6,6.3,2.4,74.4,15.4,26,2.43,2.75,0,5.7,66.4,61471,87.6,39.9,441,21.3,6.6,0,2.5,6.1,NA,NA,NA,129098,53801,106806,4.6,1.3,22.9,57.3,43,0,77.3,86.4,81.2 +2613,48175,"Goliad County, Texas",Goliad County, Texas,34794,7096,75.2,5.1,44.8,4.8,3.8,79.9,24.4,NA,2.5,3.23,6,17,82.8,47595,84,19,2800,22.3,2.7,0,0,3.3,NA,NA,NA,97209,38705,59556,7.2,5.1,12.9,1.9,8.1,0,58.3,80.9,73.9 +2614,48177,"Gonzales County, Texas",Gonzales County, Texas,32391,19764,64.9,6.3,38.8,6.6,1.7,73.9,19.5,27.4,2.54,3.22,11.1,24.1,69.9,43653,77,12.6,7656,30.7,0.3,0.6,0.1,6.5,NA,NA,NA,80607,31773,59355,5.3,1.1,16.4,7.1,8.7,1,58.8,83.6,82.6 +2615,48179,"Gray County, Texas",Gray County, Texas,31896,21131,77.9,4.6,36.8,6,1.3,74.9,16.4,17.4,2.46,3,6.9,3.4,73.5,38552,84.8,15.4,7926,20.1,0.3,1.2,0.1,5,NA,NA,NA,80830,30893,56082,7.8,5.2,18.2,4.9,12.7,0.2,69.9,90.9,84.6 +2616,48181,"Grayson County, Texas",Grayson County, Texas,36439,139988,78.9,5.4,39.4,6.2,2.2,75.9,17.9,26.3,2.58,3.13,16.4,10,67.3,45949,90.5,23.7,53325,9.4,1.7,0.8,0.1,1.6,11.1,15.5,9.7,94814,36711,70455,9.1,3.4,15.7,11.2,13.3,0.7,74.6,89.6,87.7 +2617,48183,"Gregg County, Texas",Gregg County, Texas,34173,124860,60.9,19.6,35.9,6.7,1.9,74.1,15.8,21.9,2.54,3.1,25.1,6.8,59.5,43351,86.8,22.4,47330,13.4,0.8,1.1,0.4,2.4,17,24.6,9.2,88513,33578,64809,6.6,3.6,17,8.3,12.1,1.4,72.8,89.7,87.8 +2618,48185,"Grimes County, Texas",Grimes County, Texas,32961,30385,63.5,11.7,40.5,5.2,1.6,77.5,18.5,NA,2.62,3.15,7.6,21.1,78,43898,81.9,19.5,10289,16.9,1.3,0.4,0,3.6,NA,NA,NA,93263,31961,67080,6.9,3.6,20.4,13.5,22.1,0.4,70.4,87.6,82.2 +2619,48187,"Guadalupe County, Texas",Guadalupe County, Texas,43356,178368,60.6,8,37.5,5.8,1.2,75.7,14.5,28.8,2.8,3.22,6.9,13.2,78.5,52826,89.3,30.9,62953,25,2.3,1.8,0.1,2.6,8.8,11.3,9.1,110416,39766,93776,13.9,4,10.9,9.2,6.7,1.5,82.4,92.2,92.6 +2620,48189,"Hale County, Texas",Hale County, Texas,27524,32247,62.9,4.1,34.1,6.5,1.8,73.1,14,NA,2.73,3.28,13.2,7.2,60.1,39307,75.1,15.6,11034,47,1,0.1,0.5,6.8,19,26.4,15.9,67864,24606,52788,4.2,3.6,23.5,11.3,13.5,1.2,59,86.9,80.8 +2621,48191,"Hall County, Texas",Hall County, Texas,24525,2827,62.7,5,44.9,4.6,2.4,78.2,24.6,NA,2.39,2.85,6,3.5,75,33967,83.3,17.8,1158,25.5,0,0.3,0,0.7,NA,NA,NA,62557,24649,46728,8.1,9.5,18.5,0,6.9,0,60,77.9,76.6 +2622,48193,"Hamilton County, Texas",Hamilton County, Texas,31793,8320,86.8,1.9,43.8,4.9,4.3,77.8,25,NA,2.57,3.52,4.7,8.8,77.4,44960,88.3,24.3,3134,8.2,3.1,0,0,1.2,NA,NA,NA,88821,36865,55339,8.8,4.3,14.8,7.8,7.6,0,66.3,82.9,83.2 +2623,48195,"Hansford County, Texas",Hansford County, Texas,33968,5182,71.2,0.2,35.9,7,3,71.1,13.9,NA,2.8,3.49,6.8,4.3,76.7,40513,74.6,30.4,1827,36.1,0.8,0,0,12.4,NA,NA,NA,92246,34184,68299,5.9,6.3,19,5,14.7,0,74.5,88.5,87.4 +2624,48197,"Hardeman County, Texas",Hardeman County, Texas,31331,3529,77.8,3.4,44.3,5.6,0.9,79.7,21.8,NA,2.69,3.45,8.2,11,69.6,35297,85.7,15,1298,16,0.4,1.1,3.7,6.6,NA,NA,NA,72735,29505,61179,5,1.4,16.7,12.4,14.6,0,58,87.9,74.6 +2625,48199,"Hardin County, Texas",Hardin County, Texas,37069,57126,85.5,6.1,39.3,5.8,1.5,75.2,17.4,NA,2.61,3.03,6.2,24.3,82.5,54535,89.9,20.8,21750,5.7,0.9,0.3,0,0.8,12.3,14.5,10.5,94057,36761,72532,7.3,5,15.9,8.3,12.6,0,71.8,90,85.1 +2626,48201,"Harris County, Texas",Harris County, Texas,37980,4758579,40.1,19.1,34.4,6.9,1,73.9,11.4,29,2.73,3.38,34.9,2.6,54.8,48142,82.5,33.7,1728103,34.1,4.2,5.2,2,11,15.9,23.2,12.7,108784,39978,73104,4.4,6,21.2,10.6,14.2,3.5,78.8,92.8,91 +2627,48203,"Harrison County, Texas",Harrison County, Texas,29856,69584,65.1,20.4,38.9,5.8,1.8,75.7,17.2,NA,2.65,3.13,8.3,20.6,74.9,41196,89.2,22.5,25599,9.4,0.5,0.5,0.4,1.9,17.4,24.9,12.1,83262,31547,66040,7.5,5.3,14.6,8.8,12.6,0.5,68.8,89.3,81 +2628,48205,"Hartley County, Texas",Hartley County, Texas,50595,5307,68.6,6.7,39.5,5.9,2.1,77.4,16.5,NA,2.38,2.85,10.9,12.3,76.7,51195,83.1,23.1,1635,22.1,3.8,0.3,0,0.6,NA,NA,NA,101180,30181,82122,4.2,2.8,14.1,11.7,15.8,2.3,81.3,97.9,93.6 +2629,48207,"Haskell County, Texas",Haskell County, Texas,30606,5390,78.3,6.1,44.3,4.1,2.1,82.6,23,NA,2.43,3.01,3.3,4.9,74.1,40378,83.3,22.5,2108,19.4,0.5,0.1,0.4,3.3,NA,NA,NA,91500,37896,54044,6.6,4.8,17.3,6.9,12.4,0,63.1,89.2,84.2 +2630,48209,"Hays County, Texas",Hays County, Texas,40507,256429,66.5,4.1,33.9,5.8,1,77.4,11.9,NA,2.63,3.15,25.1,7.3,64.1,52734,91.5,41.9,94499,25.6,2.3,1.1,0.4,2.8,12,9.6,9.4,112348,41931,85827,6.7,4.2,11.9,7.8,7.7,1,87.5,94.7,92 +2631,48211,"Hemphill County, Texas",Hemphill County, Texas,37415,3311,74.7,2.1,41.3,4.7,3.9,76.6,19.2,NA,2.38,3.06,5.4,11.7,76.4,42700,84.5,24.4,1368,25.1,0.8,0,0,0.3,NA,NA,NA,111954,45325,72052,4.7,4.4,17.9,13.3,14.4,9.4,67.2,97.5,81.7 +2632,48213,"Henderson County, Texas",Henderson County, Texas,31781,83658,80.5,5.3,43.8,5.5,2.4,78.6,22.4,NA,2.52,3.06,8.8,26.6,76.5,43140,87.5,20.2,32597,8.3,0.9,0.6,0.2,2.1,14.2,20.2,9.9,85410,33734,63955,8.6,4.9,17.8,11.2,12.5,0.7,70.7,88.3,83.1 +2633,48215,"Hidalgo County, Texas",Hidalgo County, Texas,24708,880921,39.5,0.7,30.3,8,1.2,68.6,11.5,NA,3.3,3.83,17.8,12.4,67.6,34169,69.3,20.3,264128,84.7,0.5,0.9,0.1,18.1,27.2,37.1,22.9,71722,22005,52281,3.2,7,29.7,8.6,15.7,4.2,65.1,90.1,84.6 +2634,48217,"Hill County, Texas",Hill County, Texas,32412,36664,78.1,6.2,40.8,5.8,2,76.6,20.3,NA,2.66,3.31,9.1,18.9,76.4,43388,86.9,18.5,13457,14,1.2,0.6,0.1,2.5,NA,NA,NA,80154,31410,63147,8.7,4.1,17.7,8.6,12,0.5,70.8,87.7,87 +2635,48219,"Hockley County, Texas",Hockley County, Texas,31673,21455,63.1,3.6,35.8,6.9,2.1,73.5,15.2,NA,2.59,3.11,7.9,16.4,72.6,44413,79.9,18.3,8058,35.6,0.2,0,0.2,4.4,NA,NA,NA,77012,30131,54810,5.1,4.4,18.6,6.7,12.5,1.2,64.1,88.2,82.4 +2636,48221,"Hood County, Texas",Hood County, Texas,40186,64198,85.9,1.1,46.3,5.1,2.9,79.3,25.4,33.7,2.53,2.97,7.4,16.1,81.3,50199,92.3,32.4,24988,8.8,1,0.7,0,1.5,8.2,8.8,7.6,112569,44564,86802,9.5,5.7,15.2,14.6,15.7,0.4,84.4,92.1,92.4 +2637,48223,"Hopkins County, Texas",Hopkins County, Texas,32405,37351,80.4,7.1,39.6,6.1,2.1,75.6,18.4,23,2.65,3.2,10.6,12.7,69.9,41062,84.6,20,13878,12.4,0.8,0.7,0.2,2.6,NA,NA,NA,86649,32536,64725,6.4,4.5,18.8,12.4,12.5,1.7,70.8,89.2,87.5 +2638,48225,"Houston County, Texas",Houston County, Texas,30172,22042,63.1,22.1,44,5,2.4,80,21.9,NA,2.47,3.04,12.9,15.2,68.8,37175,82.7,15.5,7795,6.2,0.8,0.9,0,1.3,NA,NA,NA,75378,27784,54563,8.4,7,13.8,1.4,9.1,1,63,82,78.4 +2639,48227,"Howard County, Texas",Howard County, Texas,36352,33127,69.4,5.6,37,6,1.4,77.5,13.1,20.4,2.47,3.09,12.7,9.4,68.6,49022,81.2,15.3,11927,30.9,1.6,0.9,0.3,3.5,NA,NA,NA,91958,34587,71457,6.1,4.7,14.2,9.1,6.8,0.6,70.1,88.8,86.2 +2640,48229,"Hudspeth County, Texas",Hudspeth County, Texas,18487,3331,36.6,0.8,33.2,3,0.9,82,11.1,NA,3.08,3.91,0,51.2,73,26771,59.9,12.4,847,65.3,0.7,0,0,21.3,NA,NA,NA,57117,19142,39336,9.6,13.9,33.6,10.7,38.8,0.8,69.9,77.8,86.9 +2641,48231,"Hunt County, Texas",Hunt County, Texas,34778,104917,73.2,8,37.2,6.3,1.8,75.7,15.6,NA,2.71,3.22,12.5,16.8,70.8,43475,86.3,21.9,37549,12.7,1.1,1.1,0.6,3.1,12.4,16.8,9.2,88486,32446,70112,8.5,5.3,16.3,6.5,8.5,1.5,73.8,91.3,87.7 +2642,48233,"Hutchinson County, Texas",Hutchinson County, Texas,33213,20413,74,2.4,38.1,5.7,2.4,74.8,17.4,NA,2.91,3.74,6.9,5.9,80.9,46487,85.8,16,6944,15.4,0.1,0.2,0,1.9,NA,NA,NA,84741,31917,65470,7.6,2.4,14.5,9.2,12.8,0.9,67.1,86,86.3 +2643,48235,"Irion County, Texas",Irion County, Texas,35625,1432,69.3,0,50.5,3.8,3.1,76,21.7,NA,2.36,3.03,0,19.6,88.6,41900,89.2,22.1,606,26.4,0,0,0,1.7,NA,NA,NA,78001,32883,58125,6.7,0.7,14.6,7.1,8.2,9.6,70.3,87.1,72.8 +2644,48237,"Jack County, Texas",Jack County, Texas,32779,8623,87.1,3.5,41.3,4.3,2,77.8,17.4,NA,2.6,3.11,7.6,15.3,71.7,46094,80.2,15.6,2915,6.9,0.3,0.5,0.2,2.3,NA,NA,NA,87701,31398,65693,7.6,10.1,19.3,27.9,18.2,0,66.9,91.7,84.2 +2645,48239,"Jackson County, Texas",Jackson County, Texas,33844,15081,72.5,5.9,42.1,6.4,2,75.7,19.7,NA,2.74,3.17,8.2,13.7,70.1,46815,83,15.9,5424,21.5,1.4,0.3,0,3.8,NA,NA,NA,84901,32146,61752,5.9,5.8,17,15.1,14.1,0.5,64.8,88.8,83.7 +2646,48241,"Jasper County, Texas",Jasper County, Texas,27958,32807,74.9,15.4,42.5,5.7,2.3,76.5,20.7,NA,2.32,2.83,8.3,31.9,77.7,37923,88.3,12.6,13667,4.8,1.5,0.3,0,0.8,22.2,29.7,10.7,74872,32261,49919,7.4,14.5,18.7,7.9,12.1,0.7,42.7,89,88.7 +2647,48243,"Jeff Davis County, Texas",Jeff Davis County, Texas,28245,1740,72.1,0.6,58.7,7.5,3.9,83.1,39.1,NA,2.02,2.55,0,13.3,89.8,39688,86.7,30.4,847,36.7,1.7,0,0.9,12.8,NA,NA,NA,73186,35662,32625,6.4,0,19.3,20,9.7,1.5,75.1,72.3,81 +2648,48245,"Jefferson County, Texas",Jefferson County, Texas,34594,253939,44.1,33.1,37.1,6.7,1.8,75.4,15.1,NA,2.55,3.19,22.1,3.4,61.8,45957,84.9,19.4,93646,16.5,2,2.4,0.6,4.8,18.8,26.3,13.2,84558,31855,59934,6.8,5.6,21.3,10.4,13.3,2.2,67.2,91.1,88.9 +2649,48247,"Jim Hogg County, Texas",Jim Hogg County, Texas,24539,4797,55.5,0.5,25,20.6,1.3,65.3,8.4,NA,3.88,4.67,16.8,12.2,61.5,27944,78.8,19,1221,77.1,0,0.3,0,6,NA,NA,NA,60903,17049,42230,1.5,6.9,31.3,15.6,17.4,0,50.5,92.5,73.1 +2650,48249,"Jim Wells County, Texas",Jim Wells County, Texas,27356,38863,78.4,0.8,35.5,6.7,2.4,72.7,15.8,24.8,2.89,3.39,12.1,14.8,67.5,38327,79.2,15.2,13298,63.9,0.4,0.2,0.4,6.5,23.2,35.5,11.8,70198,25529,47492,5.8,5.5,21.3,10.3,13.2,1.6,63.1,74.7,72.7 +2651,48251,"Johnson County, Texas",Johnson County, Texas,40181,188820,75.9,4.9,37.2,6.3,1.1,74.1,14,NA,2.93,3.35,11.5,16.6,74.5,50472,86.9,23.5,63477,16,1.4,1.2,0.5,2.7,10.7,13.2,8.4,99310,34302,81826,6.2,3.5,16.4,7.8,13,1.7,79.7,92.7,91.4 +2652,48253,"Jones County, Texas",Jones County, Texas,31261,19968,65.7,10.5,39,4,2,83.4,15.9,24.8,2.31,2.7,2.6,14.7,80.9,39631,81.1,11.2,6028,18.9,1.3,0.3,0,2.7,NA,NA,NA,77333,23851,63472,5.6,4.6,18.2,8.1,14.3,0.7,67.1,88.2,85 +2653,48255,"Karnes County, Texas",Karnes County, Texas,29754,14819,59,7.2,37.1,5.1,2.1,79.9,14.9,20.2,2.44,2.99,13.2,16.5,65.3,38492,77.2,16,4643,28.7,3,3,0,6.1,NA,NA,NA,88349,28251,59103,5,4.1,16.4,12.8,8,0,55.4,84.3,76.1 +2654,48257,"Kaufman County, Texas",Kaufman County, Texas,40916,160718,60,16.8,34.2,7.3,0.9,71.4,10.9,NA,3.2,3.67,8.6,11.2,78.6,52708,86.3,25.3,49703,19,1.3,1.3,2.5,2.4,9.7,12.6,10.7,104547,34131,88606,5.8,4.6,14.1,7.8,11.8,0.7,81.8,93.9,90.1 +2655,48259,"Kendall County, Texas",Kendall County, Texas,48371,46971,77.8,0.9,43.1,4.4,2.6,77.3,19.9,NA,2.69,3.05,11.8,5.2,77.9,59064,93.6,49.1,17249,13.5,1.5,1.2,0.1,1.8,NA,NA,NA,155655,57181,110498,8.9,4.3,11.3,11,9.2,1.6,88.7,95.5,93.2 +2656,48261,"Kenedy County, Texas",Kenedy County, Texas,NA,52,19.2,0,65.5,0,7.7,94.2,50,NA,2.71,2.81,0,0,35.3,49583,46.8,10.6,17,94.1,0,0,0,47.1,NA,NA,NA,74447,31183,NA,10.2,0,0,NA,0,0,35.3,52.9,52.9 +2657,48263,"Kent County, Texas",Kent County, Texas,34167,727,87.3,0.8,57.6,1.7,3.3,82.5,33.3,NA,2.42,2.99,0,10.2,77,37179,89.9,26.9,274,6.6,0,0,0,2.9,NA,NA,NA,86324,35087,71420,4.3,10.3,3.9,0,5.3,0,78.1,94.9,93.1 +2658,48265,"Kerr County, Texas",Kerr County, Texas,35387,53166,77.3,1.6,48.6,4.8,3.8,81.6,28.6,NA,2.29,2.77,13.9,17.8,70.4,40458,90.3,31.2,22267,13,0.9,0.4,0.4,1.8,11.7,13.6,9.2,94608,39822,67927,10.4,2.4,17.8,25.5,21.8,0.2,79.6,87.7,89.7 +2659,48267,"Kimble County, Texas",Kimble County, Texas,32155,4355,79,2.3,50.3,4.8,2.4,83.6,31.4,NA,2.32,3.13,7.1,12.5,78.6,38750,83.1,25.6,1858,22.8,1.3,0,0.8,2.5,NA,NA,NA,86848,37812,65703,6.6,1.2,14.7,3.8,12.1,0.6,62.9,82.8,80.6 +2660,48269,"King County, Texas",King County, Texas,42404,189,81,0,49.1,5.3,0,81.5,22.8,NA,2.1,2.16,0,35.6,42.2,47159,79.9,36.4,90,7.8,0,0,0,0,NA,NA,NA,73751,30890,70192,1.3,0,3.7,0,0,0,92.2,98.9,100 +2661,48271,"Kinney County, Texas",Kinney County, Texas,29525,3140,71.9,0.1,50.4,3.2,0.6,91.3,26.4,NA,2.39,3.08,6.1,13.2,76.6,53841,88.7,19.5,1180,39.4,0,0,0,2.5,NA,NA,NA,71116,34491,66341,14.3,1.9,17.2,20,18.1,0,68,81.9,73.7 +2662,48273,"Kleberg County, Texas",Kleberg County, Texas,27380,30629,53.4,3.4,29.3,6.7,1.5,76,13.2,NA,2.45,3.03,24.7,6.7,53.9,41670,83.8,23.7,11794,45.3,1.2,1.2,0.2,4.2,28.8,39.2,16.7,71503,26301,57612,9.6,6.7,17,2.2,6.8,0.3,72.6,90.9,83.6 +2663,48275,"Knox County, Texas",Knox County, Texas,29766,3322,71.5,4,40.5,5.3,2.9,74.1,18.6,16.2,2.55,2.98,8.8,2.6,78.1,32158,85.2,15.6,1256,26.9,2.8,0.3,0,7.7,NA,NA,NA,71418,26698,56304,4.8,1.4,18,18.4,15.1,3.4,68.6,88.3,87.5 +2664,48277,"Lamar County, Texas",Lamar County, Texas,31887,50421,77.1,12.4,40,6.4,2.1,75.8,19.3,NA,2.48,3.01,15.1,7.9,65.8,40272,88,20.6,20056,6,2.8,1,0.6,1.3,18.7,27.7,15.6,78269,31430,61122,6.9,3.8,19,15.1,15.1,0.4,67.1,86.2,79.9 +2665,48279,"Lamb County, Texas",Lamb County, Texas,30952,12919,71.3,3,36.6,6.8,1.9,72.5,16.9,NA,2.74,3.41,4,7.1,72,41686,77.4,14.3,4644,45.5,0.3,0.1,0,6.6,NA,NA,NA,71174,26993,56997,4.9,2.9,25.5,18.5,16.3,0.4,63.7,83.7,82.2 +2666,48281,"Lampasas County, Texas",Lampasas County, Texas,33511,22267,77.3,4.1,43.9,4.8,2.4,78.3,20.5,28.4,2.7,3.22,7.9,13.4,80.3,42936,90.3,21.6,8147,13.4,4.3,1.8,0,1.2,NA,NA,NA,94987,36318,76919,18.9,4.4,13,9,8.8,0.2,79,92.4,88.7 +2667,48283,"La Salle County, Texas",La Salle County, Texas,16263,6946,42.7,3.5,38.8,2.3,2.3,76.7,21.9,NA,3.51,4.07,10.7,21.5,78.8,26795,63.9,8.1,1683,83.5,0,0,0,7.7,NA,NA,NA,63560,16317,55469,9,3,18.9,0,5.9,0.1,57.1,88.9,71.8 +2668,48285,"Lavaca County, Texas",Lavaca County, Texas,35404,20479,75.6,4,43.1,5.9,3.3,76.3,23.5,24.9,2.4,2.96,5.7,14.3,76.3,48805,87.1,20.9,8370,13.2,2.5,0.4,0.1,2,NA,NA,NA,85705,35549,61768,6.8,2.3,11.1,3.4,5.6,0.2,64.4,81.1,81.6 +2669,48287,"Lee County, Texas",Lee County, Texas,34653,17758,74.3,10.4,41.4,6.6,1.9,78.4,20.8,NA,2.58,2.99,5.7,21,78.1,42090,83.2,18.7,6720,19.5,3,0,0,6.4,NA,NA,NA,79410,31961,66000,7.3,5.4,17.6,8.3,15.1,1.1,68,85.5,82.4 +2670,48289,"Leon County, Texas",Leon County, Texas,32731,16067,80,7.3,44.3,5.3,2.3,77.3,23.7,NA,2.44,3.01,4.2,37.2,77,44748,86.3,17.1,6546,10.4,2.1,0.1,0,2.4,NA,NA,NA,78251,32596,59975,9.9,3.9,16.4,18.5,15.2,0.2,69.8,85.7,82.7 +2671,48291,"Liberty County, Texas",Liberty County, Texas,32428,97993,63,8.1,33.3,7.6,0.9,70.7,11.9,NA,3.08,3.64,6.2,34.4,80.8,43052,78.1,11.2,30009,27.4,0.4,0.6,0.3,6.4,17.7,21.3,10.4,84108,26368,64773,7.1,5.9,25.6,20.4,19.1,1.1,63.8,90.8,88.8 +2672,48293,"Limestone County, Texas",Limestone County, Texas,30542,22185,61.1,17.2,42,5.8,2,77.5,20.7,NA,2.56,3.15,9.4,16.9,74.1,40104,85.6,19.1,8318,15.6,0.9,0.8,0,2.6,NA,NA,NA,72269,27878,58109,8.7,3,18,4.5,9.2,2.1,61.9,87.2,76.1 +2673,48295,"Lipscomb County, Texas",Lipscomb County, Texas,40041,2964,70.1,0.4,37.4,6.8,1.8,70,18.9,19.1,2.65,3.18,5.8,11.9,80.2,48835,83.5,25.4,1101,24.8,0.5,0,0.9,6.7,NA,NA,NA,91227,34127,71442,6.3,3,18.2,13.8,26.8,0,69.8,90.8,86.9 +2674,48297,"Live Oak County, Texas",Live Oak County, Texas,29349,11444,77,2.4,38.6,6.2,2,79.5,20.2,29.8,2.35,3,9.3,24.3,72.9,40938,76.9,13.8,4210,32,0.4,1.8,0,5.6,NA,NA,NA,76267,27757,53869,5.7,5.1,18.1,6.3,14.1,0,63.6,83.5,74.7 +2675,48299,"Llano County, Texas",Llano County, Texas,35012,22011,87.8,1,57.5,3.7,4.1,84.4,36.9,NA,2.13,2.57,10.6,12.8,77.2,40849,91.9,33.1,10218,8,1.7,0.4,0,1.1,NA,NA,NA,112454,52514,65636,11.9,4.8,15.3,17.3,15.2,1.5,77.6,90.5,88 +2676,48301,"Loving County, Texas",Loving County, Texas,32500,54,90.7,0,68.9,0,37,100,74.1,NA,1.5,2.64,13.9,8.3,11.1,NA,94.2,0,36,41.7,0,13.9,0,13.9,NA,NA,NA,122464,86035,51087,3.7,0,0,NA,NA,0,77.8,86.1,86.1 +2677,48303,"Lubbock County, Texas",Lubbock County, Texas,34041,314633,66.8,7.4,31.7,6.2,1.7,76.4,13.1,NA,2.43,3.07,24.9,5,55.3,45874,88.8,33.3,124045,22.7,1.3,1.9,0.8,2.4,17.2,18.5,11.4,88862,35170,63367,5.3,4.3,13.7,8.6,9.4,0.7,77.7,92.8,87.7 +2678,48305,"Lynn County, Texas",Lynn County, Texas,31411,5667,64.7,1.6,37.2,6.5,2.1,72.4,15.8,NA,2.71,3.22,1.5,4.3,76.7,41476,82.8,24.3,2066,32.3,1.1,0.6,0.1,3.3,NA,NA,NA,86918,33044,57411,5.5,4.3,14.5,4.7,7,0.1,64.6,89.9,86.4 +2679,48307,"McCulloch County, Texas",McCulloch County, Texas,29609,7565,74.8,0.8,47.1,5.4,2.2,78.5,23.6,19,2.42,3.12,13.3,6.2,70,39144,82.8,19.6,3072,28.9,0.9,0.6,0,3,NA,NA,NA,70413,30468,51919,9.7,11.5,19.7,25.6,15.3,0.5,71.5,84.7,86.1 +2680,48309,"McLennan County, Texas",McLennan County, Texas,33211,263608,63.7,14.1,34,6.4,1.8,75.8,15.1,20.7,2.65,3.24,23.6,5.2,61.2,45000,88.1,27.8,95966,18,1.7,1,0.5,6.2,17.1,21.3,9.9,88079,33019,63888,7.2,4.2,13.8,4.9,7.9,1,74.8,91,87.7 +2681,48311,"McMullen County, Texas",McMullen County, Texas,28988,623,61.6,0,32.6,8.7,3.2,62,16.4,NA,3.71,4.64,0,24.4,76.8,37727,88.4,15,168,16.7,0,0,0,0,NA,NA,NA,71042,23859,45833,5.4,0,18,7.6,20,0,63.7,83.9,74.4 +2682,48313,"Madison County, Texas",Madison County, Texas,31846,13574,62.2,15.7,35.8,6.2,1.4,77.8,15.2,25.9,2.73,3.36,8,25.2,70.8,41423,80.2,14.5,4140,15.1,0.2,0.6,0,4.5,NA,NA,NA,81177,26453,67128,7,1.8,14.9,11.1,8.9,3.3,68.9,89.7,85.4 +2683,48315,"Marion County, Texas",Marion County, Texas,26515,9631,71.4,21.6,50.6,3.9,2,82,26.7,NA,2.27,3.02,5.2,27.8,77.4,34699,86.6,16,4201,1.2,0.5,0.8,0.1,0.5,NA,NA,NA,64983,29117,47447,11.1,6.5,14.3,7.3,12.1,0.4,52.4,80.7,76.3 +2684,48317,"Martin County, Texas",Martin County, Texas,50939,5230,76.5,1.2,37.2,6.5,1.1,70.6,10.7,22,2.54,2.84,5.6,17.5,66.9,58125,83.8,17.8,2033,33.2,2.8,0,0,6.1,NA,NA,NA,116270,46701,77083,2,6.9,15.5,7.2,12.1,0,60.6,86.6,75.3 +2685,48319,"Mason County, Texas",Mason County, Texas,34834,3951,84.6,0.1,46.5,7.8,4.4,76.9,30.6,NA,2.54,3.21,4.5,12.1,75.9,40233,84.3,40.1,1550,17.7,2.5,0.3,0,5.4,NA,NA,NA,86998,36189,68750,5.7,1.3,14.2,10.7,12.1,0,69.2,88.1,86.6 +2686,48321,"Matagorda County, Texas",Matagorda County, Texas,31772,36274,55.9,10.5,37.5,7.2,1.4,74.3,17.9,NA,2.42,2.99,16,12.2,68.7,42251,82.7,22.8,14824,27,2.1,1.2,0.1,3.8,21.8,32.8,16.3,73895,30189,55174,9,7.5,17.9,18,14.3,0.9,69.8,87.6,81.7 +2687,48323,"Maverick County, Texas",Maverick County, Texas,27132,57770,34.7,0.2,30.2,8.7,1.1,68.8,11.9,NA,3.13,3.68,16.5,11.8,68.7,36606,67.7,15.3,18320,92.8,0.1,0.5,0.6,25.9,22.6,29.8,30.5,66676,21952,51270,2.4,7.5,24.6,5,13.5,1.7,56.1,89.7,79.7 +2688,48325,"Medina County, Texas",Medina County, Texas,34865,52419,65.1,2.8,39.6,5.6,2.1,77.3,17.3,NA,2.86,3.35,6.1,27.2,82.7,45145,86,22.2,17479,34.5,1.4,0.1,0.2,3.2,11.3,19.5,10.7,93117,32091,73462,10.7,2.7,12.7,5.4,8.3,0.6,71.6,86.5,86 +2689,48327,"Menard County, Texas",Menard County, Texas,29191,1964,81.2,0.4,58,4.2,3.3,76.3,32.2,NA,2.3,3.1,9.6,12.8,76.1,44290,76.8,22.9,833,32.9,0,0,0,8.2,NA,NA,NA,70099,32986,48191,12.4,16.6,21.8,40.9,37.7,0,56.3,85,76.1 +2690,48329,"Midland County, Texas",Midland County, Texas,48028,171496,59.9,7.2,32.6,8.4,1.4,71,10.6,21.5,2.53,3.18,23.3,8.8,68.2,61471,86.2,30.9,67057,33.3,0.8,1.7,1.3,6.1,10.6,12.8,11.7,126452,48908,93984,4.8,3.5,15.3,7.2,12.1,0.6,75.9,93.9,89.5 +2691,48331,"Milam County, Texas",Milam County, Texas,34548,25268,73.4,9.6,41.6,5.4,1.9,77.1,21.4,30.1,2.47,3.07,8.1,16.6,77.4,41148,86.7,19.5,10049,19,0.4,1,0.2,4,NA,NA,NA,83189,33760,59076,6.9,4.6,16.6,14.2,15.4,0.2,65.5,87.8,83.1 +2692,48333,"Mills County, Texas",Mills County, Texas,31793,4499,81.1,0.6,52.2,2.2,3.9,82,28.9,23.3,2.35,2.78,3.7,9.5,84.5,38655,89.5,28.1,1845,16.5,2.4,0.5,0,1,NA,NA,NA,84978,36334,64494,7.8,1.7,12.4,0,8.2,0.1,73.2,85.9,84.6 +2693,48335,"Mitchell County, Texas",Mitchell County, Texas,26153,8989,64.3,5.9,36.9,4.9,2,81.5,14.7,NA,2.95,3.83,7.3,15.2,79.5,41322,83.3,13.9,2561,24.6,0,0.6,0,3,NA,NA,NA,85561,28277,56033,4.9,3.7,20.4,3.8,6.6,0.7,61,88.1,80 +2694,48337,"Montague County, Texas",Montague County, Texas,31714,20599,91.3,0,44,5.3,2.3,77.1,21.8,NA,2.49,3.07,6.5,14.4,78.8,43702,86.9,17.8,8142,9.8,0.9,0,0,0.4,NA,NA,NA,77671,30689,62818,10.9,5.6,16.1,9.7,7.1,0.6,67.3,86.6,78.7 +2695,48339,"Montgomery County, Texas",Montgomery County, Texas,46712,654722,71.3,6,37.2,6.4,1.2,73.9,13.5,NA,2.77,3.22,16.6,11.7,71.7,60261,90.2,37.9,235474,19.9,3.1,2.3,0.9,3.3,9.3,12.6,7.8,133981,48550,97266,6.9,4.2,14.7,5.6,9.1,1.5,85,95.1,93.8 +2696,48341,"Moore County, Texas",Moore County, Texas,36181,21234,61.3,4.7,30.6,9,1.7,68.7,11.2,NA,2.9,3.45,15.4,13.7,62,43163,70.2,12,7275,46.2,2.4,1.3,4.2,16.3,NA,NA,NA,79523,27472,61325,4.4,1.7,19.9,9,14,6.5,62.4,93.1,85.6 +2697,48343,"Morris County, Texas",Morris County, Texas,31233,12014,65.4,18.6,42.4,5,2.5,77,21.7,26.1,2.36,2.85,8.4,15,75.4,41414,87.1,15.5,5038,6.5,1.3,0.7,0.7,0.5,NA,NA,NA,66173,27503,55082,12.1,7,13.1,0,6.5,2.6,62.9,90.1,84.4 +2698,48345,"Motley County, Texas",Motley County, Texas,24286,1267,84.8,2.6,51.4,7.3,2.9,82.6,31,NA,2.66,3.62,3.6,5.7,76.9,32188,85.7,22,476,9.5,0,0,1.1,2.5,NA,NA,NA,71578,29882,62857,11.6,1.1,19.9,4.3,8.8,2.3,73.1,79.2,73.9 +2699,48347,"Nacogdoches County, Texas",Nacogdoches County, Texas,27513,64897,65.8,17.5,31.8,6.1,1.4,76.5,15.4,NA,2.39,2.99,21.9,17.9,58,38274,85.2,26.5,25114,14,0.6,0.6,0.1,3.1,22.3,28.2,13,74527,28856,51528,6.7,6.5,15.3,2.8,7.3,0.7,68.9,88.6,85.3 +2700,48349,"Navarro County, Texas",Navarro County, Texas,28962,53735,61.2,10.9,37.4,6.8,1.6,73.3,16.7,27.9,2.84,3.41,12.5,16.9,68,38910,79.4,17.1,18484,20.9,0.4,1.1,0.2,4.6,16.8,23.7,11.6,79388,27846,59310,6.4,3.8,18.7,9.1,12.5,0.6,66.9,86.2,83.4 +2701,48351,"Newton County, Texas",Newton County, Texas,21909,12193,75.3,17.9,45.8,4.5,2.3,80,22.9,NA,2.46,2.99,1.3,39,81.5,32144,84.4,6.2,4898,1.6,1.3,1.4,0,0,NA,NA,NA,58670,25045,41044,6.7,7.8,21.1,5.9,10.3,0.8,41.4,89.8,89.2 +2702,48353,"Nolan County, Texas",Nolan County, Texas,28428,14565,68.9,4.2,36.5,6.3,3.6,74.4,20.1,16.6,2.44,3.13,13.4,6,66.1,37236,83.5,13.7,5834,28.6,1.1,0.1,0,4.4,NA,NA,NA,73488,31045,50160,6.1,5.9,15.5,5.6,10.8,0.5,60.8,83.6,80.7 +2703,48355,"Nueces County, Texas",Nueces County, Texas,32936,352829,54.8,4,36.8,6.2,1.9,76.1,15.6,21.4,2.63,3.21,25.4,4,59.9,43659,85.3,23.7,130770,41.4,1.4,2.1,0.2,4.2,17.7,25.9,14.6,88191,33560,66021,8.7,5.4,17.6,6.4,7.6,0.9,71.2,90.2,87.8 +2704,48357,"Ochiltree County, Texas",Ochiltree County, Texas,37146,9852,69,0,33.3,7.7,1.3,69.2,11.4,16.5,2.6,3.08,10.9,15.2,69.1,47311,80.9,19,3758,44.3,0.6,0,0.1,10.3,NA,NA,NA,84014,33106,64988,4,0.9,21.9,9.5,19.5,0,65.4,84.8,87.8 +2705,48359,"Oldham County, Texas",Oldham County, Texas,34620,2097,81.8,7.4,32.5,6,1.9,64.2,12.2,NA,2.66,2.98,4.8,14.9,71.2,47273,87.8,25.3,631,11.6,0.2,0,0.2,0.5,NA,NA,NA,101922,31637,76402,9.8,0.8,15.1,19.3,9,1.2,72.3,87.6,89.5 +2706,48361,"Orange County, Texas",Orange County, Texas,37483,84993,80.8,8.6,37.9,6.5,1.6,74.6,15.9,25.1,2.65,3.16,9.5,16.7,75,54366,91,17.8,31847,7.3,2.2,0.8,0.1,1.6,12.7,16.9,9.8,95090,36408,73372,6.6,6.2,16.1,10.5,10.9,0.6,72.2,90.9,90.6 +2707,48363,"Palo Pinto County, Texas",Palo Pinto County, Texas,33360,28920,82.2,2.5,41.1,6,2.3,76.8,20,NA,2.62,3.18,12.1,17.6,69.2,40515,86.1,18.7,10951,12,0.9,0.2,0,2.1,NA,NA,NA,83595,32196,64972,8.4,7.3,20.1,7.8,14.5,0.8,73,88.5,87.2 +2708,48365,"Panola County, Texas",Panola County, Texas,31761,22624,74.2,11.4,40.5,5.7,2,76.8,20.4,NA,2.61,3.27,6.3,22.6,79.3,47594,85,17.9,8486,6.6,1.1,0.7,0,0.6,NA,NA,NA,88542,35020,62593,9.4,2.7,17.9,4.9,15.2,3.8,65.9,83.3,83.2 +2709,48367,"Parker County, Texas",Parker County, Texas,44124,158079,84.9,1.4,39.3,6,1.4,75.2,15.8,32.4,2.88,3.25,7.5,14.1,82.1,58371,90.5,31.6,54237,9.1,0.8,0.9,0.1,1.5,7.8,8.5,8,127321,45471,102099,9.8,3.6,13,10.1,10.4,0.7,84.3,94.7,93.4 +2710,48369,"Parmer County, Texas",Parmer County, Texas,38962,9752,67,0.4,36.2,7.4,1.3,71.7,15,17.8,3.04,3.39,6.7,8.5,68.4,44424,72.7,16.7,3183,57.6,0.9,0,0,11.2,NA,NA,NA,87645,29776,68164,4.2,1.7,22.7,17.7,25.2,2.6,62,89.6,90.1 +2711,48371,"Pecos County, Texas",Pecos County, Texas,34888,14983,58.5,4.3,37.3,5.5,0.9,75.8,13.3,17.4,2.49,3.05,11.6,20.2,72.7,51824,79.1,13.4,5108,61.1,2.7,0,0.5,4.6,NA,NA,NA,89131,29690,67689,4.9,1.3,14.7,12.5,9.6,7.5,62.7,88,83.4 +2712,48373,"Polk County, Texas",Polk County, Texas,30151,51780,77.1,7.9,43.9,5.1,1.3,79.6,18.9,NA,2.59,3.04,6.8,26,77.5,38483,81.8,13.4,18575,10.3,0.4,0.6,1,1.4,18.1,30.3,11.4,74300,28346,59066,9.3,8,15.8,9.5,10.5,0.1,70.4,83.6,85.1 +2713,48375,"Potter County, Texas",Potter County, Texas,30539,116634,61.9,10.6,35.1,6.9,1.7,73.1,13.9,NA,2.6,3.4,19.6,8,56.5,40352,77.4,17.3,42363,24.9,0.7,3.3,1.6,5.5,20.9,29.7,16.2,72783,27406,50448,6.8,3.8,20.5,9.5,14.2,1.6,66.5,89.1,86 +2714,48377,"Presidio County, Texas",Presidio County, Texas,18175,6043,36.9,1.1,42,7.3,1.4,72.2,21.7,NA,2.58,4.2,14.8,16.2,74.4,24866,66.1,20.2,2340,73.5,0,0,0,19.9,NA,NA,NA,52927,22463,29014,2.9,10.9,26.7,17.9,22.2,0,64.1,76.4,76.5 +2715,48379,"Rains County, Texas",Rains County, Texas,36765,12505,87.2,2.9,46.2,4.3,1.9,80.7,24.2,39.9,2.63,2.98,4.9,19.6,82.9,47149,89.8,25.2,4723,5.7,0.6,0.9,0.8,2.1,NA,NA,NA,98847,38483,64874,13.2,2.6,14.5,5.7,7.4,0,67.6,87.2,88.9 +2716,48381,"Randall County, Texas",Randall County, Texas,41426,143791,77.8,3.6,36.8,6,1.5,76,15.7,NA,2.53,3.12,17.6,6.5,68.6,53042,93.6,32.1,55758,12.6,1.9,1.2,0.8,1.4,9.5,10.2,10.4,104696,41758,80905,9.2,2.7,10.4,5.7,6.2,0.1,79.8,91.5,91.2 +2717,48383,"Reagan County, Texas",Reagan County, Texas,39923,3259,38.1,5.4,29.4,10.6,0.6,65.3,9.3,NA,3.1,3.66,5.5,19.5,76,50117,89,17,1046,46.4,0,1.9,0,7.6,NA,NA,NA,84980,27477,70288,1.9,8.2,17,13.6,13.3,0,61.8,89.9,87.8 +2718,48385,"Real County, Texas",Real County, Texas,22582,2821,94.6,1.4,56.5,5.6,2.7,73.3,35.9,NA,2.66,3.04,2,31.7,75.6,25208,86.9,19.1,1021,18.1,0,0,0,2.3,NA,NA,NA,69770,23000,45417,13.4,8.5,16.8,11.9,5.5,0,70.2,82.9,70.7 +2719,48387,"Red River County, Texas",Red River County, Texas,28514,11621,77.1,16.4,49.1,6.8,1.5,79.8,25.6,NA,2.29,2.83,8,14,70.4,41551,87.1,15.6,4993,4.3,0.5,0.4,0,1.3,NA,NA,NA,62897,28337,46912,8.8,2.2,15.4,4.8,12.3,1.8,57.5,79.9,72.2 +2720,48389,"Reeves County, Texas",Reeves County, Texas,24941,13219,41.7,1.5,34.4,6.6,2,75.2,12.3,16.7,2.94,3.63,12.7,10.6,79,38275,71.3,6.9,4145,75.4,0,0.2,0,19,NA,NA,NA,70309,24438,56056,3.8,4.6,20.2,16.6,18.4,0.6,64.3,80,74.1 +2721,48391,"Refugio County, Texas",Refugio County, Texas,26875,6693,61.9,7.4,43.9,5.7,2.5,77.7,22.5,NA,2.76,3.6,5.2,11.7,78,36799,82.6,13.8,2372,38.5,0.4,0,0.1,3.8,NA,NA,NA,67832,26972,58016,9.1,5.6,16.7,8.8,10.5,1.3,62.2,86.9,80.9 +2722,48393,"Roberts County, Texas",Roberts County, Texas,37059,785,95.2,0.3,39.4,2.5,3.4,72,16.8,17.3,2.59,3.36,0,11.6,85.5,40924,97.5,22,303,4.3,5.3,0,0,0,NA,NA,NA,80866,31522,66118,8.8,0.6,12.7,10.8,1.7,9.8,79.5,85.8,76.6 +2723,48395,"Robertson County, Texas",Robertson County, Texas,32950,16973,63.5,20.5,40.9,6.3,3.5,76.1,20.2,NA,2.59,3.21,12.7,17.5,73.3,45564,84.8,19.1,6480,12.8,0.4,0.3,0.5,2.4,NA,NA,NA,79904,31209,66250,7.1,8.5,11.9,15.4,10.8,0.2,61.9,82.8,82.1 +2724,48397,"Rockwall County, Texas",Rockwall County, Texas,56496,116931,71.2,8.5,37.6,6,1,73.3,12.5,NA,2.94,3.34,9.3,3.2,82.6,69140,94.2,44,39513,13.4,3,2.4,1.3,1.6,NA,NA,NA,158752,54098,124917,7.3,3.6,9.1,9.1,8.3,1.6,92,95.9,96.6 +2725,48399,"Runnels County, Texas",Runnels County, Texas,33103,9880,69.7,3,41.8,5.8,2.5,76.4,20.9,24.3,2.55,3.11,4.6,6.7,74.7,38951,86.2,19.1,3800,30.9,1.9,0,0,2.6,NA,NA,NA,78798,31419,63490,5.9,3.3,15,14.6,15.1,0.9,65.2,86.3,87.4 +2726,48401,"Rusk County, Texas",Rusk County, Texas,33037,52613,67.6,13.2,38.8,5.5,2.1,77.3,17.1,NA,2.64,3.15,5.9,18.3,80,44266,84.9,17.9,17963,9.9,0.4,0.6,0.1,1.8,14.3,21.3,9.3,92968,33420,67506,7.2,3.6,14,6.6,9.7,0.7,68.7,84.3,75.1 +2727,48403,"Sabine County, Texas",Sabine County, Texas,30709,9998,86.6,4.6,54.3,5.5,3.6,82.3,29.8,NA,2.21,2.66,3.4,32.4,85.5,46848,87.3,17.8,4469,1.7,0.2,1.4,0,0.1,NA,NA,NA,84919,38367,59924,11.6,5.7,14.1,2.4,15.2,0.6,71.6,79.8,84.8 +2728,48405,"San Augustine County, Texas",San Augustine County, Texas,24349,7889,70.7,22.1,48.8,4,3.6,79.9,27.1,NA,2.54,2.89,7.9,35.5,74.8,30994,81.7,11.5,3017,5.8,0.3,0,0,0,NA,NA,NA,64927,25902,46338,11.5,9.9,20,9,16.5,0,57.3,82.1,78.8 +2729,48407,"San Jacinto County, Texas",San Jacinto County, Texas,29827,27983,73.2,8.5,45,5.1,2.2,78.4,21.1,NA,2.66,3.11,3.2,26.8,84.2,41994,84.4,15.8,10480,16.3,1.6,0,0.5,3.2,NA,NA,NA,81516,30234,59526,9.3,7.1,19.6,5.8,11.1,0.9,68.4,87.9,82.8 +2730,48409,"San Patricio County, Texas",San Patricio County, Texas,31059,69519,64.3,1.6,37.1,6.7,1.6,74,15.4,23.3,2.81,3.39,16.5,9,66.3,42496,83.9,17.2,24496,40.1,0.8,1.3,0.1,2.7,15.1,22.1,13.5,87501,31692,67512,9.5,4,18.1,5.8,11.2,0.4,71.1,87,81.9 +2731,48411,"San Saba County, Texas",San Saba County, Texas,28042,5802,77.6,2.4,40.1,4.6,2.3,80.8,22.5,NA,2.47,3.15,9,9.5,68.9,36432,84.5,21.7,2095,21.7,1.7,0.3,0.8,5.7,NA,NA,NA,73917,29823,54855,6.4,2.4,25.7,16.2,26,0.3,66.7,83.9,88.2 +2732,48413,"Schleicher County, Texas",Schleicher County, Texas,36813,2426,59.4,0.7,39.8,7.9,1.7,76.1,21.4,NA,2.62,3.01,1.2,8.7,87.6,45964,81,24.2,919,43.4,0,0,0,5.2,NA,NA,NA,86955,33900,90141,6.4,5.4,25.3,65.8,24.1,0,58.4,83.8,72.5 +2733,48415,"Scurry County, Texas",Scurry County, Texas,34541,16633,68.9,2.7,36.4,6.3,1.6,74.7,15.4,19.7,2.48,3.06,9.8,5.7,77.1,43052,85.2,17.9,5931,31.2,0,0.7,0,4.1,NA,NA,NA,85314,30274,62689,6.3,1.9,19,22.5,20.7,0,70.7,89.8,85 +2734,48417,"Shackelford County, Texas",Shackelford County, Texas,38452,3169,86.8,1.2,43.9,5.4,2.9,77.4,20.2,NA,2.35,2.87,5.6,12.6,81.9,46250,92.4,34.6,1329,7.1,2.3,0.5,0,0,NA,NA,NA,80358,34010,64659,5.7,4.7,13.6,9.3,9.8,0,72.2,89.5,87.3 +2735,48419,"Shelby County, Texas",Shelby County, Texas,29238,24108,67.1,15.6,40,7,1.4,73.7,17.7,24.3,2.61,3.01,5.8,29.4,75,37800,82.5,13.7,9177,13.1,0.3,0.4,0,2.6,NA,NA,NA,74633,28183,50436,5.3,4,19.2,12.1,12.7,0.9,62.2,83.8,79.1 +2736,48421,"Sherman County, Texas",Sherman County, Texas,40525,2434,68.5,0.2,36.5,5.6,2.1,78.1,16.4,NA,2.85,3.33,4,5,74.5,49836,78,25.6,842,34.1,0,3.2,0,7.5,NA,NA,NA,147760,52788,74167,5.5,0,15.3,10.5,9.5,3.5,80,93.8,95.1 +2737,48423,"Smith County, Texas",Smith County, Texas,34117,238014,69,16.7,37.4,6.3,2.2,75.7,17.1,NA,2.83,3.4,15.5,9.9,69.3,44171,88,27.7,81690,13.5,1,0.9,0.8,3.4,12.2,16.2,8.8,96148,34785,71923,6.1,3.9,16.7,7.2,11,1,71,91.7,88.8 +2738,48425,"Somervell County, Texas",Somervell County, Texas,40850,9510,83.5,1.9,44,4.6,3.3,78.3,19.6,31.7,2.57,2.94,5.6,23.3,81.9,46853,91.3,25,3562,14.7,1,0,0,1.6,NA,NA,NA,101081,40711,83382,6.8,2.3,11.1,19.4,7.5,0,79.8,90.7,88.6 +2739,48427,"Starr County, Texas",Starr County, Texas,18938,65809,44.2,0.3,29.1,9.2,1.6,67.2,11.2,24.4,3.49,4.08,7.8,10.6,71.6,25742,60.1,13.3,18692,97.2,0,0.1,0,30.2,33.5,42.3,35.4,58105,18063,38182,2,10.2,31.3,11.3,18.9,3.1,53.6,85.5,72.8 +2740,48429,"Stephens County, Texas",Stephens County, Texas,28502,9278,79.3,3.2,41.6,5.4,2.1,78.6,19.7,26.1,2.47,3.06,14.6,12.4,78.6,34283,83.3,18.2,3560,16,0.3,0.5,0.4,4.2,NA,NA,NA,73664,30030,54695,3.6,5.6,14.4,9.4,6.9,0.4,61.4,90.9,86.5 +2741,48431,"Sterling County, Texas",Sterling County, Texas,36905,1389,81.7,0.1,31.4,9.1,1.2,64,13.2,NA,3.37,3.84,2,21.1,83.3,56667,87.9,24.5,402,29.9,0,0,0,2.2,NA,NA,NA,112935,33497,78750,2.4,1.2,25.8,8.9,34.6,0,77.1,96.5,92.8 +2742,48433,"Stonewall County, Texas",Stonewall County, Texas,34000,1244,92.2,0.6,46.5,5.5,3.2,73.2,25.6,NA,2.53,3.3,5.5,15.8,85.9,37237,84.5,14.1,476,13.7,0,0,1.9,2.9,NA,NA,NA,113326,41521,61250,6.6,3.8,14.2,6.7,24.9,0,62.2,83.2,86.8 +2743,48435,"Sutton County, Texas",Sutton County, Texas,35237,3306,49.2,0.1,34.9,7.8,1.6,72.7,15.9,NA,2.66,3.11,12.9,14.2,67,41793,80.7,15.5,1236,57.4,0,0,0,6.6,NA,NA,NA,79457,30353,75000,9.2,5,17.9,0,10.2,0.2,55.4,80.5,74.4 +2744,48437,"Swisher County, Texas",Swisher County, Texas,26510,6981,69.1,8,36.5,6.2,2.5,75.7,17.6,20.4,2.58,3.46,6.1,6.9,66,34891,80.3,20.1,2453,34.8,0,0.1,0.2,5.5,NA,NA,NA,60217,23065,39031,5.1,4.1,22.2,26.6,22.4,0,64.9,80.3,73.6 +2745,48439,"Tarrant County, Texas",Tarrant County, Texas,41619,2135743,52.1,17.5,35.1,6.5,1.2,74.3,12,26.7,2.74,3.37,27,1.8,59.4,51834,87.1,34.5,769285,20.2,3.4,3.6,2.3,5.3,10.9,15.3,9.1,112126,41364,81905,6.4,4.3,16.6,9.4,11.6,1.6,82,93.7,92.6 +2746,48441,"Taylor County, Texas",Taylor County, Texas,34047,144259,70.5,8,33,6.9,2,75.4,14.8,16.4,2.53,3.07,20.7,4.7,59.8,43056,90.6,29,54390,18.9,1.7,2.1,0.8,2,13.5,14.3,12.6,87167,33332,66406,9.2,2.1,14.5,6.8,8.1,1.5,75.7,90.6,90.8 +2747,48443,"Terrell County, Texas",Terrell County, Texas,31932,851,83.4,0,60.9,0.7,3.1,85.9,37.1,12.1,1.88,2.67,1.1,3.5,88.7,37279,94,32.3,453,43,0,0,0,1.5,NA,NA,NA,63741,35603,46989,10.7,0,10.5,0,9.2,0,75.7,93.8,82.6 +2748,48445,"Terry County, Texas",Terry County, Texas,31320,11699,56.9,4.4,35.7,7.3,2.1,71.9,15.1,NA,2.56,3.21,5,8.8,64.8,39045,77.7,11,4271,45.4,2.3,0,0.2,8.9,NA,NA,NA,66207,24987,45905,6,3.9,23.2,23.6,18.5,0.7,57.3,88.2,86.5 +2749,48447,"Throckmorton County, Texas",Throckmorton County, Texas,30088,1589,93.2,0,42.7,7.5,2.3,79.1,24.5,NA,2.32,3.18,8.6,8.7,73.2,33681,92.7,25,686,8,1.6,0.9,0,1.9,NA,NA,NA,73249,33147,58864,8.4,3.2,24.4,12.8,14.6,0,63.6,92.9,82.9 +2750,48449,"Titus County, Texas",Titus County, Texas,30581,31284,56.7,9.5,34.7,7.1,1.4,71.4,14.7,NA,2.82,3.37,16.1,14,69,37495,77.1,15.4,11011,32,0.8,0.7,0,6.8,17.3,23.4,11.7,76026,26514,59220,5.8,3.1,21.2,13.8,16.4,1.4,59.1,89.7,84.3 +2751,48451,"Tom Green County, Texas",Tom Green County, Texas,34028,119398,69,3.8,35.8,6.3,2.1,76.1,16.5,NA,2.47,3.12,17.2,5.6,66.8,43406,87.2,25.1,46094,27.2,1.9,1.2,0.3,3.9,11.7,13.7,10,87666,34888,66254,9.6,2.6,14.5,6.9,11.4,0.7,78.2,90.1,86.6 +2752,48453,"Travis County, Texas",Travis County, Texas,53091,1307625,59.8,8.2,35.5,5.7,1,79.5,10.7,25.4,2.28,2.98,39.1,3.1,53,61209,91.5,55.5,561491,20.4,4.4,4.7,1.4,4.6,11,13.5,9.5,137817,59289,97169,4.6,4.1,12.2,6.6,9.6,1.4,89.1,94.8,93.3 +2753,48455,"Trinity County, Texas",Trinity County, Texas,30768,13850,80,9.1,49.8,4.7,2.8,80.4,27.1,37.3,2.27,2.8,6.1,37.1,77.6,40358,89,15.9,6033,7.8,1.4,0.3,0,1.8,NA,NA,NA,73199,31706,51663,9.5,6.6,15.7,1,15.1,0.2,66.3,87.3,84.3 +2754,48457,"Tyler County, Texas",Tyler County, Texas,28724,20084,80.6,10.6,42.5,4.1,2.3,80.5,22.1,NA,2.54,3.07,6.8,20.5,78.8,44309,83.1,12,7073,5.7,1,0.8,0,1,NA,NA,NA,91760,32501,50647,9.1,9.3,17.1,0.3,12.2,0.2,67.3,85.1,81.5 +2755,48459,"Upshur County, Texas",Upshur County, Texas,31800,41864,81.4,7.2,40.3,5.6,1.6,76,18.3,NA,2.69,3.23,5,19.4,79.3,44359,86.8,17.5,15372,5.2,0.6,0.5,0,0.6,13.3,15.7,11.3,84875,32748,62794,9.2,4.3,13.2,5.8,8.6,0.5,70.5,89.3,87.8 +2756,48461,"Upton County, Texas",Upton County, Texas,31471,3227,43.3,0.9,41.1,2.2,2.3,77.5,18.6,NA,2.38,3.03,2,18,75.2,44821,81.5,8.8,1325,46.4,0,0.4,0,5.5,NA,NA,NA,71782,30320,52321,3.4,4.3,14.8,17.4,12.3,1.9,50.3,88.5,75.1 +2757,48463,"Uvalde County, Texas",Uvalde County, Texas,25683,24810,67.2,1.4,34.6,7.1,2.5,73.8,16.4,17.4,2.85,3.57,14.5,11.6,66.5,35616,78.3,20.2,8422,55.9,0.2,1.8,0.4,9.2,NA,NA,NA,74085,26437,57849,7.6,3.1,20.1,21,19.6,0.2,63.6,86.2,84.5 +2758,48465,"Val Verde County, Texas",Val Verde County, Texas,29794,47647,62.2,1.4,32.3,7.8,1.9,71.9,13.9,NA,2.74,3.3,17,7,66.9,38950,75.1,21.3,16706,72.2,0.7,0.7,0,12.4,18.3,21.5,28.4,75738,27114,59673,9.1,4.5,19.4,8.1,12.7,1.7,68.1,86.6,75.8 +2759,48467,"Van Zandt County, Texas",Van Zandt County, Texas,32800,61323,88.3,2.7,42.1,5.7,2.3,77,20.2,NA,2.69,3.15,4.5,21.3,80.9,43666,87.3,18.2,22555,9,0.9,0.3,0,1.1,11.5,15.2,10.7,90821,34078,68274,9.1,3.4,18.2,13.2,13.6,0.2,70.9,88.5,83.6 +2760,48469,"Victoria County, Texas",Victoria County, Texas,34039,91281,61.6,5.7,36.6,6.6,1.9,74.8,16.7,22.2,2.63,3.15,19.4,9.5,67.6,44063,85.1,19.7,34142,25.9,1.2,1,0.2,2.1,16,21.4,9.8,88149,33305,70101,6.8,4.4,16.8,10.2,12.7,0.7,68,89.2,80.3 +2761,48471,"Walker County, Texas",Walker County, Texas,29954,78292,61.9,20.3,37.1,4,1.8,85.3,13.7,26,2.45,3.26,28.1,19.6,57.1,41591,84.8,21.4,25180,12.8,0.7,0.6,1.7,1.4,17.9,18.3,9.8,68951,24983,49862,6.6,5.7,14.8,7.6,12.9,0.7,75.2,90.5,85 +2762,48473,"Waller County, Texas",Waller County, Texas,35373,59455,46.6,23.6,30.8,6.2,0.8,76.2,11.4,31.8,3.04,3.45,15,20.5,70.5,48629,83.9,26.6,17981,29.3,1.4,0.8,0.2,6.3,13.5,18.3,8.5,105868,33960,76135,4.9,5.4,20.6,15.9,18.2,2.2,80,94.3,86.7 +2763,48475,"Ward County, Texas",Ward County, Texas,35829,11255,64.5,6.3,34.9,7.6,1.2,70.9,13.8,NA,2.56,3,9.6,17.6,78.4,52093,81,10.7,4345,47,1.1,1.1,0,6.6,NA,NA,NA,99358,35376,71719,6.1,4.4,16,9.8,10.8,3.6,65.5,91.6,81.9 +2764,48477,"Washington County, Texas",Washington County, Texas,39136,36156,69,15.2,40.9,5.2,2.7,78.5,22.3,21.2,2.21,2.81,14,10.9,73.1,46862,90.4,31,15277,11.9,1.5,1.9,0,2.9,NA,NA,NA,101919,41902,75085,7.2,2.3,15.1,14.1,18.3,0.8,69.3,85.4,82.8 +2765,48479,"Webb County, Texas",Webb County, Texas,27831,267731,37.7,0.5,29.8,8.3,1.3,68.4,10,NA,3.33,3.78,20.1,8.3,63.9,37231,69.8,20.9,79572,92.4,0.5,0.7,0.1,27.3,21,28.4,22.9,80723,24408,62506,3.1,5.4,28.4,10.6,15.9,5.1,66.7,91.5,84.2 +2766,48481,"Wharton County, Texas",Wharton County, Texas,34112,41651,63.4,13.3,38.4,6.8,2.3,74.4,17.9,25.3,2.66,3.26,11.5,10.3,70.6,43696,83.9,19.2,15422,25.9,0.9,0.4,0.8,2.6,14.5,14.1,16.5,89055,32579,66100,6.3,6.8,16.5,12.1,13.5,0.9,66.9,81.3,81.3 +2767,48483,"Wheeler County, Texas",Wheeler County, Texas,31608,4902,81.9,1.7,40.6,4.8,2,75.5,20.6,22.6,2.61,3.04,3.6,9.9,78.5,39652,87.6,19.5,1849,16.8,1.2,0.6,0.6,3.3,NA,NA,NA,77469,30869,67964,4.7,3.6,19.6,1,10.3,1.3,73.3,85.6,84 +2768,48485,"Wichita County, Texas",Wichita County, Texas,33009,129842,73.9,10.3,35,6.2,1.7,77,15.1,NA,2.42,3.05,20.5,3.4,61.5,42840,88,24.8,48935,11.1,1.6,1.6,0.9,2.8,15.9,22.1,11.4,83994,32762,62168,11.3,3.1,15.2,8.6,9.9,1.4,73,87.9,86.9 +2769,48487,"Wilbarger County, Texas",Wilbarger County, Texas,26426,12712,66.7,6.2,39.5,7.4,1.5,77.5,18.9,NA,2.51,3.36,13.1,5.5,62.6,33436,81.3,17.4,4737,18.7,0.3,2,0,3.2,NA,NA,NA,69207,28997,51626,8.5,7.4,10.6,0,0.4,0,67.2,89.6,78 +2770,48489,"Willacy County, Texas",Willacy County, Texas,24696,20218,56.8,1.4,33.7,5.9,1.7,76.1,14.6,NA,3.31,3.9,7.4,10.6,72.4,34867,67.7,12.2,5671,79.7,0,0,0,15.2,NA,NA,NA,63701,22607,45645,3.6,8,26.5,16.9,14.7,3.3,55,80.2,75.2 +2771,48491,"Williamson County, Texas",Williamson County, Texas,52342,643889,63.8,6.9,37.2,6.1,1.2,75.5,12.8,27.9,2.65,3.16,21.7,2.2,67.1,62125,94.2,47.4,241754,16.2,5.2,6.3,1.1,3,6.3,6.8,6.6,134720,51260,108309,8,3.7,9.5,5,6.3,1.2,90.9,95.4,95.5 +2772,48493,"Wilson County, Texas",Wilson County, Texas,42735,51501,72.1,1.8,40.1,5.5,1.2,76.5,16.7,NA,2.87,3.28,4.3,24.1,85.7,56384,89.6,26.3,17785,29.4,2.1,0.4,0.1,2.2,NA,NA,NA,116219,41249,92461,12.2,4,11.3,3.4,7,0.3,81.8,91.9,86.9 +2773,48495,"Winkler County, Texas",Winkler County, Texas,44698,7540,58.2,4.3,35.3,7,0.7,71.6,13.4,27.3,2.68,3.09,2,10,86.5,59971,73.8,10,2781,55,0,1.2,0,5.9,NA,NA,NA,94977,34666,91898,4.7,2.1,18,18,17.9,6.9,67.9,90.6,88.9 +2774,48497,"Wise County, Texas",Wise County, Texas,40416,72359,84.4,1.5,40,5.9,1.4,75.4,15.4,NA,2.9,3.3,4.2,22.5,82.5,50301,86.6,20.6,24581,13.9,1.2,1.4,0.1,2.7,9.1,12.2,9.2,110406,37908,89897,8,3.8,15,7,10,0.1,78.8,91.1,88.5 +2775,48499,"Wood County, Texas",Wood County, Texas,32725,46094,84.2,4,48.4,4.4,3,81.1,27.1,NA,2.44,2.99,7.1,18.2,79.9,42229,86.7,22.3,18221,5.8,1.3,0.3,0.2,0.3,12.6,14.8,11.1,85733,35322,62524,11.6,5.3,15.2,10.7,10.8,0.3,69.5,86,86 +2776,48501,"Yoakum County, Texas",Yoakum County, Texas,42866,7589,58.8,0.1,33,9.1,1.8,67.6,11.5,NA,2.88,3.38,4,17.6,75.4,59973,75.7,14.2,2616,47.2,7.6,0,0,12.9,NA,NA,NA,101220,35856,82261,1.2,2.9,21.2,17.9,20.1,5.6,68.2,91.6,92.3 +2777,48503,"Young County, Texas",Young County, Texas,35409,17963,83.2,1.7,40.7,5.6,2.6,76.2,21,NA,2.28,2.85,11.5,7.9,72.7,46692,89.4,23.6,7763,12.4,1.2,0.4,0.3,2.8,NA,NA,NA,85404,36613,63723,8.4,3.3,20.2,13.7,15.8,0.8,66.7,88.3,89.7 +2778,48505,"Zapata County, Texas",Zapata County, Texas,20004,13855,39.5,0.3,31.5,7.9,2,67.8,13.5,25.1,2.96,3.68,10.3,28.8,74.6,27591,64.1,13.3,4612,89.1,0,0.3,0,24.1,NA,NA,NA,56798,19131,36527,2.4,6.7,27.7,10.4,11.8,1.6,49.3,81.1,71.2 +2779,48507,"Zavala County, Texas",Zavala County, Texas,21250,9532,36.4,0.8,32.5,7.2,2.2,70.5,15.4,20.6,2.78,2.99,12.8,19,71,26214,73.4,9.6,3411,92.4,0,0,0,10,NA,NA,NA,55486,20605,41887,2.5,7.6,13.1,1.8,6,0.3,60.5,79.5,76.3 +2780,49001,"Beaver County, Utah",Beaver County, Utah,39480,7172,90.8,0.2,34.4,7,1.1,70.1,14.7,NA,2.89,3.34,0.7,5.2,82.4,49391,93.4,22.7,2386,11,0.8,0,0,1.8,NA,NA,NA,91447,29979,85603,5.6,2.5,19.9,23.2,26.3,0,67.4,93.2,80.5 +2781,49003,"Box Elder County, Utah",Box Elder County, Utah,38050,59725,89.3,0.4,32.9,7.5,1.4,69.1,12.8,22.6,3.1,3.59,13.7,3.5,75.7,47685,92.6,26.7,19150,7.9,1,0.4,0.1,1,8.6,8.8,6.4,94546,31738,77865,5.2,2.4,7.9,7.5,5.3,0.2,83.2,91.7,92.6 +2782,49005,"Cache County, Utah",Cache County, Utah,31454,137031,85.4,0.8,25.9,7.7,1.2,70.3,9.9,NA,3.09,3.44,25.3,1.7,63.6,46077,94,40.4,43118,10,2.3,2.2,0.3,1.8,13.1,12.9,5.6,100825,32080,78292,3.6,2.1,6.8,4.2,4.5,0.3,91.5,94.2,92.3 +2783,49007,"Carbon County, Utah",Carbon County, Utah,28305,20446,89.1,0.8,38.8,6.3,1.4,74.3,18.8,NA,2.5,3.12,12.5,10.3,68.1,41731,91.8,18.4,8023,6.7,0.9,0.3,0.4,0.7,NA,NA,NA,70471,28462,53673,5.8,4.8,7.7,6.6,6,0.3,74.8,86.2,83.2 +2784,49009,"Daggett County, Utah",Daggett County, Utah,31250,747,92.6,0,45,4.4,1.1,77.4,18.1,NA,2.65,3.85,0,30.2,82.8,38304,91.4,11.6,262,0.4,0,0,0,0,NA,NA,NA,77359,29882,58750,4.8,8.4,6.3,5.9,3.3,0,84.7,88.2,88.5 +2785,49011,"Davis County, Utah",Davis County, Utah,44828,366742,85.5,1.2,32.3,7.3,1,69.2,10.7,22.9,3.18,3.6,15.2,2.5,77.4,57544,96,38.7,114674,9.8,2.7,2.8,0.3,0.8,6,7.4,6.6,129739,41451,108058,6.6,2.2,5.9,4.1,4.9,0.6,89.7,95.1,94 +2786,49013,"Duchesne County, Utah",Duchesne County, Utah,35387,19932,88.2,0.1,33.8,8,1.2,67.6,12.8,NA,2.93,3.35,7.9,14.8,79.3,48069,90.6,17,6714,6.5,0.8,1.1,0.8,1,NA,NA,NA,92726,30966,74738,4.6,3.1,11.9,7.2,8.3,1.1,79.4,89.8,89.7 +2787,49015,"Emery County, Utah",Emery County, Utah,31974,9968,94.1,0,39.1,6.2,1.7,71.6,18,NA,2.88,3.46,7.8,12.6,79.6,45304,93.2,17.2,3428,5.2,0.6,1.6,0.6,0.6,NA,NA,NA,83815,29645,69956,6.7,3.2,7.2,4,3,0.6,78,90.8,88.2 +2788,49017,"Garfield County, Utah",Garfield County, Utah,27489,5170,94.7,0.1,41,5.5,2.9,78.3,22.7,13.6,2.41,2.96,7.4,10.3,73.5,34286,95.1,32,2027,5.7,0.8,0.7,0,0.6,NA,NA,NA,81639,31935,61688,4.7,4.1,12.3,1.2,7.3,0.7,79.5,87.6,80.8 +2789,49019,"Grand County, Utah",Grand County, Utah,38495,9697,84.1,0,39.6,4.3,0.7,81.6,20.2,NA,2.14,2.66,14.9,13.3,69.8,44472,94.3,34.7,4466,4.6,1,1.3,3.2,2.2,NA,NA,NA,85833,41443,62521,4.9,2,12.6,8.8,21.4,0,77.9,87.7,87.8 +2790,49021,"Iron County, Utah",Iron County, Utah,30096,60201,87.8,0.6,29.9,6.7,1.3,72.3,13.4,NA,3.01,3.51,18.3,4.8,67.4,39496,93.2,30.3,19658,8.3,1.8,1.7,0.3,0.7,13.6,12.3,8.1,86314,28886,65527,5,3,9.3,8.9,7.2,0.2,85.2,95.2,89.8 +2791,49023,"Juab County, Utah",Juab County, Utah,35036,12273,93.8,0.7,30.5,7.5,1,66.3,12.6,NA,3.23,3.58,6.8,2.1,81,46881,92.5,20.2,3756,5.9,0.3,0.5,0.1,0,NA,NA,NA,100958,32467,89803,4.8,2.1,7,5.5,6.1,0,82,92.8,87.1 +2792,49025,"Kane County, Utah",Kane County, Utah,36948,7996,90.8,0.2,43.7,5.4,0.7,77.4,24,NA,2.42,3.09,6.4,10.5,81.7,40768,94.7,32.1,3192,1.8,1.2,0.4,0.3,0.3,NA,NA,NA,95094,38369,75000,9.8,3.7,7.8,4.7,2.9,1.5,91.2,89.7,91.1 +2793,49027,"Millard County, Utah",Millard County, Utah,32212,13179,86.1,0.4,33.4,7.3,2.3,68.6,17.1,NA,3.04,3.57,4.7,5.8,78.4,40707,91.3,23.1,4267,10.3,0.9,1.3,0,0.9,NA,NA,NA,81384,27109,70877,6.8,5.8,11.5,6.5,11.9,0,79.8,91.5,85.4 +2794,49029,"Morgan County, Utah",Morgan County, Utah,44860,12585,94.3,0.2,32.5,6.3,0.6,66,12.1,26,3.49,3.78,3.2,0,90.2,67391,97.6,38.8,3605,4.6,4.8,0.9,0.5,0,NA,NA,NA,152810,43194,126092,6.2,2,5,4.7,4.6,0,94.1,96.3,94.7 +2795,49031,"Piute County, Utah",Piute County, Utah,23662,1705,95.8,0.1,47.1,3.3,1.6,81.3,28.4,NA,2.99,4.11,1.1,6.3,92.6,36802,85.6,19,567,4.6,0,0,0,0,NA,NA,NA,57584,23171,44650,8.8,6.3,9.7,0,0.8,0,70.2,71.1,72 +2796,49033,"Rich County, Utah",Rich County, Utah,31558,2588,89.5,0,37.2,8.2,1.6,67.7,21.2,NA,3.14,3.53,4.8,6.6,80.4,39063,95.5,24.5,817,4.5,1.2,0,0.4,2.2,NA,NA,NA,87420,29074,76875,8.2,0.7,7.3,7.3,10.2,0,89,97.6,94.4 +2797,49035,"Salt Lake County, Utah",Salt Lake County, Utah,43718,1184689,72.8,1.8,33.8,6.6,1.2,74.1,11.6,22.4,2.8,3.4,27,1.8,67,54189,91.7,38.6,416589,13.8,4.4,4.2,1.1,3.1,8.4,9.1,7.4,121509,43393,94658,4,3.3,9.6,7,7.9,0.9,88,94.2,93.6 +2798,49037,"San Juan County, Utah",San Juan County, Utah,26774,14466,46.7,0.1,34.6,6,2.8,72.1,16.2,NA,3.02,3.55,4.4,18.1,79.8,40544,87.7,20.2,4650,5,0.5,1.7,39.5,9.5,NA,NA,NA,73598,24634,54890,5.3,10.4,18.3,15.4,17.3,0.8,68.2,80.8,70.3 +2799,49039,"Sanpete County, Utah",Sanpete County, Utah,26945,29209,86.7,0.9,33.8,6,1.2,75.6,14.4,NA,3.03,3.4,8.9,3.8,76.5,41144,90.7,23.2,8748,8.5,2.1,1.6,0,1.2,NA,NA,NA,84735,26663,67459,5.2,4.1,11,6.2,7.9,0,85,92.7,86.6 +2800,49041,"Sevier County, Utah",Sevier County, Utah,33655,21854,92.9,0.2,36.7,6.5,1.4,71.6,16.7,17.3,2.91,3.35,9.8,6.3,79.9,44839,92.7,23.1,7393,4.2,1.1,0.8,0.2,0.8,NA,NA,NA,86316,30447,73765,7.7,3.6,8.5,1.5,5.4,0,84,90.4,88.9 +2801,49043,"Summit County, Utah",Summit County, Utah,53197,42709,86.7,0.4,41,5.2,0.9,76.2,14.7,22.1,2.94,3.38,15.9,1.5,80.4,63255,95,58.1,14477,10.9,4.3,1.5,0.4,1.6,NA,NA,NA,208695,74755,137058,4.9,2.1,7,6.2,4.1,1.7,92.7,96.1,95.2 +2802,49045,"Tooele County, Utah",Tooele County, Utah,43976,76648,86.2,0.8,32,7.5,0.6,68.5,9,NA,3.31,3.69,9.8,4,82.6,56561,92.7,23.2,23050,11.9,4.1,2.2,0.4,1,NA,NA,NA,120925,37365,101846,6.5,3.1,6.3,4.7,4.6,0.9,86.5,93.3,95.3 +2803,49047,"Uintah County, Utah",Uintah County, Utah,31038,36458,84.1,0.5,33,7.6,1,68.1,11.7,20.3,3.02,3.67,15.1,9.1,72,41845,89.3,16.8,11940,4.9,0.8,0.9,2.2,0.9,NA,NA,NA,92354,30586,69861,5.2,5,13.4,8.3,10.7,1,74.6,89.9,89.5 +2804,49049,"Utah County, Utah",Utah County, Utah,34803,683622,83.7,0.7,25.5,8.7,0.8,67.8,7.8,22,3.41,3.75,22.8,1.3,68.1,52659,95.4,43.8,195602,14.5,3.9,3.3,0.5,1.8,8.7,7.2,5.4,121499,35091,96877,3.2,2.9,7.7,5,6,1,93.3,96.2,92 +2805,49051,"Wasatch County, Utah",Wasatch County, Utah,45383,35808,85.1,0.1,36.1,6.3,0.8,70.4,13.1,NA,2.97,3.38,9.5,1.5,78.9,55077,95.6,47.7,11985,12.6,4.7,1,0,2.7,NA,NA,NA,159943,54096,115146,3.9,1.1,7.6,2.5,5.8,0.1,89.2,96.9,94.2 +2806,49053,"Washington County, Utah",Washington County, Utah,34650,189827,85.9,0.5,39,6,2.5,75.2,22.1,NA,2.8,3.23,12.5,4.3,72.6,43687,94.3,33.3,66914,8.9,2.4,1.7,0.4,1.5,9.9,12.2,7.4,104854,37962,76411,7.4,2.9,11.9,10,13,0.5,87.7,92.3,92.2 +2807,49055,"Wayne County, Utah",Wayne County, Utah,36943,2557,94.5,0,43.1,6.5,1.4,76.5,23.1,25.5,2.33,2.63,2.2,7.4,75.8,41570,95.7,25.2,1085,3.6,7.7,0,0,0.2,NA,NA,NA,80918,34710,70074,7.2,0.3,11.2,12.1,11.9,0,81.6,85.3,90.4 +2808,49057,"Weber County, Utah",Weber County, Utah,40960,266183,83.9,1.1,33.5,6.9,1.1,72.9,12.2,23.5,2.85,3.34,18.5,3.2,74.6,49728,92.3,28,92353,12.9,2,1.6,0.3,1.4,7.5,8.7,7.7,105251,37055,87083,6.8,2.7,8.7,6.5,6.6,1,85.9,93.2,94.1 +2809,50001,"Addison County, Vermont",Addison County, Vermont,40412,37497,90.8,1.1,44,4,2.4,83.8,22,24.5,2.34,2.84,14.3,8.4,80,50437,95.1,43.5,14638,1.9,2.9,0.8,0.2,0.8,NA,NA,NA,107877,43524,88478,5.6,3.8,4.6,1.5,0.8,0.2,83.6,84.3,90.2 +2810,50003,"Bennington County, Vermont",Bennington County, Vermont,37678,37312,92.7,1,46.6,4.4,3.4,81.1,23.8,NA,2.47,3.14,18.6,4.7,75.7,47862,94.1,41.2,14636,2.6,2,0.9,0.5,0.1,NA,NA,NA,102609,43214,71494,8,4.4,5,1,4.3,0,81.3,79.1,81.6 +2811,50005,"Caledonia County, Vermont",Caledonia County, Vermont,36287,30425,93.3,0.9,45.6,4.2,2,81.1,22.5,NA,2.29,2.8,16.2,8.9,78.2,44323,93.7,31.9,12877,1.3,4,0.3,0.6,0,NA,NA,NA,88223,38153,66075,6.9,2.1,4.1,3.3,2.2,0.1,78.1,80,84.9 +2812,50007,"Chittenden County, Vermont",Chittenden County, Vermont,45810,168831,87.2,2.6,37,4.3,1.6,82.6,16.3,21.7,2.25,2.82,36.1,3.6,63.6,60038,95.5,55.8,70443,1.7,6.4,2,1.2,1,10.4,8.9,6.8,120665,50552,94310,4.9,3.3,3.3,2.8,2.2,0.8,88.8,90.7,91.8 +2813,50009,"Essex County, Vermont",Essex County, Vermont,31559,5972,94.7,0.1,51.4,4.2,2.6,82.8,26.7,28.4,2.18,2.65,8.8,13,83.2,40158,88.5,21.2,2729,1.4,8.5,1.1,0,0.9,NA,NA,NA,76292,34221,58985,10.6,5.1,5.8,4.3,2.1,0.1,76.7,72.9,83.9 +2814,50011,"Franklin County, Vermont",Franklin County, Vermont,42929,50379,92.6,0.3,40.9,5.5,2.1,78.2,17.3,26.5,2.55,3.01,16.4,6.6,78,53157,93,28.8,19605,1.1,4,0.1,0.3,0.1,10.1,10.6,12,95791,38447,79078,7.2,2.6,3.9,1.8,1.5,0.1,78.5,82.7,88.5 +2815,50013,"Grand Isle County, Vermont",Grand Isle County, Vermont,47358,7393,91.7,0.5,48.7,4.3,2,82.9,22.6,NA,2.4,2.92,4,10.9,90.9,54122,96.7,43.2,3078,1.2,5.2,0.5,0.7,0.5,NA,NA,NA,125572,53254,90625,7.2,2.9,3.9,0,1.1,0.2,89.9,87.5,92.3 +2816,50015,"Lamoille County, Vermont",Lamoille County, Vermont,41921,26036,92.3,1.1,41.2,4.7,1.4,79.9,18.2,NA,2.23,2.72,22.1,9.6,72.7,46037,93.5,43.8,11424,1.1,5.9,0.2,0.2,0.5,NA,NA,NA,104443,45885,69897,6,3,6.1,4.2,2.7,0.1,79.8,85.8,89.8 +2817,50017,"Orange County, Vermont",Orange County, Vermont,40641,29594,93.8,0.4,46.9,4.2,1.6,82,22.8,NA,2.27,2.78,10.3,9.2,81.5,47001,94.7,36.5,12790,1.3,2.8,0.3,0.1,0.2,NA,NA,NA,94637,41343,77328,7,2.4,5.2,1.1,3,0,81.3,79.4,86.6 +2818,50019,"Orleans County, Vermont",Orleans County, Vermont,35623,27492,94.5,0.8,45.4,4.7,2.3,80.6,23.3,NA,2.26,2.77,14.3,8.6,79.9,42577,91.9,28.6,11791,1.1,7.4,0.2,0.1,0.7,NA,NA,NA,83959,36459,66426,9,5.3,3.8,1,2.4,0.1,77.9,77.2,88.1 +2819,50021,"Rutland County, Vermont",Rutland County, Vermont,36326,60484,93.9,0.7,47.7,4.1,2.3,82.5,24,NA,2.3,3.03,22.8,5.9,72.7,46200,93.7,33.5,25448,2.6,3.1,0.7,0.1,0.6,12,11.6,10.8,87595,38902,64778,7.4,3.7,4,1.9,1.5,0.1,78.8,79.4,84.2 +2820,50023,"Washington County, Vermont",Washington County, Vermont,43536,59958,93.2,0.9,43.7,4.2,2.5,81.7,21,23.5,2.28,2.85,25,5.4,73.1,53395,95.7,47,25474,1.6,3.4,0.9,0.1,0.8,9.4,10.7,9.2,102667,45017,79853,6.3,2.7,2.9,4.1,1.8,0,85.3,83.7,90.3 +2821,50025,"Windham County, Vermont",Windham County, Vermont,36544,45913,91.7,0.9,47.3,3.9,2.5,82.9,24.7,NA,2.24,2.88,22.1,4.7,72.8,43132,94.8,42.4,19660,2.2,2.3,0.6,0,0.3,NA,NA,NA,93317,42142,68021,6.9,4.5,3.8,1.3,1.2,0.1,83.6,81,79 +2822,50027,"Windsor County, Vermont",Windsor County, Vermont,41070,57968,93.3,0.6,47.8,4.1,2.4,82.2,24.7,NA,2.29,2.92,19.2,6.4,74.9,51638,94.9,41.9,24873,1.5,4,0.3,0.4,0.2,NA,NA,NA,106755,47344,75247,7.1,3.7,4.2,1.3,1.9,0.2,84.3,82.9,88.2 +2823,51001,"Accomack County, Virginia",Accomack County, Virginia,31122,33326,60.7,27.2,47.5,5.3,2.3,79.2,25.2,NA,2.24,2.83,4.9,15.4,70.5,39656,82.8,21.8,14302,7.2,2.6,1,0.4,2.1,14.9,23,13.8,76527,33213,57500,9.3,3.4,9.3,3.1,4.2,0.1,65.1,80,82.7 +2824,51003,"Albemarle County, Virginia",Albemarle County, Virginia,50063,113683,76.6,8.8,39.8,5,2.6,80.3,19.9,NA,2.34,2.9,23.8,2.3,66,61032,94.4,60.6,45064,6,4.6,3,1,2.4,6.8,7.5,4.6,141600,57490,102617,6.8,3.1,5.4,1.7,3.6,0.1,86.8,90.1,91.3 +2825,51005,"Alleghany County, Virginia",Alleghany County, Virginia,32149,14962,92.4,5.5,48.1,4.1,2.8,81.7,25.8,NA,2.32,3.07,8.5,11.1,80.6,41086,90.1,15.6,6292,1.2,1.1,0,0,0.3,NA,NA,NA,69390,30925,55160,8.1,2.6,6.8,4.6,4.7,0.7,60.4,80,82.6 +2826,51007,"Amelia County, Virginia",Amelia County, Virginia,39860,13342,73.3,20.3,44.8,5.7,3.2,79.2,20.8,NA,2.5,3.11,2.9,16.7,81.2,43991,85.6,16.8,5285,1.5,0.3,0,0,0,NA,NA,NA,81188,33626,66339,10.4,5.4,6.8,0,4.8,0.3,66.5,80.7,79 +2827,51009,"Amherst County, Virginia",Amherst County, Virginia,35584,31385,74.5,17.7,43.3,5.1,2.2,80.1,21.4,26.4,2.39,2.98,7.6,10.7,78.4,44883,88.6,23,12702,1.6,1,0.4,0.2,0.2,NA,NA,NA,88404,36275,67298,7.3,4,6.3,0.4,3.1,0,69.7,83.1,81.4 +2828,51011,"Appomattox County, Virginia",Appomattox County, Virginia,35537,16424,77.3,17,43.3,6,2,78.1,20.7,NA,2.49,3.03,4.8,13.2,77.6,44923,92,20.5,6563,1.3,0.4,0,0.1,0.1,NA,NA,NA,78227,33468,62337,10.1,3.5,8.8,6.4,3.7,0.2,68.8,88.6,80.1 +2829,51013,"Arlington County, Virginia",Arlington County, Virginia,84628,235463,62.6,9.4,35.5,5.2,1.3,81.8,11.6,26.6,2.08,2.97,64.5,0.1,41.8,97482,95.4,77.1,111530,12.1,8.3,6.8,4.2,5.3,7.1,7.6,10.6,184356,88024,140160,6.3,3.1,5.3,1.5,2.5,2.2,92.3,94.7,94.5 +2830,51015,"Augusta County, Virginia",Augusta County, Virginia,39442,77713,90,4.3,44.9,4.5,2.8,81.3,22,NA,2.43,2.89,8.5,7.6,78.9,48057,90.8,23.3,30644,2.1,1.5,0.3,0.8,0.5,7.3,12.5,6.3,93110,37781,79972,7.7,2.7,7.1,8.1,6.7,1.3,73.1,86.1,86.2 +2831,51017,"Bath County, Virginia",Bath County, Virginia,32756,4123,91,3.8,52.3,4.4,3.5,82.9,27.4,NA,2.21,2.73,4.4,9.7,75.4,45680,84.3,15.6,1781,1.5,1.7,0,0,0,NA,NA,NA,84279,36110,61709,10.7,2.2,2.9,4.7,1.9,0.4,53.5,68.7,79.5 +2832,51019,"Bedford County, Virginia",Bedford County, Virginia,40148,80254,86.6,6,47.1,4.4,2.2,80.4,22.7,26.5,2.44,2.91,7.8,10.3,84.2,50691,92.3,33.6,32698,2.2,1.5,0.8,0.1,0.5,8.1,9.4,5.4,101435,42095,77644,8.8,3,6,3.1,3.1,0.2,76.5,88,86.4 +2833,51021,"Bland County, Virginia",Bland County, Virginia,34981,6211,93.2,5,47.1,3.1,2.1,85.8,24.5,NA,2.25,2.85,2.9,24,80.9,46114,91.2,15.4,2345,0.3,1,0.4,0,0,NA,NA,NA,74110,29128,61375,6.3,1.3,2.7,0,2.9,0,52.3,75,69 +2834,51023,"Botetourt County, Virginia",Botetourt County, Virginia,40181,33875,91.7,2.4,48.1,4.2,2.6,81.2,23.6,NA,2.55,3.12,4.5,7.2,85.8,49426,94.4,27.5,13105,2,0.6,0.4,0,0.1,NA,NA,NA,100728,41322,80467,9.4,2.5,4.5,4.3,2.3,0.4,76.3,83.7,87.5 +2835,51025,"Brunswick County, Virginia",Brunswick County, Virginia,28793,15868,41.2,53.4,44.4,4.1,2.6,84.4,21.9,NA,2.14,2.69,6.3,24.8,72.5,40736,79.4,15.6,6390,2.1,0.4,0.5,0.3,1.4,NA,NA,NA,71884,29171,52978,8.7,6.1,6.3,0,1.2,0,55.9,80,77.5 +2836,51027,"Buchanan County, Virginia",Buchanan County, Virginia,24584,19857,96.2,2.4,47.3,4.3,2.7,82.9,23.5,NA,2.55,3.14,2.6,31.8,82.1,41160,77.5,10.8,7351,1.3,0.6,0.1,0.2,0.2,NA,NA,NA,59584,26203,42216,5.7,3.7,5.7,0.8,3.5,0.2,58,73.9,73.5 +2837,51029,"Buckingham County, Virginia",Buckingham County, Virginia,31307,16914,61.4,32.1,43.7,4.7,2.2,81.9,20.2,42.7,2.44,3.04,1,27.5,76.4,40139,84.7,13.5,6062,1.3,2.2,0.1,0.2,0.6,NA,NA,NA,74211,28353,59199,7.6,5.2,9.6,8.2,9.5,0.7,64.8,77.4,72.8 +2838,51031,"Campbell County, Virginia",Campbell County, Virginia,35107,55398,77.9,14.4,43.2,4.9,2.3,80.4,20.7,23.3,2.48,3.03,11.2,16.6,75.5,43638,90.5,25.7,22080,2.6,0.5,0.8,0.8,1.4,10.1,12,10.6,80840,33847,62608,8.9,3.4,5,2.7,2,0.2,72,86.2,83.4 +2839,51033,"Caroline County, Virginia",Caroline County, Virginia,42520,31541,62.4,23.9,39.4,6,1.3,77.2,16.4,NA,2.6,3.05,2.2,6,81.7,53167,89.3,23.2,11680,6.5,1.4,1.1,0.2,0.8,NA,NA,NA,101829,38847,86267,12.9,3.3,6.6,2.7,4.6,0.1,78,88.6,84.7 +2840,51035,"Carroll County, Virginia",Carroll County, Virginia,30196,29158,94.7,0.5,49,4.2,2.9,82.1,25.6,NA,2.32,2.88,3.3,20.8,77.8,39216,85.3,16.7,12493,2.1,0.7,0.1,0.3,0.4,NA,NA,NA,66876,29946,52575,8.7,5,8.8,0.5,3.1,0.7,61.8,81,81.7 +2841,51036,"Charles City County, Virginia",Charles City County, Virginia,36623,6686,44.9,40.5,52.6,3.7,2,85.4,26.2,NA,2.27,2.9,2.9,10.7,85.7,46793,88.2,16,2947,1.5,0.6,2,0.3,0.2,NA,NA,NA,92844,41266,70339,10.2,5.2,5.1,5,4.3,0.5,62.4,81.7,71.2 +2842,51037,"Charlotte County, Virginia",Charlotte County, Virginia,29644,11475,70.4,25.2,45.2,5.4,1.8,77.5,22.2,NA,2.45,3.15,3.5,24.8,71.1,40409,81.4,18.7,4621,0.4,1,0.1,0,0.4,NA,NA,NA,67948,28682,48892,6.7,2.4,5.9,0,3.3,0.2,56.9,73.3,72.7 +2843,51041,"Chesterfield County, Virginia",Chesterfield County, Virginia,47997,371610,59.5,23.5,38.9,5.9,1.4,76.2,15.7,26.4,2.68,3.15,13.9,1.3,77.3,58670,92.9,42.7,136996,8.6,3,2.1,0.9,2.4,6.8,8.5,6,124805,46772,98910,9,4,6.9,4.3,5.4,0.7,87.7,92.4,93.9 +2844,51043,"Clarke County, Virginia",Clarke County, Virginia,48986,15060,84.7,6,48.3,3.7,2,81,21.8,NA,2.62,3.04,5.5,1.5,82.1,61686,92.8,37.3,5651,5.3,2.3,1.1,0.3,1.2,NA,NA,NA,137142,54763,114185,9.7,3.3,5.9,3,3.1,0,86.4,88.9,89.6 +2845,51045,"Craig County, Virginia",Craig County, Virginia,36117,4881,95.2,0.1,46.1,7.4,3.8,74.9,19.2,NA,2.78,3.08,0.4,12.9,83,50203,86.9,17.3,1752,0.5,0.9,0,0.6,0.5,NA,NA,NA,87694,34122,67778,5.4,1.4,2.8,0,0,0,61.9,88.8,87.8 +2846,51047,"Culpeper County, Virginia",Culpeper County, Virginia,41645,53563,68.4,13.2,39.3,6.3,1.6,75,16.6,NA,2.8,3.15,9.9,1.4,74.5,53143,88.1,26.4,18584,8.6,1.6,0.5,1.2,2.1,NA,NA,NA,116086,40304,96098,9.7,2.4,11.1,6.3,10,1.8,81.2,89.6,90.6 +2847,51049,"Cumberland County, Virginia",Cumberland County, Virginia,30433,9745,64,28.8,45.2,4.7,4.3,80.5,23.3,40.6,2.33,2.76,3.4,19.2,75.4,37086,88.6,18.2,4175,1.4,1.3,0,0.4,0,NA,NA,NA,84793,36142,57057,9.7,2.4,5.5,3.7,5.2,3.8,63.5,78.5,78.9 +2848,51051,"Dickenson County, Virginia",Dickenson County, Virginia,24726,13920,97.8,1,45.9,4.5,2.1,80.7,24.2,NA,2.35,2.85,2.3,28.4,74.6,42525,81.6,10.7,5717,0.3,0.4,0,0,0,NA,NA,NA,59352,26070,43831,5.5,2.5,4.6,1.9,1.1,0,61.8,71.8,77.1 +2849,51053,"Dinwiddie County, Virginia",Dinwiddie County, Virginia,40860,28083,64.4,30.6,43.4,4.7,1.6,79.9,18.7,32.7,2.62,3.1,4,10.3,78.2,51007,91.3,20.5,10427,3.4,1.8,0.6,0.1,1.3,NA,NA,NA,101604,37955,83898,10,5,6.5,9.3,3.8,0,74.2,88.5,84.7 +2850,51057,"Essex County, Virginia",Essex County, Virginia,31956,10604,55.9,37.5,47.1,4.8,2.4,82,23.6,35.5,2.38,3.12,12.2,13.6,68.9,47443,85.7,17.5,4396,1.8,1.3,0.4,0,1.2,NA,NA,NA,75330,32839,56481,7.2,5.8,10.1,16.4,5,0.1,63.2,83.6,78.2 +2851,51059,"Fairfax County, Virginia",Fairfax County, Virginia,67931,1144474,51.4,9.8,38.9,6,1.5,76.9,14.5,29.5,2.75,3.3,30,0.5,68.3,83344,93.2,64.3,412663,12.9,9.9,13.4,5,6.6,5.9,7.5,5.2,191191,69971,150113,7.8,3.6,7.4,3.7,5.3,1.7,92.8,94.8,96.3 +2852,51061,"Fauquier County, Virginia",Fauquier County, Virginia,53729,73935,81,6.3,40.8,5.7,1.7,76.6,16.7,36.6,2.8,3.27,7.1,2.2,78.1,65938,91.9,39.7,26266,9.3,2.7,1.7,0.7,2,NA,NA,NA,155933,55864,129495,10.1,2.2,7.5,4.1,6.4,0.3,84.5,91.1,91.1 +2853,51063,"Floyd County, Virginia",Floyd County, Virginia,34265,15560,93.5,2.8,48,4.2,3.7,81.5,23.8,NA,2.32,2.9,3.4,17.2,84,43040,91.6,23,6649,2.1,1.3,0.7,0.3,0.1,NA,NA,NA,81982,36681,61401,7.7,3.8,7.2,2.7,3.2,0,67.3,80.1,80.6 +2854,51065,"Fluvanna County, Virginia",Fluvanna County, Virginia,41420,27764,76.7,12.6,43.3,5.2,2.1,80.2,20.7,NA,2.58,2.96,2.5,4.9,88.4,47260,93.8,35.6,10251,2.8,1.5,0.9,0,0.4,NA,NA,NA,113385,42987,91959,9.2,4,7.4,0.8,5.1,0,85.5,87.1,90.9 +2855,51067,"Franklin County, Virginia",Franklin County, Virginia,34816,54958,86.7,7.8,48.5,4.9,2.4,81.1,24.2,NA,2.39,2.84,5.9,15.4,79.7,47841,90.6,24.3,22484,2.4,0.6,0.3,0.1,0.4,11.5,18.7,7.3,90740,38202,68348,7.9,2.2,6.6,3,4.2,0.1,70.5,79.5,80.9 +2856,51069,"Frederick County, Virginia",Frederick County, Virginia,45824,93355,82.4,4.2,40.6,5.6,2.1,77.1,18.2,NA,2.68,3.14,8.2,6.2,78,56100,89.1,30.3,34338,7.8,2.1,1.4,0.3,1.6,7.1,9,7.3,117692,45248,95603,9.1,4.1,7.3,4.7,4.5,0.2,79.1,87.7,88.8 +2857,51071,"Giles County, Virginia",Giles County, Virginia,36683,16610,94.7,2.2,45.8,4.8,2,80.2,22,NA,2.43,3.16,5.9,17,78.9,48802,91.2,18,6769,1.2,0.9,1,0.1,0.4,NA,NA,NA,76719,33792,64819,7.5,2.6,7.8,7.9,5,0.4,60.2,80.6,80.5 +2858,51073,"Gloucester County, Virginia",Gloucester County, Virginia,41689,39228,84,8.1,44.6,4.7,2.6,80,20.3,NA,2.58,3.07,7.1,8.7,79.8,48484,91.2,25.9,15111,2.4,2.3,0.4,0.1,0.3,NA,NA,NA,103122,40924,83689,13.4,3,4,1.8,1.4,0.2,79.7,88.8,88.8 +2859,51075,"Goochland County, Virginia",Goochland County, Virginia,51439,25613,79,14.4,49.4,3.8,1.8,83.4,23.9,30,2.46,2.89,6.6,3,86.3,61703,95,47,10013,1.1,3.2,1.8,0.3,0.2,NA,NA,NA,172374,68258,118695,8.1,2.4,2.4,0,2.5,0,88.3,93.7,92.2 +2860,51077,"Grayson County, Virginia",Grayson County, Virginia,25233,15323,89.7,5.2,48.5,3.9,2.3,83.5,25.7,25.3,2.31,2.78,4.3,16.7,81.9,35339,84.3,13.9,6202,1.7,0.5,0.5,0,0.4,NA,NA,NA,64012,27087,42864,8.1,3,8.6,6.7,6.7,0.1,61.1,73.8,78.7 +2861,51079,"Greene County, Virginia",Greene County, Virginia,41546,20850,79.9,6.8,40.8,6.1,1.2,76.7,18.7,NA,2.62,2.95,5.5,5.1,79.6,48639,89.9,28.5,7912,5.1,3.2,1.6,0.1,0.2,NA,NA,NA,110807,41541,85268,10,2.5,7.3,15.2,7.7,0,82.7,90.4,90.9 +2862,51081,"Greensville County, Virginia",Greensville County, Virginia,24583,11304,36.3,53.4,39.9,3.9,2,83.7,16.2,NA,2.66,3.23,4.9,17.6,69,36666,79.1,13.8,3092,4.7,1.6,0,0.5,0,NA,NA,NA,76071,23125,56759,7.2,5.4,6.2,0,1.1,0,64.7,81.6,83.5 +2863,51083,"Halifax County, Virginia",Halifax County, Virginia,28187,33811,60.3,34.7,46.7,5.2,2.9,79.8,25.3,25.5,2.4,3.18,7,20.1,70.6,40393,81.6,18.2,13673,1.7,1.4,0.1,0.2,0.3,17.9,28.7,14.3,64146,27115,49244,7.8,4.2,8.8,10.4,8.4,0.7,56.2,69.6,66.2 +2864,51085,"Hanover County, Virginia",Hanover County, Virginia,49179,111652,82.3,8.6,42.3,4.9,1.8,78.3,18.8,NA,2.61,3.07,7.6,2.3,82.8,60818,94.3,42.4,42012,2.9,1.5,1.2,0.5,0.5,5.2,6.4,5.1,135241,51509,109504,8.3,2.5,4.2,2.4,3.7,0.3,85.7,91.5,91.2 +2865,51087,"Henrico County, Virginia",Henrico County, Virginia,46369,334434,51.3,29.7,39.4,5.8,2.1,77.8,16.5,22.5,2.44,3.08,24.2,0.3,64.6,55072,93,45.7,135599,5.1,4.7,4.8,2.2,2.6,8.4,12,7.7,121771,50277,86397,6,3.8,6.6,4.2,4.1,1.5,83.2,90.8,91.8 +2866,51089,"Henry County, Virginia",Henry County, Virginia,27464,50365,69.8,22.4,47.9,4.5,2.9,80.6,24.4,24.6,2.42,3.2,8,14.4,76.1,38436,83.2,15.7,20503,4.5,0.6,0.2,0.2,1,14.8,21.2,10.4,64932,28644,48445,6.5,3.9,6.1,3.6,1.5,0.6,62.6,77,74.6 +2867,51091,"Highland County, Virginia",Highland County, Virginia,34851,2265,94.4,0,57.1,2.6,4.8,86.1,34.3,NA,2.26,2.66,3.3,11.9,88.1,36250,89.3,35.5,1003,1.1,0.6,0.4,0,0,NA,NA,NA,76984,35262,62946,8,17.3,7.2,0,15.1,0,62.2,67.9,73.6 +2868,51093,"Isle of Wight County, Virginia",Isle of Wight County, Virginia,45595,39444,70.2,22.1,44.2,4.9,1.6,78.7,19.6,29.8,2.54,3.06,9.3,8.3,81.3,59312,92.2,29.9,15426,2.9,1.4,0.8,0.2,0.3,NA,NA,NA,119223,47674,96118,16.2,4.2,4.2,0.7,3.2,0,78.5,88.4,84.6 +2869,51095,"James City County, Virginia",James City County, Virginia,48915,80046,74.9,12.8,47.2,4.8,3,80.4,26.4,NA,2.51,3,14.4,2.2,78.8,57337,95.2,50.2,31351,4.3,2.8,2.2,0.5,0.9,NA,NA,NA,132549,53887,107046,14.7,3.1,4.2,2.1,2.4,0.1,89.2,92.1,94.4 +2870,51097,"King and Queen County, Virginia",King and Queen County, Virginia,40524,6676,66.8,23.8,49,4.5,1.4,82.2,23.6,NA,2.37,2.87,1.2,15.2,77.4,49430,90,19.5,2814,2.1,0.2,0,0.3,0.7,NA,NA,NA,88368,39622,72851,8.2,5.5,5,3.2,3.9,0,66.6,84.7,73.6 +2871,51099,"King George County, Virginia",King George County, Virginia,48991,27468,71.2,15.7,38.3,5.8,1.3,75.4,13.9,NA,2.76,3.26,6.8,4.8,76.1,65685,91.1,35.8,9877,4.6,2.8,0.9,0.4,0.4,NA,NA,NA,126189,47046,110517,14.6,3,3.8,1.1,2.8,0,85,91.2,91.1 +2872,51101,"King William County, Virginia",King William County, Virginia,47790,18232,78.6,15.3,40.5,6.4,2,77,16.5,NA,2.55,3,2.9,2.3,88.8,53855,93.6,24.3,7115,1.5,0.7,0.7,0.4,0.7,NA,NA,NA,97561,38965,85212,11.7,2.4,4.6,3.1,3.6,0,76.2,89,77.3 +2873,51103,"Lancaster County, Virginia",Lancaster County, Virginia,39469,10876,67.7,27.8,59.1,3.1,5.8,85.3,40,NA,1.94,2.52,10.4,4,79.8,46433,87,37.4,5468,3.4,0.7,0.3,0.3,0.3,NA,NA,NA,98274,49384,67169,11.2,10.7,6.1,7,6.6,0.1,68,78.3,74 +2874,51105,"Lee County, Virginia",Lee County, Virginia,22601,22042,93,4.3,45.4,4.4,2.2,81.7,22.6,NA,2.43,3.01,5.1,17.4,73.9,39084,82.3,12.7,8446,1.1,0.5,0.1,0,0,NA,NA,NA,60434,25439,42269,7.9,8.5,9.4,0,1.9,0.2,60.8,75.7,69.5 +2875,51107,"Loudoun County, Virginia",Loudoun County, Virginia,75893,427082,55.4,7.7,37.8,6.4,1.2,72.9,10.4,31.1,3.02,3.43,16.8,0.5,77.9,94853,94.1,64,140823,10.9,12.6,11.4,3,4,4,4.1,4.7,209947,70133,178707,7.3,3,5.1,3.4,3.3,2.2,94.1,96,96.7 +2876,51109,"Louisa County, Virginia",Louisa County, Virginia,41245,39012,77.3,13.3,44.8,5.3,1.6,79.8,20.4,NA,2.56,2.94,4.6,9.4,81.2,47721,89.2,27.7,15211,3,3.5,1.3,0.1,0.8,NA,NA,NA,108564,42793,80343,10.5,5.8,6.4,1.8,2.8,0,76.6,88.9,82.7 +2877,51111,"Lunenburg County, Virginia",Lunenburg County, Virginia,30235,11990,57.8,33.5,44.8,4.8,2.4,80.4,23,NA,2.37,3.01,2.1,19.1,71.9,41412,80,11.2,4669,2.8,1,0,0,0.2,NA,NA,NA,65840,26539,54460,8.5,4.1,9.3,0,6.9,0.7,54.9,63.2,60 +2878,51113,"Madison County, Virginia",Madison County, Virginia,36558,13931,84.7,8.4,46.2,5.7,1.7,80,22.8,NA,2.53,3.02,2.3,2.5,79.6,50024,88.7,27.6,5392,1.8,2.4,0,0,0.3,NA,NA,NA,103123,40022,82972,6.7,3.7,5.3,0,2.7,0.6,75.1,86.8,83.7 +2879,51115,"Mathews County, Virginia",Mathews County, Virginia,41740,8517,86.7,8.4,53.8,3.3,3.1,84.4,32.3,NA,2.22,2.77,2.8,3.4,85.6,50134,91.3,30.1,3767,2.6,1.5,0,0,0,NA,NA,NA,100156,45767,75487,10.7,5.3,7.4,0,4.7,1.7,68.7,86.8,74.9 +2880,51117,"Mecklenburg County, Virginia",Mecklenburg County, Virginia,31430,30431,61.9,32.9,48.8,5,3.2,81.5,26.6,26,2.2,2.85,8,17.7,71.9,40817,86,21.2,13395,2.2,1.1,0.2,0.7,0.2,NA,NA,NA,73997,33014,51691,7.9,3,6.7,2.7,5.1,0.6,61.7,70.5,71.8 +2881,51119,"Middlesex County, Virginia",Middlesex County, Virginia,38429,10774,79.3,15.1,55.5,3.4,3.8,84.1,33.5,NA,2.19,2.64,3.4,8.6,85.7,43033,91.3,31.6,4733,2.4,2,1.3,0.2,0,NA,NA,NA,92227,40661,74154,11.4,4.7,6.5,20.3,7.9,0,78.9,86.7,81.9 +2882,51121,"Montgomery County, Virginia",Montgomery County, Virginia,31533,99159,82.7,3.9,30.2,3.8,1.2,84.7,13.7,17.8,2.41,2.91,28.3,9.4,54.7,52452,95.7,48.4,36731,3.9,3.9,4.3,1.2,1.1,23.8,13.6,8,93218,36009,70769,4.2,3,5,2.9,2.9,1.9,83.9,92,91.1 +2883,51125,"Nelson County, Virginia",Nelson County, Virginia,40954,14777,81.6,10.3,51.3,5.5,1.8,82.3,29.3,NA,2.27,2.87,5.5,11.7,79.2,48872,88.7,33.7,6470,2.8,1.2,0.5,0.6,1.1,NA,NA,NA,100430,45251,68525,9.4,2.6,7.7,2.3,11.3,0,75.9,82,80.6 +2884,51127,"New Kent County, Virginia",New Kent County, Virginia,51764,24139,78,13.4,43.4,4.5,1,80.5,18.7,NA,2.6,2.87,1.2,1.1,92.1,59466,94.6,35.5,9034,3.8,1.7,1.6,1.3,0.2,NA,NA,NA,135614,51609,120125,10.7,2.8,3.8,2.4,3.6,0.9,87,89.8,89 +2885,51131,"Northampton County, Virginia",Northampton County, Virginia,32590,12115,57.4,31.5,51.6,4.1,3.6,81.1,28.5,NA,2.22,2.78,11.5,13.1,65.2,44681,86.8,32.5,5338,5.7,2.7,1.2,0.1,0.1,NA,NA,NA,85776,38934,55933,9.6,3.9,8.2,2.5,4.7,1.8,67.1,84.3,82.9 +2886,51133,"Northumberland County, Virginia",Northumberland County, Virginia,36964,12085,69,19.6,59.5,4.4,3.7,85.2,37.9,NA,2.22,2.76,3.8,7.2,89.3,46337,90.4,33.9,5436,1.3,2.4,3.9,0.1,0.7,NA,NA,NA,101818,47191,69500,10.3,1.4,6.6,4.2,2.4,1.1,75.6,83.6,80.1 +2887,51135,"Nottoway County, Virginia",Nottoway County, Virginia,35283,15597,55.3,37.5,41.2,5.1,1.9,80.8,18.5,NA,2.38,3.01,7.4,8.4,69.2,45642,85.8,16.8,5492,3.5,0.7,0.1,0,0.6,NA,NA,NA,73868,25832,62161,7.6,4.9,10.8,2.1,5.5,0.6,60.5,72.8,71.9 +2888,51137,"Orange County, Virginia",Orange County, Virginia,45251,37208,77.2,10.4,42,5.9,2.5,78.6,20,NA,2.5,2.93,9.5,3.6,77.8,54021,91.3,29.4,14667,3,3.3,0.7,0.2,0.5,NA,NA,NA,117261,45021,94175,10.4,3.2,6.5,3,3.7,0.9,79.8,88.4,91.6 +2889,51139,"Page County, Virginia",Page County, Virginia,31038,23750,92.5,1.9,45.4,5,2.6,80.1,21.8,NA,2.47,3.06,5.3,11,72.8,37900,83.9,15.2,9509,2.5,1.1,0.7,0.4,0,NA,NA,NA,72525,31006,59396,8.3,4.9,8.6,0.3,3,0,62.1,74.9,78.9 +2890,51141,"Patrick County, Virginia",Patrick County, Virginia,29683,17606,91.1,5.4,51,4.3,2.4,82.6,27,NA,2.2,2.77,2.8,24.4,77.2,38803,84.4,15.2,7797,2.9,0.8,0.2,0,0.2,NA,NA,NA,73865,32864,50938,9.3,1.5,5.6,0,1.3,0,66.5,76.8,80.1 +2891,51143,"Pittsylvania County, Virginia",Pittsylvania County, Virginia,28868,60148,74.4,20.7,48.3,4.2,1.8,81.9,24.1,26.9,2.39,2.94,3.6,15.4,78.7,40760,85.8,15.4,24633,1.8,0.6,0.4,0.1,0.7,15,18.4,15.5,71627,30209,54115,8,5.1,5.5,5.8,3.8,1.2,64.4,79.4,75.8 +2892,51145,"Powhatan County, Virginia",Powhatan County, Virginia,52881,31074,85.1,8.8,45.3,4.4,0.8,82.1,19.5,NA,2.66,2.97,1.2,1.4,93.1,61248,91.5,34.2,11151,2.6,3.2,0,0.7,0.2,NA,NA,NA,131371,48796,110667,9.5,3,4.8,6.2,4.3,0.2,82.9,91.8,90.5 +2893,51147,"Prince Edward County, Virginia",Prince Edward County, Virginia,26066,21932,62.7,30.6,32.4,4.2,2.9,85.1,16.7,NA,2.25,2.77,17.4,15.6,59.9,44781,88,24.2,7560,5.5,0.5,0.6,0,1.2,NA,NA,NA,75079,25782,55082,5.6,1,6.1,0,3.2,0.1,65.5,72.4,75.2 +2894,51149,"Prince George County, Virginia",Prince George County, Virginia,38823,42873,54.8,31.1,33.4,4.8,1.3,80.3,12.9,24.8,2.81,3.14,6.2,6.7,73.9,51947,90.6,24,12718,4.9,2,2.8,0.7,0.7,NA,NA,NA,102321,33937,88225,12.2,5.3,3.9,2.5,2.9,0,82.5,90,92.1 +2895,51153,"Prince William County, Virginia",Prince William County, Virginia,54886,484625,46.6,20.5,36,6.8,0.9,73.4,10.9,37.5,3.11,3.56,16.9,1,74.4,66761,90.2,44.5,154609,18.7,7.2,5.8,5.8,5.7,6.1,7.6,5.5,155425,50883,128873,11.7,4,10.1,5.1,6.4,2.3,90.8,95.3,96.2 +2896,51155,"Pulaski County, Virginia",Pulaski County, Virginia,34971,33771,91.1,4.6,46.9,4.5,2,82.1,22.7,NA,2.27,2.83,11.9,11.1,72.2,44344,90.7,21.4,14386,1.4,1.1,0.7,0.4,0.5,NA,NA,NA,81064,35650,60767,8.7,3.9,5.8,2,2.2,0.1,67,83.6,79.6 +2897,51157,"Rappahannock County, Virginia",Rappahannock County, Virginia,47433,7409,86,4.8,50.1,3.1,1.2,82.4,26.6,NA,2.59,2.92,2.1,0,77.9,55727,91.8,35.6,2861,1.8,1.5,0.3,0.2,0,NA,NA,NA,140266,57136,98125,9.4,8.3,10.6,1.3,13.4,0,79.2,88.1,89.2 +2898,51159,"Richmond County, Virginia",Richmond County, Virginia,35533,9047,61,27.9,46.1,5.2,2.1,82.4,20.2,NA,2.53,3.16,10.2,7.2,70.5,44569,77.1,17.4,2931,1.9,0.6,0,0,0.1,NA,NA,NA,79207,27687,64184,4.7,3.1,6.8,0,4.2,0,63.5,76.7,79.7 +2899,51161,"Roanoke County, Virginia",Roanoke County, Virginia,42567,96793,84.6,6.4,43.7,4.5,2.9,80.2,21.8,22,2.41,3,17.2,1.9,76.3,54846,93.8,37.4,39231,3.5,2.7,1.6,0.5,1.3,7.3,7.3,6.6,107156,44817,82931,8.1,2.6,4.4,1.3,3.6,0.6,80.7,87.2,88.9 +2900,51163,"Rockbridge County, Virginia",Rockbridge County, Virginia,35215,22578,89.6,4,49.7,3.8,3.6,82.3,26.8,NA,2.32,2.8,6,10.6,78.4,42640,90.9,31.5,9552,0.9,0.4,0.6,0.3,0,NA,NA,NA,85339,37739,63975,9.2,3.4,5.3,2.1,2.3,0.1,72.4,82.2,83.4 +2901,51165,"Rockingham County, Virginia",Rockingham County, Virginia,38361,84739,88.1,2.5,40.3,5.6,2.3,77.8,19.8,NA,2.58,3.04,8.8,8.8,75.2,46595,87,28.4,32048,7,2.4,0.2,0.6,1.4,9.6,11.6,7.7,100367,39011,78468,6.4,2.8,9.7,9.1,10,0.9,75.2,85.7,85.3 +2902,51167,"Russell County, Virginia",Russell County, Virginia,28097,25635,97,1.3,46.5,4.8,1.7,81.3,23,NA,2.41,2.99,4.7,19.9,75.8,42903,83.4,14.1,10470,1,0.5,0.2,0.3,0,NA,NA,NA,66584,28484,49020,6.3,4.6,4.7,7.2,4.1,0.1,56.9,77.9,68.3 +2903,51169,"Scott County, Virginia",Scott County, Virginia,27986,21504,96.5,1.2,47.6,3.9,3.7,82,25,NA,2.32,3.02,3.9,19.5,78.3,45008,84,14.2,8951,0.3,0.4,0.2,0.3,0.1,NA,NA,NA,63469,28009,45136,6.1,2.6,6.1,3,5.8,0.3,60.6,73.8,73.9 +2904,51171,"Shenandoah County, Virginia",Shenandoah County, Virginia,34891,44630,86.9,2.9,42.9,5.6,2.5,78.6,21.9,28.7,2.49,3.1,13.5,3.8,72.4,43835,89,21.4,17782,7.3,1.5,0.7,0.8,2.9,12.3,20,8,86594,35360,64437,9.8,3.7,6.9,3.5,3.8,0.2,73.4,82.6,84.8 +2905,51173,"Smyth County, Virginia",Smyth County, Virginia,28511,29585,95,2,46.2,4.5,2.6,80.7,22.7,NA,2.3,2.87,10.5,16.3,70.9,40472,86.1,18.1,12530,1.7,0.6,0.2,0.1,1,NA,NA,NA,66592,29369,46859,7.6,2.9,5.3,0,1.7,0.6,65.5,78.1,79.2 +2906,51175,"Southampton County, Virginia",Southampton County, Virginia,35149,17988,61.3,29.8,46.9,4.6,1.9,80.9,21.4,NA,2.41,2.92,4.4,16,74.8,49597,86.7,18.6,6887,1.8,1.7,0.3,0,0,NA,NA,NA,83914,32981,68465,11.8,5,5.2,2.8,5.9,0,67.4,85.6,83.4 +2907,51177,"Spotsylvania County, Virginia",Spotsylvania County, Virginia,47591,143876,65.2,16.6,38.3,5.9,1.3,75.4,14.8,37.7,2.8,3.22,8.8,3.8,79.6,59147,90.7,33.8,51289,9.8,3,2.1,1.5,2.4,7,9.7,6.9,130137,46837,109576,13.2,4.4,6.7,3.6,3.6,0.8,87.2,92.4,94.8 +2908,51179,"Stafford County, Virginia",Stafford County, Virginia,55813,160520,57.2,19.3,36.3,6.1,0.8,73.8,11.1,37.6,3.06,3.47,8,2.5,80.8,71921,92.8,43.3,51309,12.2,3.9,2.8,2.1,3,5.1,6.2,4,157495,51999,133792,17.5,3.4,6.7,5.3,4.2,1,91.3,95,96.4 +2909,51181,"Surry County, Virginia",Surry County, Virginia,37549,6552,55.8,41,50.7,5.1,1.4,83,24.7,NA,2.38,2.88,6,12.9,80.2,52757,90,25.4,2755,1.3,0.1,1.2,0,0,NA,NA,NA,86472,38105,71458,16.5,5.2,3.7,6.2,2,0,61.5,81.8,76.7 +2910,51183,"Sussex County, Virginia",Sussex County, Virginia,32743,10793,40.3,55,41,4.1,0.8,84.2,19.1,NA,2.46,3.05,7.7,16,69.3,45045,84.6,15.8,3705,0.2,0.4,0.2,0,0.1,NA,NA,NA,83114,30457,62821,12.4,4.2,5.1,0,1.6,0,60.1,80.4,82.3 +2911,51185,"Tazewell County, Virginia",Tazewell County, Virginia,27652,39933,93.3,3.7,45,4.7,1.9,80.1,23.3,NA,2.4,3.01,8.3,19.3,73,40578,87.3,16.4,15951,0.9,1,0,0.3,0.1,19.3,29,13.5,68404,28604,45788,7.3,4.9,4.7,0.4,1.2,0,61.5,82.4,84.4 +2912,51187,"Warren County, Virginia",Warren County, Virginia,38816,41104,83.7,5.1,40.5,5.2,1.3,78.4,16.7,NA,2.62,3.09,8.6,1.3,76.2,51401,89,24.5,15357,4.9,2.6,1.2,0.3,0.5,NA,NA,NA,103067,39834,84331,9.2,5.1,9.7,15.8,8.1,0.1,80.5,91.6,92 +2913,51191,"Washington County, Virginia",Washington County, Virginia,33410,53913,94.7,1.7,46.9,4.1,2.2,82.7,24.3,NA,2.37,2.93,10.9,11.2,75.8,43598,90.1,26.5,22118,2.4,1.2,0.4,0.4,0.3,11,12.7,9.1,91122,38582,62774,8,3.4,7.2,1.4,4.3,0.3,69.8,82.5,80.8 +2914,51193,"Westmoreland County, Virginia",Westmoreland County, Virginia,34434,18683,63.7,24,48,5,2.9,81.8,26.4,NA,2.31,3.07,3.3,9.3,79.1,45511,84.1,19.7,8029,5.3,0.4,0.3,0,1.2,NA,NA,NA,84744,37305,59766,12.2,7.7,7.5,6.7,4.4,0.3,71.2,79.3,79.5 +2915,51195,"Wise County, Virginia",Wise County, Virginia,26048,35727,90.7,5.4,42.1,4.6,1.5,80.8,20,NA,2.33,2.82,7.1,25.5,74.1,37331,80.3,15.6,14055,0.6,0.8,0.1,0.1,0,17.7,21.5,15.5,61657,24622,50740,6.8,8.1,6.6,0.9,2.3,0.3,63.7,80.2,78.5 +2916,51197,"Wythe County, Virginia",Wythe County, Virginia,31622,28219,93.6,2.4,45.9,5.1,2.4,80.5,22,24.6,2.26,2.86,10.2,17.5,76.6,41478,89.6,19.7,12396,1.6,1.2,0.3,0.1,1.1,NA,NA,NA,75350,33564,55359,7,3.8,6,0.4,5.9,0.2,67.3,81.1,81.8 +2917,51199,"York County, Virginia",York County, Virginia,51760,70590,69.1,13.1,39.8,5.2,2.2,76.7,17.3,NA,2.62,3.07,16,0.8,71.2,65285,95.7,50,26445,5.5,3.8,5.1,0.5,1.5,NA,NA,NA,133056,51183,108326,18.5,4,3.7,2.9,2.5,0.8,89.4,91.7,93.5 +2918,51510,"Alexandria city, Virginia",Alexandria city, Virginia,71978,156788,53.6,21.1,37.5,6.7,1.3,81.7,12.6,29.3,2.06,2.95,64.4,0.1,42,79777,92.9,65.8,75349,11.3,7.2,3.6,7,5.8,8.4,13.1,7.4,159455,77935,113638,8.5,3.1,8.7,4.2,3.9,2.7,87.9,94.4,93.8 +2919,51520,"Bristol city, Virginia",Bristol city, Virginia,30755,17024,85.9,6.7,42.6,5.2,3.1,79.8,23.1,NA,2.28,3.12,27.9,1.1,63.1,42727,89.6,23.9,7327,2,1.1,0.2,0.3,0.5,NA,NA,NA,62955,29646,44706,7.2,4.8,11.2,7.8,5.2,0,67,80.6,76 +2920,51530,"Buena Vista city, Virginia",Buena Vista city, Virginia,26294,6612,86,1.6,36.2,5,2.6,78.5,18.3,NA,2.32,2.77,8.6,5.1,57.2,42755,83.4,24.7,2611,0.7,0.7,0.6,0,0,NA,NA,NA,83522,33175,54458,6.3,1,5.1,13,5.1,0,71.9,85.9,87.8 +2921,51540,"Charlottesville city, Virginia",Charlottesville city, Virginia,37276,45863,68,17,32.9,5.4,1.2,83.8,13.1,NA,2.17,2.87,42.6,0.7,43.7,53657,92.6,60.6,19699,4.1,5.8,3.8,2.3,2,22.6,26.3,7,109240,48395,69829,3.7,4.7,5.8,2.3,2.6,1.6,85.1,90.9,90 +2922,51550,"Chesapeake city, Virginia",Chesapeake city, Virginia,46506,251153,56.2,29,37.7,6.2,1.3,75.7,14.1,NA,2.67,3.16,17,1.5,73.8,55703,93.4,36.4,92361,5.4,2.4,3.1,0.7,1.4,8.7,11.8,7.5,116849,43819,94189,14.5,4.6,6.6,3.6,4,0.9,84.6,91.7,92 +2923,51570,"Colonial Heights city, Virginia",Colonial Heights city, Virginia,42358,18210,69.4,18,38.5,6.1,2.9,75.9,18.3,NA,2.39,2.93,16,0.3,68.1,48710,91.8,29.5,7545,6.3,2,2,0.9,2.2,NA,NA,NA,93743,38272,76250,13.5,3.7,7.4,11.9,11.2,0.2,78.8,86.4,87.4 +2924,51580,"Covington city, Virginia",Covington city, Virginia,27490,5671,80,12.3,41.5,5.9,1.7,77.2,19.4,NA,2.24,2.88,7.4,7.6,71.4,39329,87.1,9.6,2493,3.5,2,1.2,0,0.7,NA,NA,NA,54455,24067,42724,6.2,2.5,6.4,5.9,3.9,0,59.8,81.3,81.9 +2925,51590,"Danville city, Virginia",Danville city, Virginia,27815,42239,40.7,50.4,40.8,5.9,2.9,77.7,20.9,NA,2.18,3.04,26.4,3.3,49,35957,85,18.3,18632,3.7,0.8,0.5,0.1,1.5,25,36.8,18.4,62024,27537,42778,8.4,4.6,9,0,4.4,0.3,57.1,81,76 +2926,51595,"Emporia city, Virginia",Emporia city, Virginia,28684,5633,20.6,64,39.5,5.2,2.3,73,18.4,NA,2.44,3.02,19.7,4.3,38.4,43233,75.7,15.2,2219,7.2,0.7,0.5,0,2.6,NA,NA,NA,66137,25570,49375,8.7,3.4,3.9,0,0.9,0,51.8,82.3,83.8 +2927,51600,"Fairfax city, Virginia",Fairfax city, Virginia,57160,24478,56.3,6.4,37.3,7.7,1.8,76,14.3,27.7,2.61,3.11,29,0,69.3,74617,91.8,62.3,9158,12.9,8.6,13.1,4.1,7.4,NA,NA,NA,170219,62800,132774,7.6,4.4,7.4,0,3.5,2.2,92.4,94.1,96.3 +2928,51610,"Falls Church city, Virginia",Falls Church city, Virginia,83379,14593,70.9,4.8,39.4,4.8,1.8,75.8,14.7,NA,2.39,3.23,53.6,0.1,50.2,106932,97.4,79.7,6053,8.6,9.2,6.9,1.9,1.2,NA,NA,NA,205626,85077,154734,6.4,3,1.4,0,0,0,96.5,95.1,97.7 +2929,51620,"Franklin city, Virginia",Franklin city, Virginia,34120,8212,38.1,51.7,40.5,7.5,1.7,73.4,19,NA,2.38,2.86,24.9,0.2,53.4,43938,84.7,26.4,3388,3.3,1.4,0.2,0,0,NA,NA,NA,79553,31838,65125,9.8,4.5,3.5,0,3.8,0,64.1,87.5,90.1 +2930,51630,"Fredericksburg city, Virginia",Fredericksburg city, Virginia,46501,28383,58.8,20.2,31,6.2,1.2,78.8,11.2,NA,2.28,3.17,45.3,0.2,41.6,61416,92.6,46.8,11443,6.7,7.3,1.3,1.5,3.9,NA,NA,NA,117378,46503,85368,10.9,3.5,7.9,2.4,4.2,1.5,80.2,92.2,92 +2931,51640,"Galax city, Virginia",Galax city, Virginia,27500,6698,80.4,4.9,41.9,8,3.4,75.6,19.9,NA,2.34,3.04,19.3,9.3,61.6,39773,83,18.3,2729,8.9,0,0.2,0,1.1,NA,NA,NA,73907,31429,41438,9.1,5.8,7.4,0,0.4,3.2,66.3,80.2,86.6 +2932,51650,"Hampton city, Virginia",Hampton city, Virginia,38394,137334,37.5,49,36.5,6.1,1.6,78.5,16.1,NA,2.31,3,27.2,1.3,55.6,47324,92.7,27.5,57740,5,1.8,1.7,1,1,13,20.1,9,85775,36787,67758,17.4,5.6,6.9,4.1,3.1,0.2,80.9,90.8,91.5 +2933,51660,"Harrisonburg city, Virginia",Harrisonburg city, Virginia,23392,51492,66.5,7.6,25.4,5.1,1.3,82.9,10.1,17.1,2.55,3.03,38.1,1.3,39.9,42856,83.3,36.7,17331,19.5,4.2,2.9,2.4,8.1,25.6,21.1,9,80210,27957,59752,2.7,7,10.2,0.7,6,3.7,76.6,91.2,83.5 +2934,51670,"Hopewell city, Virginia",Hopewell city, Virginia,31878,22944,44.4,42.6,36.4,7.7,1.9,74.5,15,NA,2.41,2.97,19.7,2,55.5,38690,87.7,12.5,9418,4.9,2.2,0.9,0.5,0.7,NA,NA,NA,64349,26626,48681,9.7,8.2,6.6,7.5,4.6,3.8,67,85.4,85.6 +2935,51678,"Lexington city, Virginia",Lexington city, Virginia,15958,7420,81.7,4.7,22.5,3.3,0.9,92.9,16.4,12.4,2.03,2.72,33.9,0,51.7,49839,95.9,57.3,2061,2.6,0,2.2,0,2.5,NA,NA,NA,95202,30839,89598,3.2,0.8,2.1,0,0.9,0,76.1,92.1,89.2 +2936,51680,"Lynchburg city, Virginia",Lynchburg city, Virginia,27716,79255,62.2,27.7,28.4,6,2.1,80.7,14.2,NA,2.39,3,35,0.8,49.1,41331,90.4,38.5,28687,3.8,1.8,2.2,1.4,0.9,17.4,21.2,8.3,79359,30004,59808,6.4,5,6.5,1.8,3.5,1.3,77.7,90.4,92.2 +2937,51683,"Manassas city, Virginia",Manassas city, Virginia,51507,42674,50.5,12.6,34.7,7.9,0.9,73,10.3,33.1,3.03,3.5,22.5,1.4,72.2,58714,81.7,33.2,14041,31.5,5.6,4.4,1.5,7.3,NA,NA,NA,139363,44939,117919,6.8,3,20.1,11.4,17.1,0.7,87.3,95.1,95.7 +2938,51685,"Manassas Park city, Virginia",Manassas Park city, Virginia,50117,16923,40.3,11.4,35.3,5.9,1.4,75.8,9.6,NA,3.28,3.86,24.8,0,67.6,61150,78.9,25.5,5165,31.5,9.1,6.4,1.5,5.2,NA,NA,NA,123119,43662,100668,9.2,2.9,21.5,15.1,15.9,4.1,84,91.2,94 +2939,51690,"Martinsville city, Virginia",Martinsville city, Virginia,27494,13584,43.1,44.3,40.2,4.9,2.6,73.7,17.1,NA,2.34,3.22,22,0.6,56.7,35119,86.1,21.2,5619,4.2,1.5,0.2,0.7,0.7,NA,NA,NA,65146,28834,42434,6.9,4.5,8.7,6.6,6.3,0,63.2,83.9,82.5 +2940,51700,"Newport News city, Virginia",Newport News city, Virginia,38090,184774,42.3,41,34.2,7,1.5,76.7,13.7,23.2,2.35,3.07,37.1,2.6,48.1,47587,91.8,29.1,75798,6.5,2.8,2.5,0.9,1.5,15.1,21.7,13.3,87285,37475,66718,13.2,5,8.7,4.8,5,0.5,77.7,90.5,90.7 +2941,51710,"Norfolk city, Virginia",Norfolk city, Virginia,35471,235037,44,39.8,32.4,6.5,1.2,79.5,12.6,22.9,2.27,2.95,41.5,0.7,45.7,45772,89.6,32.7,94457,7.1,3.6,3.4,0.9,1.8,17.3,26.3,12.6,88032,37433,64017,14.3,5.9,9.1,4.1,5,0.8,76.9,90.1,87.3 +2942,51720,"Norton city, Virginia",Norton city, Virginia,23179,3620,95.1,1.3,41.1,3.6,3.8,81.1,20.6,NA,2.29,2.88,27.6,13.3,52.3,39884,92.4,16.6,1553,0,1.1,0,0,0,NA,NA,NA,56274,27033,38497,6.3,5,8.5,0,3.4,0,64.8,84.2,78 +2943,51730,"Petersburg city, Virginia",Petersburg city, Virginia,31672,33365,15.9,77.2,35.8,7.8,2,77,17,NA,2.21,3.4,41.1,2.1,38.3,41040,87,25,14854,4.5,1,1.3,0.6,1.9,21.1,29.9,16,62609,29590,50741,9.5,11.4,8.2,4.4,5.1,0.9,65.8,84.3,83.1 +2944,51735,"Poquoson city, Virginia",Poquoson city, Virginia,53247,12556,92,1.7,41.4,5,2.5,77.1,19.7,NA,2.68,3,5.5,1.3,85.2,65180,97.2,40.1,4657,1.5,2.3,2.2,0.3,1.1,NA,NA,NA,135303,49935,120919,15.9,1.4,2.8,0,1.6,0.3,88.9,91.8,93.3 +2945,51740,"Portsmouth city, Virginia",Portsmouth city, Virginia,35081,97299,36.9,51.7,35.8,7.1,1.7,76.8,15.2,NA,2.38,3.03,28,0.7,56.9,45081,89.2,23.2,39678,3.3,1.3,1,0.6,0.6,17.6,24,14.9,77280,32915,58972,12.2,5.7,6.6,1.9,3.8,0.6,72.9,88,87.5 +2946,51750,"Radford city, Virginia",Radford city, Virginia,17408,16505,83.2,9.3,23,4.2,0.9,87.7,9.4,16.9,2.44,3.03,38.7,1.4,42.7,49351,93.2,39.8,5500,1.1,1.6,1.9,1.1,0.5,NA,NA,NA,68571,25220,52791,3.5,8.2,6.2,2.5,1.8,0,81.8,93.5,88.5 +2947,51760,"Richmond city, Virginia",Richmond city, Virginia,37779,227595,43.2,42,34.5,5.9,1.4,82.4,13.6,NA,2.13,3,45,0.8,43.5,47423,89.3,44.1,102145,6.7,2.5,1.2,0.8,3.1,18.8,28.3,14.6,94647,44249,62671,5.5,5.3,9.8,3.3,7.2,0.7,79,89.5,84.9 +2948,51770,"Roanoke city, Virginia",Roanoke city, Virginia,31974,98677,57.5,29,38,6.4,2.6,77.4,17.5,NA,2.23,3.06,33.1,0.9,51.7,41274,89.6,28.9,43429,6.2,2.7,1.4,0.8,2.2,19.7,27.5,15,76775,34792,52671,7.5,5.2,9.6,3.8,5.8,0.5,69.1,85.9,84 +2949,51775,"Salem city, Virginia",Salem city, Virginia,34332,25477,84,7.8,40.3,4.1,2.6,81,19.5,NA,2.27,2.81,21.4,2.9,63.5,48587,94.2,31.1,10140,2.6,1.6,0.8,0.3,0.5,NA,NA,NA,92769,38127,66716,7.2,3,5.5,0,3,0,76.8,90.8,89.6 +2950,51790,"Staunton city, Virginia",Staunton city, Virginia,36016,25765,80.1,11,41,6.1,3,80.8,21,22,2.13,2.81,23.9,0.4,59.5,44906,93.7,35.1,11356,3.9,3,1.1,0.5,0.9,NA,NA,NA,80760,35941,62586,8,4.5,7.2,6.1,3.1,0.4,70.9,84.9,83.7 +2951,51800,"Suffolk city, Virginia",Suffolk city, Virginia,46768,96638,47.5,42,38.7,6.3,1.3,76.3,15,29.9,2.58,3.14,16.7,2.2,70.4,55585,91.8,32.4,37133,4.1,2.9,1.2,0.4,0.8,9.9,14.2,9.6,115247,45135,90089,15.9,5.1,6.2,7.4,4.6,0.4,82,90.6,89 +2952,51810,"Virginia Beach city, Virginia",Virginia Beach city, Virginia,46941,457066,61.6,18.9,37.4,6,1.6,77.9,15.4,23.2,2.5,3.03,24.8,1.1,64.9,55503,94.7,40.4,179800,6.4,3.1,6.1,0.7,1.9,8.4,11.2,5.9,118081,47372,90685,16,4.1,6.5,3.2,3.8,0.5,87.4,92.6,94.1 +2953,51820,"Waynesboro city, Virginia",Waynesboro city, Virginia,34964,22574,75.6,11.9,38.9,6.6,3.2,77.4,17.7,21,2.32,3.1,26.7,0.5,59.6,41118,89,26.3,9620,6.1,0.7,0.9,0,1.9,NA,NA,NA,74559,32036,56364,8.4,2.9,9.2,2,6,0,71.6,85.1,87.5 +2954,51830,"Williamsburg city, Virginia",Williamsburg city, Virginia,23543,15564,68.2,15.2,24,2.3,2,89.5,17.1,17.1,2.16,2.83,42.4,0.1,52.6,42698,93.1,48.5,4973,6.2,4.8,2.1,1.5,1,NA,NA,NA,107619,35732,70206,6.6,6.2,5.1,0,4.4,1.6,83.2,94,89.7 +2955,51840,"Winchester city, Virginia",Winchester city, Virginia,34937,27981,69,9.2,36.7,6.1,2.2,77.6,17.1,NA,2.39,3.16,32.4,0,41.9,42479,86.5,31.6,11255,12.3,4.1,0.7,1.2,3.7,NA,NA,NA,86816,36073,64648,5,5.2,11.4,4.9,7.9,0.2,77.2,86.4,86.4 +2956,53001,"Adams County, Washington",Adams County, Washington,30232,20690,47.8,0.4,29.2,8.7,1.2,65,11.8,21.6,3.23,3.7,13.4,23.3,69.1,36620,69.9,15.4,6301,44.9,1.3,1,1.6,16.3,NA,NA,NA,82379,25934,65042,3.8,3.7,15.9,4.9,4.6,0,61.5,88.4,87.4 +2957,53003,"Asotin County, Washington",Asotin County, Washington,34872,22424,88.9,0.9,45.5,5.7,3.1,80.4,24.6,15.1,2.35,2.95,12.2,11.1,73.6,43898,92,24.3,9438,3.1,1.3,1,0.3,0.6,NA,NA,NA,90466,38991,69107,10.9,5.7,5.8,1.4,2.2,0.4,78.2,86.6,87 +2958,53005,"Benton County, Washington",Benton County, Washington,43430,210224,72.3,1.7,36.2,6.5,1.7,73.6,15.6,22.2,2.71,3.24,22.7,9,68.5,54556,89.9,33,76696,15.8,2.6,2.4,0.7,3.3,11.1,15.4,9.3,111832,41588,87316,7.8,4.7,7.5,1.3,2.3,0.6,84.3,90.9,91.8 +2959,53007,"Chelan County, Washington",Chelan County, Washington,38892,79518,68.8,0.6,40.4,5.6,2.7,77.2,20.5,19.5,2.52,3.08,20.4,10.1,63.3,46066,85.8,30.2,30825,19.7,1.7,0.8,0.1,5,9,11.8,8.6,105534,42092,78306,7.2,3.7,11.3,2.8,4.7,1.8,79.6,88.4,89.6 +2960,53009,"Clallam County, Washington",Clallam County, Washington,36457,77593,82.8,0.9,51.8,3.9,2.9,83.6,31.5,20.1,2.22,2.75,12.7,13.4,72.8,42424,93,30.7,34377,3.5,1.9,1.4,0.6,0.6,10.8,13.1,5.7,89116,40133,67999,12.3,5.8,6.5,3.5,3.2,0.9,82.4,85.9,91.5 +2961,53011,"Clark County, Washington",Clark County, Washington,46317,510516,77.3,2.1,38.9,5.7,1.6,76.9,16.3,NA,2.62,3.12,22.7,3.9,66.2,57892,92.8,33,193387,6.9,5.7,4.5,0.6,2.6,8.4,10,7.4,120560,46391,94948,8.3,4.9,6.8,3.4,3.9,0.4,86.7,92.4,94 +2962,53013,"Columbia County, Washington",Columbia County, Washington,37807,3996,81.5,0.7,52.1,4.2,2.1,83.1,29.7,NA,2.07,2.53,4.1,6.5,77.9,55580,88.9,27.2,1892,5.4,1.9,2.1,0,2.6,NA,NA,NA,89990,42143,71528,11.2,3.1,8.8,0,0,0,72.1,83.5,74.8 +2963,53015,"Cowlitz County, Washington",Cowlitz County, Washington,36328,111539,84.8,0.7,41.1,5.7,1.9,77.4,19.5,26.5,2.54,3.05,19.4,9.7,66.2,49245,89.9,17,43409,5.3,1.9,1.4,0,1.2,13,16.7,7.4,92523,36520,72932,10.2,4.8,6.1,2.7,3.4,0.4,78.8,87,89.6 +2964,53017,"Douglas County, Washington",Douglas County, Washington,38660,43733,61.9,0.5,38.4,6.3,2,74.9,18,21.6,2.74,3.17,14.5,15.7,68.4,44144,82.5,21.9,15708,24.8,1.4,0.8,0.1,5.5,NA,NA,NA,110625,40039,80374,7.5,4.1,12.4,0.6,2.5,1.8,80.3,89.2,89 +2965,53019,"Ferry County, Washington",Ferry County, Washington,27959,7326,73.7,0.2,52.8,4.1,2.5,83.1,30.2,NA,2.28,2.97,4.4,20.5,75.6,34926,92.1,18.3,3138,0.7,1.2,2.4,1.1,0.6,NA,NA,NA,74026,33322,54650,12.5,8,5.5,6.7,4.8,0,70.3,72.6,76.9 +2966,53021,"Franklin County, Washington",Franklin County, Washington,37743,97676,51.8,1.9,30.8,8.3,0.8,68.6,10.1,22.2,3.26,3.64,14.9,7.8,70.1,47142,76.6,20.4,29118,43.3,2.6,1.9,0.3,9.1,13,16.7,11.8,105287,32752,82755,6.3,4.4,13.2,7.4,6.2,1.2,78,92.2,92.3 +2967,53023,"Garfield County, Washington",Garfield County, Washington,36500,2326,91,1.3,52.6,3.5,1.8,82.8,29.6,NA,2.18,2.8,2.2,22.1,76.9,45549,92.9,26.8,1052,3.4,0.4,0,0,0,NA,NA,NA,76848,34685,62411,13.6,5.4,4.2,0,1,0,79.4,83.7,82.7 +2968,53025,"Grant County, Washington",Grant County, Washington,34878,100428,59,1.2,33.5,7.2,1.4,71.2,14.3,NA,2.83,3.37,14.1,22.3,65.6,45856,81.4,18.2,34502,30.8,1.5,0.7,0.1,7.3,15,18.3,9.4,89681,32241,71115,7,6.1,13.3,2.3,3,1.9,72.3,89.7,89.7 +2969,53027,"Grays Harbor County, Washington",Grays Harbor County, Washington,34682,76397,80.9,1.6,44.7,4.7,1.9,80,22.8,24.5,2.45,3.06,13,10.8,72.6,43468,90.3,17.6,29982,5.8,2,1.3,0.3,1.7,14.1,20.1,9.5,82333,33763,63539,10.8,6.7,7.2,2.7,2.7,0.2,75.4,85.9,88.7 +2970,53029,"Island County, Washington",Island County, Washington,45208,86747,79.4,2.7,44.5,4.9,2.3,82.4,26.1,26.9,2.37,2.81,12,7.1,74.6,53445,95.9,35.7,35529,4.5,2,4.9,0.3,1.1,7,6.8,6.2,110452,46226,88358,15.7,4.3,4.1,1.3,2.3,0.6,89.4,91.4,94.3 +2971,53031,"Jefferson County, Washington",Jefferson County, Washington,40016,33313,86.7,0.4,59.5,2.5,3.3,88.5,39.6,23.5,2.02,2.52,8.7,11.5,79.7,42012,96.1,43.3,16156,4.1,3.2,1.4,0.4,0.9,NA,NA,NA,101205,49853,71143,12.1,8.3,4.1,1.3,1.2,0.5,83,86.1,90.4 +2972,53033,"King County, Washington",King County, Washington,60665,2262713,56.7,6.5,37.3,5.3,1.7,80.2,13.8,28.1,2.39,3.05,40.8,1.5,56.1,75581,93.8,55.9,927817,6.7,8.3,14.4,2.8,5.8,8.4,9.2,9.1,170405,71062,122148,4.7,4.3,5.2,2.1,2.4,1.1,89.8,94.5,94.8 +2973,53035,"Kitsap County, Washington",Kitsap County, Washington,48497,276581,76.5,2.6,39.9,5.3,1.7,80.1,19.1,29.5,2.51,2.93,18,6,70.1,59553,95.3,36.5,107264,4.4,2,5.2,0.5,1.1,8.3,10.2,6.2,125517,50367,98546,14.9,4.2,5.3,3,3.2,0.2,89.4,92.3,94.8 +2974,53037,"Kittitas County, Washington",Kittitas County, Washington,36718,44736,82.4,1.1,37.9,4.3,1.3,82.5,17.2,NA,2.19,2.69,22,6.6,62.3,53038,93.1,35.3,19601,6.2,2.1,1.6,0.4,1.2,14.3,15.6,5.9,95281,41356,69928,7.4,3.7,5.4,2,3.1,0,86.5,91.4,89.9 +2975,53039,"Klickitat County, Washington",Klickitat County, Washington,37098,23082,84.5,0.7,47.5,4.5,1.6,81.6,24.9,24.2,2.31,2.86,7.2,17.8,75.5,47736,89.9,31.2,9774,7.4,2.2,0.7,1.3,0.3,NA,NA,NA,96485,42193,70400,10.8,5.4,6.5,2.6,2.7,0.1,79.6,87.3,85.9 +2976,53041,"Lewis County, Washington",Lewis County, Washington,34597,83925,83.6,0.8,42.4,5.6,2.2,78.4,21.2,NA,2.57,3.06,11.5,17.7,74.2,46699,90.4,20.2,32314,6.6,1.6,0.9,0,1.4,13,15.6,9.9,86552,33972,69690,9.5,5.3,7.1,1.4,2.3,0.3,78.8,84.8,86.3 +2977,53043,"Lincoln County, Washington",Lincoln County, Washington,38958,11271,90.7,0.5,46.9,5.2,1.9,78,25.8,NA,2.39,2.95,5.9,17,78.5,48949,92.4,23.7,4659,2.3,1.7,1.1,0.3,0.2,NA,NA,NA,91981,38719,71227,11.4,5.4,3.1,0,1,1.1,78.9,86.3,86 +2978,53045,"Mason County, Washington",Mason County, Washington,38720,66968,78.3,1,44.8,5.1,2.4,80.4,23.7,NA,2.58,3,5,19.3,81.1,51467,91.1,22,25373,6.8,1.7,1.9,0.4,1.7,12.6,15.6,8.5,97813,38685,78359,13.6,6.3,7.2,2.1,4.2,0.4,83.3,87,90.7 +2979,53047,"Okanogan County, Washington",Okanogan County, Washington,31623,42811,66.5,1.6,43.4,5.5,2.3,77.7,22.9,19.2,2.35,2.8,7.7,19.6,71.7,39395,85.7,24,17208,13,1.2,0.6,1.1,2.2,18.5,24.6,12.1,77804,31905,60293,9.4,4.7,13.9,1.6,3.3,1.2,75.5,84.7,86.4 +2980,53049,"Pacific County, Washington",Pacific County, Washington,33645,23750,82.8,0.6,54.9,3.4,3.1,84.8,33,NA,2.18,2.68,8,16.4,81.2,41971,90.9,23.4,10757,5.7,2.6,1.6,0,1.8,NA,NA,NA,86985,40128,62350,12.4,5.4,5.4,3.2,5.3,0,76.9,82.4,89.4 +2981,53051,"Pend Oreille County, Washington",Pend Oreille County, Washington,31623,13811,86.2,0.3,50,4.3,2.5,80.7,27,31.6,2.35,2.7,7.1,19.6,77.2,41137,94.3,20.3,5829,1.2,0.8,0.8,0.6,0.1,NA,NA,NA,83822,35660,63750,13.3,6.5,6.4,10.6,7.3,1,79,85.2,85.6 +2982,53053,"Pierce County, Washington",Pierce County, Washington,47800,924106,65.9,7.2,36.8,6.2,1.4,76.8,14.4,31.6,2.6,3.1,23.6,4.7,64.8,59390,92.5,30.1,346708,7.3,3.5,7,0.9,2.8,8.9,10.5,8.1,120501,45885,96632,11.5,4.7,6.1,2.8,2.9,1,85.7,92.4,93.8 +2983,53055,"San Juan County, Washington",San Juan County, Washington,43050,18266,88.3,0.3,56.7,2.9,2.5,87.2,35,16.2,2.02,2.45,6.1,7.6,77.8,45286,95.5,53.4,8934,3.5,3.2,1.1,0.4,0.3,NA,NA,NA,129398,63173,83682,8,3.4,6.8,10.2,5,0.3,89.3,90.9,92.7 +2984,53057,"Skagit County, Washington",Skagit County, Washington,42170,130407,76.8,0.9,41.9,5.4,2.1,78.9,22.1,NA,2.5,2.95,16.4,7.4,70.6,51992,90.8,29.1,51518,11.4,2.4,2,0.4,2.7,11.6,16.9,6.5,108032,43158,85474,10,4.4,6.6,2.5,2.6,0.7,85,89.7,92.4 +2985,53059,"Skamania County, Washington",Skamania County, Washington,40365,12276,87.6,0.3,48.6,3.9,2.7,83,23.4,NA,2.45,2.94,7,15,80.6,53586,93.2,28.2,4965,5.7,1.7,0.9,0,0.8,NA,NA,NA,106938,44514,90085,10.8,5.6,6.1,12.9,8.9,0,81.6,84.6,86.7 +2986,53061,"Snohomish County, Washington",Snohomish County, Washington,52098,834648,66.4,3.6,38.4,6.1,1.5,77.6,14.4,31.2,2.64,3.13,25.4,4.6,68.4,65269,93.1,36.8,311825,7.2,6.4,9.6,2.2,4.3,7.9,9.1,8.9,136089,51836,107982,7.1,4.1,6.1,2.2,3,0.8,88.4,93.2,93.8 +2987,53063,"Spokane County, Washington",Spokane County, Washington,38506,544323,83.8,2,38.2,5.6,1.9,78.2,17,NA,2.45,3.02,25,5,63.9,48517,94.5,32.1,215879,3.2,3,2.2,0.7,1.2,12.2,13.4,8.9,98513,39879,73513,9.9,5.2,5,1.3,2.2,0.4,82.5,90.6,91.3 +2988,53065,"Stevens County, Washington",Stevens County, Washington,35114,47470,86.8,0.4,46.8,4.9,1.9,78.7,24.7,29.8,2.49,2.97,5.4,21,79.2,45693,92,21.8,18983,2.2,1.5,0.5,0.5,0.6,12.9,17.1,9.2,88291,35577,67405,10.8,5,6.7,4.1,5.1,0.5,76.7,84.8,85.2 +2989,53067,"Thurston County, Washington",Thurston County, Washington,47562,296640,74.1,3.3,39.8,5.4,1.9,78.9,18.3,26.3,2.5,2.99,19.6,8.3,67.8,58054,94.5,37.2,117172,6.3,3.6,5.7,0.7,2.1,9.7,11.9,6.6,111383,44646,93985,12.9,4.9,5,2.8,2.6,0.3,87.6,90.8,93.6 +2990,53069,"Wahkiakum County, Washington",Wahkiakum County, Washington,30827,4573,86.1,1.1,54.8,3.7,2.8,81.5,32.3,NA,2.24,2.66,2.8,12.3,84.8,34369,92.8,22.3,2026,3.8,1.2,0,0.4,0,NA,NA,NA,75908,32879,57091,15.8,3.1,4.8,0,1.1,2.4,81.3,77.3,87.7 +2991,53071,"Walla Walla County, Washington",Walla Walla County, Washington,35862,62102,75.3,1.8,38.3,5,3.1,79.3,19.4,NA,2.45,3.07,19.1,7.1,65.9,48516,89.2,30.1,23390,16.1,1.7,1.3,0.2,4.2,11.7,13.6,12.1,96277,37562,72212,8.3,5.3,8,2.2,3.5,0.5,80.9,89.4,88.8 +2992,53073,"Whatcom County, Washington",Whatcom County, Washington,40609,228432,78.7,0.9,38.2,4.7,1.8,81.1,18.5,NA,2.42,2.95,27.4,6.6,63.5,53231,93.8,38.1,92411,5.8,4.1,3.1,0.9,1.3,12.7,12.9,8.8,105948,43463,80989,6.8,4.2,5.6,2.4,2.8,0.4,87.4,91.5,92.9 +2993,53075,"Whitman County, Washington",Whitman County, Washington,24222,47042,76.7,1.6,26.1,4.1,1.1,84.3,11.6,NA,2.29,2.94,44,6.2,46.6,47263,96.1,50.2,17952,5.3,4.1,5.8,0.5,2.6,23.7,11,11,78956,31884,52893,4.7,4.4,5.4,0.8,2.7,0.5,88.4,91.7,85.2 +2994,53077,"Yakima County, Washington",Yakima County, Washington,33772,256605,52.8,0.8,33.2,7.3,1.8,70.7,14.3,NA,2.91,3.46,17.7,12.3,62.4,41041,76.3,18.9,86689,38.2,1,1.2,0.4,8.5,15.4,20.8,12.2,85476,29309,68015,5.6,6.2,13,5.5,5.3,1.1,70.7,88.7,88.9 +2995,54001,"Barbour County, West Virginia",Barbour County, West Virginia,28214,15454,91.2,1.8,42.4,4.8,1.9,79.9,20.8,28.1,2.53,3.08,6.4,18.3,79.3,40820,88.6,12.2,5871,0.7,0.3,0.8,0,0.1,NA,NA,NA,62548,26055,48347,7.7,10.2,5.9,0,0.5,0,62.9,78.3,82.5 +2996,54003,"Berkeley County, West Virginia",Berkeley County, West Virginia,40607,126165,82.3,7.2,38.7,6.1,1.3,76.8,15.1,NA,2.53,3.08,10.3,10,75.4,49892,90.6,24.3,49384,4.7,1.5,1,0.5,0.6,11.4,14.2,11.3,95488,37533,77329,9.2,4.3,6.2,2,3.9,0.5,78.5,91,91 +2997,54005,"Boone County, West Virginia",Boone County, West Virginia,29343,21312,97.3,0.4,45,4.9,2.3,79.3,21.6,NA,2.68,3.23,4.3,25.8,79.1,41285,84.8,11.9,7894,0.8,0.2,0.2,0,0.1,NA,NA,NA,67971,26984,56152,7.2,9.2,5.5,0,1.3,0,65,72.8,86.3 +2998,54007,"Braxton County, West Virginia",Braxton County, West Virginia,24208,12345,87.2,0.9,46.7,4.2,3,81.3,24.4,32.9,2.51,3.02,4.7,27,79.3,31292,83.7,11.9,4733,0.6,0,0.3,0,0,NA,NA,NA,56895,23349,44449,9.8,12.9,9.6,7.7,3,0.1,53.8,73,78.3 +2999,54009,"Brooke County, West Virginia",Brooke County, West Virginia,33678,22053,93.6,1.4,46.6,4.2,2.6,82.7,24.5,NA,2.24,2.98,16.1,9.2,73.4,41963,92.4,21.9,9437,0.7,1.6,0.4,0,0.4,NA,NA,NA,71104,32157,52116,6.6,5.9,6.4,9.4,5.9,0,64.7,80,82.9 +3000,54011,"Cabell County, West Virginia",Cabell County, West Virginia,29548,93300,89.7,4.2,39.3,5.3,2.1,80.2,19.6,NA,2.27,2.97,23.5,6.9,63.5,42548,90,32.4,39138,2,0.9,0.7,0.4,0.4,19.8,23.6,10,75291,32399,52828,6.4,5.3,7.2,2.5,4,0.1,71,85.8,84 +3001,54013,"Calhoun County, West Virginia",Calhoun County, West Virginia,23772,6158,95.9,0,48.1,4.2,2.7,80.8,26,NA,2.57,3.28,2.8,26.4,82.4,32075,85.9,10.1,2391,0.4,0.2,0.1,0.5,0,NA,NA,NA,56805,24520,41421,10.2,10.1,11.4,0,8,0,57.6,64.7,72.8 +3002,54015,"Clay County, West Virginia",Clay County, West Virginia,25594,7946,97.1,0,45.3,5.1,1.8,78,21.7,NA,2.66,3.28,3.6,30,79,38206,84.1,11.8,2960,0.1,0.3,0.5,0,0,NA,NA,NA,57968,23748,42790,8.8,11.7,5.4,0,1,0.5,64.7,77.6,83.4 +3003,54017,"Doddridge County, West Virginia",Doddridge County, West Virginia,35710,7767,93.4,2.6,45.3,3.8,1.8,84.6,21.1,NA,2.76,3.27,1.6,17,88.5,42356,82.5,12.7,2415,0,1.1,2.2,0,0,NA,NA,NA,95860,32472,61164,8.9,3.1,8.3,7.4,5.2,0,64.1,76.4,81.9 +3004,54019,"Fayette County, West Virginia",Fayette County, West Virginia,27743,39987,92,4.5,44.5,4.8,2,79.4,22.3,NA,2.4,3.02,6.4,14.4,75.7,40719,86.1,16.1,16109,0.3,0.5,0.1,0.2,0,18.8,25.7,14.8,65286,27091,52672,8.8,6.8,8.4,0,3.9,0.8,64.4,80.8,80.9 +3005,54021,"Gilmer County, West Virginia",Gilmer County, West Virginia,26171,7376,81.9,14.3,40.7,3.7,1.6,84.2,17.8,33.3,2.4,2.9,2.8,32,76.4,34884,81.5,19.9,2228,2.1,0.6,0.1,0,0,NA,NA,NA,61984,20325,50991,7,8.8,8.1,3.3,3.8,0,64.4,72.5,77.1 +3006,54023,"Grant County, West Virginia",Grant County, West Virginia,32727,10972,96.2,1.4,46.9,5.2,2.1,80.6,24.6,NA,2.53,3.09,7.6,13.7,80.9,39402,90.4,17.9,4284,0.2,0.8,0.1,0.5,0,NA,NA,NA,72148,31018,61530,9.4,3.8,5,0,3.6,0.2,61.2,75.2,82.6 +3007,54025,"Greenbrier County, West Virginia",Greenbrier County, West Virginia,29831,32688,92.9,2.2,46.5,5,2.9,80.5,24,25.7,2.18,2.8,11.8,13.6,74,37188,87.3,22.1,14710,1.7,1.1,0.7,0.8,0,20.7,28.4,10.5,70265,31699,48662,7.9,4.4,6.3,5.3,5.2,0,62.6,80.3,82.2 +3008,54027,"Hampshire County, West Virginia",Hampshire County, West Virginia,31548,23340,94.5,0.7,48.1,5.1,2.2,81.7,23.7,40.4,2.73,3.48,5.6,11.3,82.3,41695,88.7,16.3,8354,0.7,0.2,0,0,0,NA,NA,NA,75033,31143,60299,9.2,6.5,8.8,2.7,3.9,0.4,70.8,71.4,80.7 +3009,54029,"Hancock County, West Virginia",Hancock County, West Virginia,34046,28658,93,2,46.8,4.3,3.1,81.3,24.1,NA,2.2,2.75,9.4,6.8,74.6,42123,89.9,20.2,12891,0.9,1.2,0.5,0.2,0.2,NA,NA,NA,78641,35452,61017,8.6,6.6,8.2,2.5,5.8,0.2,68.8,84.7,88.8 +3010,54031,"Hardy County, West Virginia",Hardy County, West Virginia,29346,14236,90,4.9,47.3,4.6,1.8,81.4,23.3,28.6,2.39,2.95,4.9,17.1,79.5,34527,86.6,15.7,5909,2.6,1.2,0,0.1,1,NA,NA,NA,67480,29876,49302,8.9,4.8,6.7,6.3,5.3,0.3,65.1,72.2,81.7 +3011,54033,"Harrison County, West Virginia",Harrison County, West Virginia,33701,65407,93,1.3,42.3,5.4,2.5,78.6,20,22.4,2.47,3.21,12.9,6.5,73.6,46344,88.8,25.9,26020,0.7,1.5,0.7,0.2,0.2,13.6,17.7,9.9,81096,34054,58326,7.7,4,7,4.3,3.1,0.4,69.9,84.5,84.2 +3012,54035,"Jackson County, West Virginia",Jackson County, West Virginia,35357,27753,96.3,0.2,43.3,5.4,3.2,78.3,21,NA,2.44,3.1,8.7,20.2,77.1,50938,89.4,19.4,11317,0.5,1.7,0.9,0.1,0.4,NA,NA,NA,82704,35107,55671,8.9,4,6.2,1.5,1,0.7,62.9,79.4,79.1 +3013,54037,"Jefferson County, West Virginia",Jefferson County, West Virginia,43587,58546,82.1,5.3,41,5,1.8,78.5,17,37.2,2.61,3.11,8.4,5.9,79.2,57543,90,33.7,21978,4.7,2.2,1.5,0.3,0.9,NA,NA,NA,116259,44503,95523,10,3.7,6.1,4.4,4.3,1,82,89.7,91.2 +3014,54039,"Kanawha County, West Virginia",Kanawha County, West Virginia,34164,178198,86.9,6.2,43.7,5,2.5,80,21.7,NA,2.28,2.94,16.9,9.8,70.2,44019,90.7,29.3,76806,1.1,1.2,0.9,0.3,0.3,16.1,21,11.1,81423,36168,58887,7,5.4,4.7,1.9,1.7,0.2,70.7,85.4,86.2 +3015,54041,"Lewis County, West Virginia",Lewis County, West Virginia,29230,16808,91.2,0.3,43.2,5.2,2.1,78.2,20.8,30.1,2.39,2.98,8.8,19.1,70.7,48923,88.4,17.5,6940,1.1,0.1,0.1,0,0.1,NA,NA,NA,73742,31004,52279,9.4,9.1,6.6,3,1.8,1.1,61.8,76.1,81 +3016,54043,"Lincoln County, West Virginia",Lincoln County, West Virginia,24481,20170,97,0,44,5.3,2.1,77.8,20.5,NA,2.57,3.13,5.1,35.5,74.7,42444,81.8,8.4,7811,0.3,0,0.3,0,0,NA,NA,NA,63916,26046,48593,4.9,5.4,5.1,0,2.6,0.3,66.4,73.9,82.2 +3017,54045,"Logan County, West Virginia",Logan County, West Virginia,27002,31826,95.8,1.9,44.1,5,1.7,79.2,22,NA,2.5,3,4.1,20.5,76.7,37364,82.6,13.8,12396,0.1,0.2,0.9,0,0,21.4,29.5,11.6,71127,28762,47237,4.9,10.4,6.8,0.2,1,0,67,79.6,88.8 +3018,54047,"McDowell County, West Virginia",McDowell County, West Virginia,20374,18413,88.3,9.2,43.6,4.2,1.9,81.4,21.6,NA,2.51,3.28,2.9,25.7,75.7,31578,75.9,5.7,6484,0.4,0.6,0.1,0.2,0.3,NA,NA,NA,41736,16599,29980,5.5,15,7.7,2.8,2.5,1.2,56.8,63.6,81.5 +3019,54049,"Marion County, West Virginia",Marion County, West Virginia,35122,56042,92,2.6,40.4,5,2.1,80,19.8,NA,2.38,2.92,11.9,7,75.8,46438,92.2,25.8,22965,0.8,1,0.3,0.3,0.1,13.6,20.4,8.7,80748,33719,67537,7.5,5,6.4,14.4,6.3,0.1,73.4,84.1,88.7 +3020,54051,"Marshall County, West Virginia",Marshall County, West Virginia,33071,30129,94.2,0.3,46.2,4.4,2,81,23.2,NA,2.35,2.81,7.2,5.2,79,42174,92.7,19.1,12489,1.5,0.8,0.6,0.1,0.1,NA,NA,NA,80519,34639,60329,7.1,3.9,5.7,0,0.5,0.1,66.9,78.3,83.7 +3021,54053,"Mason County, West Virginia",Mason County, West Virginia,32708,25214,95.9,0.9,44.2,5.5,2.8,79.2,22.2,NA,2.38,2.97,6.6,20.9,82.1,42305,87.1,16.2,10281,0.2,0.7,0.2,0,0,NA,NA,NA,76383,31615,53454,8.2,3.1,5.3,0.1,0.3,1.1,64.4,78.8,82.5 +3022,54055,"Mercer County, West Virginia",Mercer County, West Virginia,28410,59062,89.4,4.3,43.3,5.3,2.8,79.1,22.6,24.4,2.36,2.9,10.6,19.7,69.7,41096,86.6,20.7,24413,1.6,0.9,0.2,0.3,0.3,18,21,12.4,66550,28201,47799,6.8,3.8,5.7,3,3.2,0,66.7,81.4,84.4 +3023,54057,"Mineral County, West Virginia",Mineral County, West Virginia,35272,26922,93.2,1.8,44.6,4.9,1.6,80.1,22.5,25.9,2.46,3.03,10.9,9.5,79.6,45279,93.3,22.8,10698,1.2,0.8,0.2,0.2,0.1,NA,NA,NA,86991,36399,68049,7.6,4.6,4.9,0,2.7,0,75.2,84.8,88.6 +3024,54059,"Mingo County, West Virginia",Mingo County, West Virginia,23001,22979,95.6,2,44.3,5.7,1.4,77.2,21.4,35.1,2.54,3.09,8.9,34.5,72.2,37899,76.5,8.3,9013,0.2,0.4,0.4,0,0.3,29.9,37.6,16.7,54389,22073,39527,6.4,10.4,7.4,0.9,1.4,0.2,54.3,75.6,83.8 +3025,54061,"Monongalia County, West Virginia",Monongalia County, West Virginia,34183,106520,87.4,3.6,32.5,4.5,1,83.8,13.1,NA,2.26,2.89,31.7,8.3,57.6,50435,94,47.9,44361,2.2,2.7,1.9,1.8,1.1,20.5,18.3,7.4,94045,40258,62704,5.5,3.7,5.3,0.7,2.6,0.9,83.1,90.4,89.7 +3026,54063,"Monroe County, West Virginia",Monroe County, West Virginia,28224,12401,96.3,1.3,46.7,5.4,1.8,79.3,24.9,NA,2.6,3.23,2.2,13.4,82.6,37636,87.9,15.4,4736,0.5,0,0,0,0,NA,NA,NA,66394,27648,54508,9.2,8.6,8,0.7,0.9,0,62.5,70.7,79.8 +3027,54065,"Morgan County, West Virginia",Morgan County, West Virginia,36203,17327,94.4,0.3,49.3,4.3,1.8,82.5,24.8,NA,2.38,2.85,4.9,12.5,83.1,42735,87.9,17.6,7211,1.4,1.7,0.2,0,0,NA,NA,NA,78578,34803,63805,10,3.1,6.5,0.8,5.5,0.1,72,78.6,81.3 +3028,54067,"Nicholas County, West Virginia",Nicholas County, West Virginia,27526,24446,96.7,0.3,46,4.6,1.8,79.4,23.6,34.2,2.53,3.14,5.6,21.9,82.3,37863,88,19,9595,0.2,1.2,0.8,0.2,0,NA,NA,NA,69139,29257,49280,8.2,8.1,6.2,3.8,1.7,0,61.6,79.4,82.7 +3029,54069,"Ohio County, West Virginia",Ohio County, West Virginia,32709,41904,90.7,3.2,42.8,5.1,3.5,80.3,22.3,22.3,2.19,2.86,24.2,3,67.4,45498,92.6,32.5,18132,1.6,2.8,1,0.5,0.8,15.7,18,11.5,86627,38225,57867,7.3,5.7,5.2,1.6,2.1,0.2,70.4,81.7,83.9 +3030,54071,"Pendleton County, West Virginia",Pendleton County, West Virginia,27143,6111,94.9,2.1,50.8,4.8,2.7,81.1,29.1,NA,2.61,3.16,2.8,7.1,82.5,39077,87.2,20.5,2299,0,2.3,0.2,0.3,0.5,NA,NA,NA,67231,28783,61738,8.9,7.2,7.2,3.2,4.2,0.2,67,63.9,75.3 +3031,54073,"Pleasants County, West Virginia",Pleasants County, West Virginia,33765,7572,94.7,0.5,43.4,4.8,2.1,80.4,18.5,28.7,2.54,3.06,5.9,21.7,82.3,40084,88.1,14.6,2779,0.6,1.3,0,0,0,NA,NA,NA,103825,40318,61038,10.6,5.4,9,1.9,3.3,0,75.5,80.6,88.9 +3032,54075,"Pocahontas County, West Virginia",Pocahontas County, West Virginia,23014,7855,94.5,0.4,49.8,4.3,3.8,82.8,26.7,22.3,2.43,3.27,3.9,18.3,83.1,29850,83.8,15.8,3092,0.7,0.1,0.3,0.2,0,NA,NA,NA,55746,23387,41200,11.7,9.3,5.7,0.7,0.2,0,57.3,56.9,71.3 +3033,54077,"Preston County, West Virginia",Preston County, West Virginia,31861,34204,90.7,6.6,43.2,4.6,2.3,82.1,20,NA,2.39,2.86,7.2,16,80.6,41974,85.8,17.9,12797,0.4,0.5,0.1,0,0.3,NA,NA,NA,74939,28645,61373,7.2,5.9,6.9,1.7,2.1,0,69.9,76.3,84.1 +3034,54079,"Putnam County, West Virginia",Putnam County, West Virginia,40503,57250,94.7,0.7,42.3,4.7,1.7,78.2,19.3,NA,2.5,2.96,9.1,12.8,82.7,53861,93.1,28.4,22765,0.5,0.8,0.7,0,0.1,10.7,17.4,6.1,98681,40046,77871,8.2,3,6.2,2.3,3.2,0.1,71.2,86.5,86.7 +3035,54081,"Raleigh County, West Virginia",Raleigh County, West Virginia,27438,73666,87.8,6.9,42.8,5,2.2,78.9,21.7,NA,2.42,3.01,8,15.1,74.6,41636,85.5,21.6,29062,1.6,0.6,0.6,0.2,0.1,21.6,29.4,15.4,71102,28661,52055,6.4,5.5,4.6,0.4,1.6,0.6,65.7,80.6,75.2 +3036,54083,"Randolph County, West Virginia",Randolph County, West Virginia,29282,27782,90.7,1.5,44.2,5,2.1,81.4,22.4,20.9,2.45,3.1,9.6,18.2,77.1,36482,87.8,19,10385,1.7,0.7,0.2,0,0,NA,NA,NA,69817,28277,55057,7.5,7.4,7.4,0,1,0,62.3,73.6,80.2 +3037,54085,"Ritchie County, West Virginia",Ritchie County, West Virginia,26646,8372,97.1,0.1,47.2,4.8,2.5,80.3,23.3,NA,2.5,3.07,2.7,26,84.3,36366,84.3,12.8,3327,2.3,0.8,0.8,0,0.7,NA,NA,NA,64123,26336,50256,8.4,1.7,7,0,2.1,0.2,66.4,72.1,78.7 +3038,54087,"Roane County, West Virginia",Roane County, West Virginia,25761,13921,96.2,0,46.5,4.6,1.8,79.2,23,34.2,2.5,3.28,3.8,28.7,77.1,36892,82.9,14.2,5533,0.4,0.3,0.3,0.1,0,NA,NA,NA,63208,26492,45194,8.9,9.2,6.9,8.3,3.5,0.3,55.1,71.4,73.8 +3039,54089,"Summers County, West Virginia",Summers County, West Virginia,24664,11833,91.9,5.7,50.4,3.6,3.3,84,26.8,NA,2.27,3.12,3.3,12.9,80.9,38233,82.9,16,4813,2.2,0.7,0.1,0,0.1,NA,NA,NA,59666,25384,42544,10.2,4.4,4.4,1.8,4.4,0,49.7,73.4,70.8 +3040,54091,"Taylor County, West Virginia",Taylor County, West Virginia,30663,16543,95.6,1.2,44.2,4.7,1.7,79.7,20.9,25.1,2.44,2.95,8.7,14,82.9,40866,86.4,17.4,6632,0.9,0.1,0.2,0.1,0.2,NA,NA,NA,75742,31241,56807,8.9,8,7,0,2.5,0.6,66,81.7,83.2 +3041,54093,"Tucker County, West Virginia",Tucker County, West Virginia,30882,6698,97,0,51.2,3.7,2.7,85.6,27.7,28.7,2.3,2.89,5.8,11.2,81.4,38200,88.9,24.2,2855,2,1.2,0.3,0,0,NA,NA,NA,75203,34982,53475,8.6,6.6,4.7,4,3.8,0.3,67.8,74.9,79 +3042,54095,"Tyler County, West Virginia",Tyler County, West Virginia,26605,8181,95.8,0.7,48.4,4.8,1.3,80.6,23.8,NA,2.57,3.44,4,13.9,86.7,36485,91.6,15.7,3151,1,1,0,0,0.1,NA,NA,NA,77720,31842,58293,7.9,5.8,6.7,22.2,7,0.3,70.2,73,83.8 +3043,54097,"Upshur County, West Virginia",Upshur County, West Virginia,28732,23758,92.8,1.4,42,5.1,1.4,79.2,21.3,26.9,2.34,2.9,6.2,22.2,79.7,41100,88.4,17.4,9588,0.7,0.5,0.2,0,0,NA,NA,NA,72482,30616,51859,7.7,6.1,7.3,1.1,3,0.6,64.9,80.9,83.5 +3044,54099,"Wayne County, West Virginia",Wayne County, West Virginia,29585,38498,96,0.8,44.5,5,1.7,79.4,21.8,NA,2.46,3.04,6.8,17.6,77.5,45081,85.3,17.7,15550,0.6,0.3,0.3,0.4,0.2,15.7,17.9,11.4,76974,32003,55539,8.2,5.3,6,1.2,3.7,0.1,67,78.3,81.4 +3045,54101,"Webster County, West Virginia",Webster County, West Virginia,23619,8253,92.7,0.2,47.1,4.7,2.4,80.4,24.4,30.2,2.89,3.72,5.3,23.2,77.6,34747,80.1,12.6,2838,0.3,0.4,0,0,0,NA,NA,NA,57478,23343,42061,8.7,9.1,4.8,0,9.9,0,56.2,71,78.6 +3046,54103,"Wetzel County, West Virginia",Wetzel County, West Virginia,29253,14233,95.5,0.5,45.6,5.8,1.9,78.7,22.7,NA,2.37,2.97,7.7,16.7,82.4,40660,89.9,13.5,5925,0.2,0.3,0.2,0.1,0.2,NA,NA,NA,68584,28398,53341,8,5.1,4,1.4,1.1,0.4,64.5,72,79.4 +3047,54105,"Wirt County, West Virginia",Wirt County, West Virginia,29905,5131,96.9,0.2,46.2,4.7,1.3,78.6,22.2,NA,2.48,2.95,4.5,24.3,86.3,39136,88.9,16.2,2071,0.5,0.2,0.8,0,0,NA,NA,NA,66144,26792,54688,9.1,3.5,5.1,8.3,3.8,0.8,66.4,73.1,77 +3048,54107,"Wood County, West Virginia",Wood County, West Virginia,32326,83829,94.8,1.2,43.9,5.3,2.1,79,21.2,20.1,2.32,2.97,14.8,7.3,74.4,42099,90.5,22.9,35706,0.8,0.6,0.5,0.1,0.2,14.8,19,8.1,76135,33324,56193,9,5.2,6.6,1.7,2.3,0.2,69.6,82.7,84.9 +3049,54109,"Wyoming County, West Virginia",Wyoming County, West Virginia,23087,20948,97,0.7,45.3,4.6,2.9,79.6,22.9,NA,2.63,3.11,3.9,27.4,83.5,36815,78,12,7926,0.3,0.8,0,0,1.2,NA,NA,NA,62383,24665,48038,5.6,6.1,7.1,0,1.2,0.5,52.7,64.1,74.7 +3050,55001,"Adams County, Wisconsin",Adams County, Wisconsin,33985,20928,89.8,2.2,55.5,3,3,86.1,31.6,NA,2.16,2.7,5.1,17.5,86.4,40591,89,17.3,9351,1.7,3,0.3,0.2,1.6,NA,NA,NA,74613,35145,59153,10.2,5,5.2,5.1,4.1,0.2,72.6,80.6,82.8 +3051,55003,"Ashland County, Wisconsin",Ashland County, Wisconsin,32153,16050,83.3,0.8,43.1,5.1,2.7,79,21.1,17.4,2.25,2.98,15.6,6.7,72.4,41447,95.2,22.1,6847,1,1.4,0.2,1.1,0.3,NA,NA,NA,72039,31803,57645,8.2,4.7,6.4,3.4,5.5,0.1,73.6,78.4,80.3 +3052,55005,"Barron County, Wisconsin",Barron County, Wisconsin,35292,46741,92.1,1.5,44.8,5.2,2.7,78.7,23.1,20.8,2.35,2.88,14,4.7,76.8,43224,91.7,22.3,19613,1.9,1.4,0.4,0.7,1.4,NA,NA,NA,85894,36937,64619,7.9,3.2,6.7,3.9,7.3,0.1,74.2,84.2,83.4 +3053,55007,"Bayfield County, Wisconsin",Bayfield County, Wisconsin,36639,16410,84.5,0.8,54.1,4,2.6,83.4,30.3,23.3,2.18,2.65,7.3,6.8,84.5,41825,96.2,35,7462,1,2,0.3,1.6,0,NA,NA,NA,88980,40846,69609,11.2,3.8,5.9,3.9,4.7,0.1,81.3,82.2,88.3 +3054,55009,"Brown County, Wisconsin",Brown County, Wisconsin,42167,269425,80.5,2.7,37.9,5.9,1.7,76.7,15.9,NA,2.38,3,27.9,1.2,64.6,51476,93.3,32.4,110248,6.3,1.9,2,0.7,2.2,9.8,12.1,7.5,99390,40907,77490,6.5,2.5,5.5,3.3,3.7,0.3,80.5,89.4,91 +3055,55011,"Buffalo County, Wisconsin",Buffalo County, Wisconsin,39197,13341,95.2,0.5,46.4,4.8,2.8,79.9,23.3,25.3,2.32,2.85,10.8,5.4,78.3,46629,92,22.1,5692,2.1,1.4,0.2,0.1,0.3,NA,NA,NA,80608,36164,68722,8.4,1.9,4.8,3.6,3,0.4,72.2,80.5,86.2 +3056,55013,"Burnett County, Wisconsin",Burnett County, Wisconsin,33702,16741,90.7,0.8,55.2,3.6,2.9,83.9,31.3,29.3,2.34,2.93,5,8.6,85.3,41406,92.8,22,7087,0.8,1.3,0.2,0.5,0.2,NA,NA,NA,82526,37790,61664,10.6,4.6,6.3,3.9,5.9,0.1,71,80.7,83.1 +3057,55015,"Calumet County, Wisconsin",Calumet County, Wisconsin,46414,52626,89.2,0.9,41.7,4.9,1.6,77.3,16.5,NA,2.5,2.98,16,1.7,80.7,57003,94.8,32.5,20975,3.3,1.3,1.5,0.3,0.6,NA,NA,NA,107242,43814,87700,5.9,1.7,2.7,0.3,1.7,0,83.3,89.2,91.8 +3058,55017,"Chippewa County, Wisconsin",Chippewa County, Wisconsin,39507,66558,93.1,1.6,41.7,5.3,2.3,78.3,19.1,NA,2.4,2.97,15.3,4.2,74.6,47309,93.5,24.1,26567,1.8,1.5,0.8,0.2,0.5,9.2,11.6,9.2,93401,38212,74009,7.7,2.6,4.7,3.7,4.4,0.2,76.1,85.5,89 +3059,55019,"Clark County, Wisconsin",Clark County, Wisconsin,36538,34736,92.4,0.8,37,8.2,2.5,70.2,17,NA,2.69,3.28,9.2,5.4,77.9,44997,82.5,13.4,12692,4,8.5,0.6,0.1,2.9,NA,NA,NA,86275,31744,66250,6.2,3,21.3,36.7,31.8,1.5,65.4,74.5,77.9 +3060,55021,"Columbia County, Wisconsin",Columbia County, Wisconsin,45389,58322,92.1,1.9,43.3,5.1,2.1,79.2,19.1,26.6,2.34,2.84,16.6,2.7,76.9,53596,93.8,25.7,24231,2.3,1.6,0.7,0.4,0.8,NA,NA,NA,98820,41515,82792,7.8,3,4.6,4.9,4.9,0,79.2,85.2,87.7 +3061,55023,"Crawford County, Wisconsin",Crawford County, Wisconsin,35409,16064,93.6,1.4,47.3,4.9,2.7,80.6,24.8,22,2.29,2.84,9.3,10.8,75.9,43329,92.4,18.3,6665,0.5,2.3,0.3,0.1,0.6,NA,NA,NA,80220,34130,63496,8.5,2.5,6.8,3.1,5.7,0.1,74.2,76.7,81.9 +3062,55025,"Dane County, Wisconsin",Dane County, Wisconsin,49500,564777,79,5.1,35.6,5.2,1.6,80,14.7,20.8,2.24,2.9,41.1,0.7,57.7,60658,96.3,54.4,245736,4.8,3.3,3.7,0.8,1.8,10.5,8.5,5.5,117041,51486,88108,4.6,2.3,3.6,1.9,2.6,0.4,89.4,92.4,92.6 +3063,55027,"Dodge County, Wisconsin",Dodge County, Wisconsin,41682,88818,90,2.7,42.9,4.6,2.4,80.3,18.5,23.5,2.36,2.96,21.3,3.2,71.3,49268,92.5,19.9,35723,3.9,1.6,0.5,0.2,1.1,7.9,9.6,8,88987,37295,73992,7.5,3.3,4,1.7,2.7,0.2,76.8,86,88.8 +3064,55029,"Door County, Wisconsin",Door County, Wisconsin,43000,30279,93.3,0.7,54.1,3.9,2.9,84,31.5,NA,2.08,2.62,15.1,5.3,79.3,46722,96.6,37.1,14377,3.7,1.4,0.5,0.1,0.6,NA,NA,NA,99914,48630,71785,7.6,3.4,3.8,1.4,2.2,0.1,80.7,86.7,88.5 +3065,55031,"Douglas County, Wisconsin",Douglas County, Wisconsin,39232,44197,90.9,1.3,42.8,4.5,2.3,80.7,20.1,22.1,2.27,2.9,20.2,4.5,72.1,48375,94.6,27.8,18947,1.6,1,0.7,0.6,0.2,NA,NA,NA,86804,38308,72579,8.4,2.9,4.7,4.8,3.7,0.1,74.5,87.4,87 +3066,55033,"Dunn County, Wisconsin",Dunn County, Wisconsin,35297,45349,91.9,0.9,35.8,4.7,1.4,80.5,16.4,NA,2.42,3.04,22.1,8.2,66.5,47764,94.4,29.2,17369,1.6,0.8,1.5,0.3,0.8,NA,NA,NA,88965,36207,71785,5.8,4,4.9,2.6,3.1,0,80.3,86.8,88.2 +3067,55035,"Eau Claire County, Wisconsin",Eau Claire County, Wisconsin,37946,106328,88.8,1.2,35.8,5.1,1.9,79.9,16.6,NA,2.37,2.95,27.8,2.7,62.8,49063,96,35.7,43261,2.7,1.5,2.4,0.2,0.8,11.5,8.8,7.2,96941,40845,71834,6.5,2.8,6.4,6.9,5.1,0.1,80.2,87.8,90.2 +3068,55037,"Florence County, Wisconsin",Florence County, Wisconsin,34688,4617,95.7,0.4,54.8,3.8,2,84.3,28.4,NA,2.16,2.64,2.8,9.5,90,41885,91.5,23.1,2110,1,1.3,0.1,0,0,NA,NA,NA,78755,37845,62786,10.3,5.7,6.7,0,5.4,0.5,75.9,82.3,85.7 +3069,55039,"Fond du Lac County, Wisconsin",Fond du Lac County, Wisconsin,41479,104053,88.8,1.7,41.9,5.1,2.2,78.7,19.3,NA,2.34,2.98,22.3,3.4,70.3,49353,93,22.6,43016,3,1.2,1.3,0.1,0.7,8.7,13,8.1,91108,38436,73154,7.1,2.7,3.7,2.1,2.1,0,77.2,86.8,89.1 +3070,55041,"Forest County, Wisconsin",Forest County, Wisconsin,33603,9261,78.4,0.4,49.1,5.2,2.7,80.9,25,NA,2.29,2.71,6.9,5,82.4,42136,90.7,15.5,3952,0.9,1.4,0,2.1,0.1,NA,NA,NA,73293,31994,59727,7.9,3.5,8,9.3,7.3,0.2,71.1,81,83.4 +3071,55043,"Grant County, Wisconsin",Grant County, Wisconsin,33525,51678,94.2,1.8,36.9,5.7,2.3,78.8,18,NA,2.41,3.03,17.1,4.3,69.1,45061,92.9,24.6,19913,1.4,2.4,0.5,0,0.6,13.4,14.9,9.5,82821,33079,64349,5.7,2.5,7.5,14.5,10.6,0.2,78.4,83.5,84.5 +3072,55045,"Green County, Wisconsin",Green County, Wisconsin,43129,37036,94.1,0.7,43.1,5.1,2.6,78.1,19.8,NA,2.35,2.97,15.2,4,75.1,49390,93.9,27,15609,2.9,1.1,0.2,0.2,0.9,NA,NA,NA,96605,42505,80248,6.7,3.6,4.2,6.8,3.2,0.1,73.4,83.4,87 +3073,55047,"Green Lake County, Wisconsin",Green Lake County, Wisconsin,37992,19165,93.2,0.8,45.5,5.6,2.7,78.3,22.9,24.5,2.31,2.84,14.3,2.8,75,46958,91.5,22.5,8143,3.1,3.3,0.1,0,0.7,NA,NA,NA,87958,37510,66917,7.7,2.6,9,14.2,13.7,0.3,71.5,82.4,83.1 +3074,55049,"Iowa County, Wisconsin",Iowa County, Wisconsin,43521,23832,93.4,0.8,43.7,5.3,2.1,78.1,19.9,26.6,2.37,2.97,13.1,3.1,77.1,51208,95.5,28.5,9951,1.2,1.1,0.7,0,0.1,NA,NA,NA,97487,41421,83372,5.9,3.5,3.4,4.9,2.8,0.2,77.9,85.5,88.4 +3075,55051,"Iron County, Wisconsin",Iron County, Wisconsin,33841,6164,94.5,0,55.9,3.6,3,84.6,32,NA,2.05,2.48,7.4,2.5,86.9,40154,95.4,23.4,2949,1.3,1.1,0.2,0.7,0.5,NA,NA,NA,73582,35462,59058,9.8,2.3,5.9,7.7,7.2,0.1,76,80.9,86.6 +3076,55053,"Jackson County, Wisconsin",Jackson County, Wisconsin,34069,20971,86.2,1.7,42.6,5.7,2.1,78.4,19.9,NA,2.41,3,8.8,10.1,77.4,40973,92.4,16.3,8198,1.5,1.3,0.4,1.4,0.6,NA,NA,NA,82194,33387,65508,9.6,5.1,7.8,9.8,7.9,0,70.9,81.3,84.2 +3077,55055,"Jefferson County, Wisconsin",Jefferson County, Wisconsin,41728,85867,89.8,1.1,41.3,4.8,1.6,79.9,18,24.9,2.39,2.97,21.4,3.3,72.9,51378,92.9,28.1,34455,4.4,1.3,0.6,0.1,0.4,8.1,9.8,7.7,97779,40640,80604,6.6,2.5,4.6,1.8,2.6,0,81.3,85.8,89.6 +3078,55057,"Juneau County, Wisconsin",Juneau County, Wisconsin,34988,26695,88.8,2.3,45.9,4.9,2.4,80.4,21.4,24.2,2.29,2.83,12.5,14.9,77.7,44339,89.7,16.3,10793,1.1,3.3,0.4,0.3,0.7,NA,NA,NA,78183,32116,65150,9.1,3.5,6.7,1.5,2.3,1.2,70,83.9,82.4 +3079,55059,"Kenosha County, Wisconsin",Kenosha County, Wisconsin,41679,168413,76.8,6.2,39.2,5.4,1.7,77.9,15.3,NA,2.43,3.01,27,2.7,67.6,53028,91.5,30.8,67631,8.7,3.9,1.2,0.6,2.2,10.5,14.3,9.1,99465,40540,79412,6.3,4.6,6.2,6.4,4.5,0.5,80.4,90,91.8 +3080,55061,"Kewaunee County, Wisconsin",Kewaunee County, Wisconsin,41793,20621,93.6,0.4,44.4,5,2.3,78.9,21.5,24.9,2.46,2.93,10.6,3.9,85.3,49729,93.6,20.6,8299,3,1.6,0.7,0,0.6,NA,NA,NA,94566,39364,80085,7.1,1.6,4.1,1.2,1.4,0.4,74.1,84.1,85.6 +3081,55063,"La Crosse County, Wisconsin",La Crosse County, Wisconsin,38997,120262,88.8,1.5,37.1,4.8,2.6,80.4,17.4,19.1,2.28,2.93,29,3.8,62.5,49366,96.5,36.1,50543,2.7,1.6,2.6,0,0.6,12.4,7.6,9.5,95451,40841,70704,6.9,2.9,4.6,5,3.5,0,81.3,87.7,88.8 +3082,55065,"Lafayette County, Wisconsin",Lafayette County, Wisconsin,39383,16788,93.4,0.6,40.9,6.8,2.4,75.2,19.8,NA,2.49,3.04,9.1,4.2,79.3,47648,91,20.6,6684,3.1,2.9,0.3,0,1.8,NA,NA,NA,86841,34686,72091,6.3,2.1,10.7,17.6,13.4,1.3,70.4,80.7,80.6 +3083,55067,"Langlade County, Wisconsin",Langlade County, Wisconsin,34261,19473,93,0.5,49,5.3,3,80.7,25.1,22.2,2.23,2.78,13.3,4.3,78,41381,89.8,16.2,8606,1,0.9,0.1,0,0,NA,NA,NA,76439,34160,57258,8.9,3.8,5,4.2,2.2,0.2,69.8,83.4,87 +3084,55069,"Lincoln County, Wisconsin",Lincoln County, Wisconsin,39106,28403,94.2,0.5,49.2,5,2.5,82,23,22.1,2.21,2.78,13.3,5,78.4,46075,92.5,19.4,12578,1.3,1.8,0.4,0.1,0.8,NA,NA,NA,83765,38296,67726,6.4,3.3,4.9,7.9,5.2,0.2,73.1,82.6,84 +3085,55071,"Manitowoc County, Wisconsin",Manitowoc County, Wisconsin,38077,81314,89.8,0.8,45,5,2.3,79.5,21.7,19.9,2.28,2.84,19.9,2.9,76.3,47913,92.3,22.2,35033,3.6,1.4,1.5,0.1,0.7,9.8,12.6,9.6,86730,37639,68611,8.3,1.8,4.4,2.8,3.6,0.2,74.6,84.7,87.7 +3086,55073,"Marathon County, Wisconsin",Marathon County, Wisconsin,41427,138067,87.9,0.5,41.2,5.6,2.5,77.3,18.6,19.3,2.4,2.93,18.3,2.5,73.4,49335,93.1,27.3,56873,1.9,1.7,2.9,0.1,0.9,8.9,11.6,8.4,95540,39970,76185,7.1,2.6,6,5.4,4.7,0.5,78.6,85.6,88.8 +3087,55075,"Marinette County, Wisconsin",Marinette County, Wisconsin,35962,41907,94.7,0.4,48.8,4.6,3,81,24.6,20.9,2.2,2.74,10.1,8.2,80.4,45958,93.1,19.5,18640,2.9,1.6,0.3,0.2,0.6,NA,NA,NA,80117,36123,63401,9.7,3.1,4.3,1.5,2.5,0.1,73.3,83.2,85.8 +3088,55077,"Marquette County, Wisconsin",Marquette County, Wisconsin,34827,15706,93.9,0.5,50.5,4.4,2.5,81,25.9,28.7,2.26,2.77,6.7,8.8,80.9,44045,91.9,15.2,6881,1.5,1.4,0.3,0,0.4,NA,NA,NA,79741,35090,63471,10.3,2.9,5.5,3.3,5,0.1,73.6,79.9,87.5 +3089,55078,"Menominee County, Wisconsin",Menominee County, Wisconsin,30458,4256,12.4,0.8,33.8,8,2.3,69.3,15.6,20.6,3.15,3.54,2.5,9.3,73.5,32988,95.3,19.6,1336,0.7,0.4,0,8.3,0,NA,NA,NA,72396,22834,59528,8,11.8,22.5,37.3,22.7,0.2,64.1,86.9,87.4 +3090,55079,"Milwaukee County, Wisconsin",Milwaukee County, Wisconsin,38489,927656,52.4,26.1,35.4,6.5,1.8,76.1,14.4,22.3,2.33,3.16,47.8,0.5,49.8,48827,89.6,33.9,389046,10.7,3.4,2.6,1.1,3.3,17.5,24,13.7,86052,36955,62118,4.5,4.6,7.1,2.6,3.2,0.7,75.1,87.9,87.5 +3091,55081,"Monroe County, Wisconsin",Monroe County, Wisconsin,37739,46169,90.7,1.5,39.6,6.3,2.1,74.6,17.6,20.2,2.48,3.1,14.7,8.2,72.4,46215,90.8,20,18279,3.5,3.1,0.3,0.4,0.8,11.8,15.1,10.9,85024,34501,68213,12.3,2.8,8.9,12.9,11.7,0.4,73.7,82,85.1 +3092,55083,"Oconto County, Wisconsin",Oconto County, Wisconsin,40757,39329,94.1,0.1,47.4,4.9,1.9,80.1,22,NA,2.35,2.73,8.1,7.7,84.5,50017,93.1,18.7,16618,1.1,0.8,0.4,0.1,0.3,NA,NA,NA,90916,39196,75886,8.1,2.3,3.6,1.6,1.4,0.3,73.8,85.8,87.8 +3093,55085,"Oneida County, Wisconsin",Oneida County, Wisconsin,36183,38007,94,0.5,52.2,4.1,3.1,83,27.5,NA,2.23,2.84,10.9,5.2,84,45127,95.7,28.4,16772,1.1,1.2,0.3,0,0.2,NA,NA,NA,89854,41160,69621,9,2.3,4.8,1.8,4,0.1,79.5,84.4,87.8 +3094,55087,"Outagamie County, Wisconsin",Outagamie County, Wisconsin,44222,191537,86.6,1.6,38.7,5.9,1.9,76.8,16.1,NA,2.44,3.03,21.3,0.9,71.7,53380,94.8,32,77239,3.6,1.5,2.2,0.5,1,6.4,7.6,7.4,110546,45323,82857,6.4,2.7,4.4,3.4,4,0.1,82.6,89,92 +3095,55089,"Ozaukee County, Wisconsin",Ozaukee County, Wisconsin,48953,92345,90.8,1.5,44,5.1,2.7,78.9,21,NA,2.39,2.94,24.9,0.3,72.8,62677,97.8,50.4,37766,2.1,3.8,1.2,0.5,0.7,NA,NA,NA,136887,57651,96734,5.7,2.5,2.4,0.9,1.7,0.1,86.9,89.9,93 +3096,55091,"Pepin County, Wisconsin",Pepin County, Wisconsin,40683,7372,95.6,0.3,46.3,5.4,1.8,78,23.9,NA,2.39,2.86,8.7,3.1,83.5,48346,95.2,23.6,3050,1.8,2.5,0.2,0.1,0.5,NA,NA,NA,95774,40261,74536,7,1.7,7.6,8.5,6.5,0,74.2,81.2,86.1 +3097,55093,"Pierce County, Wisconsin",Pierce County, Wisconsin,40314,42351,92.5,0.4,38.4,5,1.4,79.5,16.1,NA,2.52,3,16.4,2.8,75.8,55153,95.7,32,15765,1.9,1.1,0.8,0.5,0.2,NA,NA,NA,109835,42456,88802,5.8,2.8,3.2,1.3,1.8,0.2,79.7,88.7,91 +3098,55095,"Polk County, Wisconsin",Polk County, Wisconsin,40399,45327,94.2,0.3,46.5,4.6,1.8,79.8,21.9,29.5,2.38,2.86,10.5,6.5,81.1,48863,93.6,23.7,18829,1.1,1.1,0.6,0.2,0.2,NA,NA,NA,92480,39402,76208,8.2,3.3,6.1,4.8,5.4,0.3,76.5,85.6,86.6 +3099,55097,"Portage County, Wisconsin",Portage County, Wisconsin,38293,70375,90.5,0.8,38.1,4.6,1.6,81,17.8,NA,2.28,2.85,23.5,3.8,69.3,49716,94.8,33.7,29636,2.3,1.5,1.4,0.2,0.7,10.2,10.3,6.3,92252,39476,73284,7,3,5,2.2,2.4,0.1,82.6,88.1,91.7 +3100,55099,"Price County, Wisconsin",Price County, Wisconsin,33589,14077,94.1,0.2,52.5,4,3.5,82.1,27.8,NA,2.12,2.75,8.3,6.9,81.5,42176,93.3,17.1,6567,1.4,0.9,0.9,0.2,0.3,NA,NA,NA,73497,35095,58720,10,2.8,5.9,4.2,5,0,73.5,75.3,82.3 +3101,55101,"Racine County, Wisconsin",Racine County, Wisconsin,41726,196888,74.2,10.6,40.5,5.7,2.1,77.1,17.7,NA,2.43,3.02,23,1.1,71.1,51559,91.6,28,79109,7.5,2,0.9,0.2,1.2,10.8,15,7.1,96943,39704,75331,6.6,3.6,5.7,3.7,2.8,0.5,79.4,88.5,90 +3102,55103,"Richland County, Wisconsin",Richland County, Wisconsin,35859,17229,93.4,0.9,46.4,4.9,2.7,78.7,24.4,23.5,2.37,2.95,12.6,4.6,76.5,43441,92.1,20.7,7119,2.9,2.8,0.5,0.1,1.9,NA,NA,NA,80217,34011,62649,7,3.6,8.2,13.6,13.1,0.1,70.1,76.5,79.3 +3103,55105,"Rock County, Wisconsin",Rock County, Wisconsin,40992,163944,82.3,4.7,40.1,5.7,2,77.3,17.3,NA,2.42,3.01,18.7,2,70.6,48589,92.6,25.7,66652,5.4,1.3,0.7,0.2,1.2,10,14.2,8.8,89673,37428,74390,7.1,3.7,5.2,2.9,3.1,0.7,77.6,88.5,89.1 +3104,55107,"Rusk County, Wisconsin",Rusk County, Wisconsin,33327,14146,94.3,0.9,49.1,5,2.7,79.8,25.4,27,2.23,2.78,9.3,6.8,77.5,39253,92.3,16.3,6259,0.8,1.2,0.2,0,0.2,NA,NA,NA,72443,32642,58322,9.2,4.9,6.4,4.7,5.5,0.2,68.3,78.9,83.4 +3105,55109,"St. Croix County, Wisconsin",St. Croix County, Wisconsin,50798,94819,93,0.7,39.8,5.7,1.6,75.9,15.3,NA,2.56,3.03,14.4,2.8,78.9,60575,96.3,39.4,36729,1.9,1.6,0.9,0.1,0.4,6.6,7.2,7.3,124042,48851,102482,7.1,1.9,3.7,3.3,2.5,0.1,84,91.1,91.6 +3106,55111,"Sauk County, Wisconsin",Sauk County, Wisconsin,41374,65759,89,0.9,41.3,5.6,2.6,77.5,19.3,23.3,2.37,2.87,19.2,6.8,73.1,48883,93.4,26.5,27425,5.3,2.8,0.6,0.3,1.5,8.8,12,6.6,95062,39770,77648,7,2.7,6.4,6.2,7.3,0.3,80.5,86.8,88.2 +3107,55113,"Sawyer County, Wisconsin",Sawyer County, Wisconsin,34499,18243,77.9,0.6,52.2,4.4,2.9,81.8,27.8,NA,2.09,2.62,9.6,6.5,77.4,40025,92.9,27.2,8522,1.8,0.8,0.4,2.2,0.1,NA,NA,NA,79980,37653,59055,9.3,6,6.4,3.7,3.4,0.5,73.2,80.3,84 +3108,55115,"Shawano County, Wisconsin",Shawano County, Wisconsin,36679,40927,86.1,0.6,45.5,5.3,2.6,78.7,21.8,23.2,2.39,2.91,11.3,4.9,78.6,44176,92.9,18.7,16881,1.2,1.4,0.2,0.4,0.4,NA,NA,NA,85534,36172,67032,7.6,3.3,6.2,4.9,4.7,0.3,67.8,81.7,84.7 +3109,55117,"Sheboygan County, Wisconsin",Sheboygan County, Wisconsin,41579,117783,84.3,2.1,41.8,5.3,2.2,78.2,19.1,NA,2.32,2.96,25.5,1.9,71.3,50540,93.5,27.3,49426,4.6,1.3,3.7,0.1,1.7,8.1,10.5,6.6,92593,39338,71898,6.2,2.2,4.2,1.3,2.6,0.4,79.8,86.7,90.4 +3110,55119,"Taylor County, Wisconsin",Taylor County, Wisconsin,36405,19972,95.1,0.3,44.1,5.5,3,76.7,20.7,22,2.49,3.1,13.9,7,79.2,44333,90.2,16.7,7943,2.4,3,0.2,0.1,0.7,NA,NA,NA,81456,34053,63142,7.7,2.9,7.3,10.6,9,0.4,68.7,76.6,81.3 +3111,55121,"Trempealeau County, Wisconsin",Trempealeau County, Wisconsin,41207,30786,87.8,0.5,39.8,7.4,2.5,73.3,18.3,NA,2.44,3.05,16.7,5.7,73.8,48233,91.6,20.2,12448,6.2,1.6,0.5,0.1,2,NA,NA,NA,89298,36001,71295,7.2,2.2,8.3,9.2,8.4,0.2,69.8,83,85.2 +3112,55123,"Vernon County, Wisconsin",Vernon County, Wisconsin,40084,30915,95,0.3,41.5,6.8,2.3,73.9,20.7,NA,2.5,3.13,8.2,8.9,81.1,47065,90.5,24.8,12186,1.5,5.8,0.1,0,1.1,NA,NA,NA,86971,34551,69556,7.2,2.4,14.7,32.4,26.9,1.4,72.8,76.3,79 +3113,55125,"Vilas County, Wisconsin",Vilas County, Wisconsin,37494,23410,85.9,0.3,55.5,4,2.9,83.5,31.2,19.5,2.13,2.63,7.1,5,83.5,42140,96.1,30.5,10873,1.4,1.3,0.2,0.4,0.1,NA,NA,NA,89265,42822,67132,9.7,3.6,6.2,7.3,4.5,0.2,78,85,86.1 +3114,55127,"Walworth County, Wisconsin",Walworth County, Wisconsin,40159,105447,87.1,0.8,41.1,4.5,2.1,80.1,19.2,NA,2.42,2.95,21.8,2.4,70.6,50880,92.5,32.3,42425,7.4,2.5,0.5,0.1,1.5,9.7,9.7,7.2,104608,42771,77359,5.8,3.1,5.7,3.3,2.6,0.3,81.6,88.6,87.6 +3115,55129,"Washburn County, Wisconsin",Washburn County, Wisconsin,34103,16749,93.4,0.6,52.4,3.8,2.7,81.6,27.6,NA,2.19,2.74,7.3,7.1,80.9,40691,93.7,23.6,7529,1.4,1.8,0.5,0.2,0.6,NA,NA,NA,79948,36411,61270,9.6,3.7,5.7,3.5,4.3,0.1,72.9,83.3,84.2 +3116,55131,"Washington County, Wisconsin",Washington County, Wisconsin,49583,137320,92.1,1.6,43.5,4.9,2.2,78.7,19.2,NA,2.41,2.9,21.2,1.1,78.1,59453,95.6,34.8,56482,1.7,2.4,1,0.1,0.4,5.3,5.8,6.3,115147,48255,95851,6.9,2.2,3.1,1.9,2.7,0.1,84.6,88.3,92.2 +3117,55133,"Waukesha County, Wisconsin",Waukesha County, Wisconsin,52575,409040,87.9,1.5,43.3,5.1,2.6,78.8,19.9,NA,2.43,2.96,23.2,0.6,76.4,65598,97.1,47.9,166790,3.4,3.5,2.1,0.2,1.1,5.2,5.8,6.7,136213,57291,104100,5.8,2.5,3,2.3,2.1,0.3,87.8,90.6,93.3 +3118,55135,"Waupaca County, Wisconsin",Waupaca County, Wisconsin,39667,51714,93.6,0.7,45.4,5.1,2.8,79.7,20.9,25,2.25,2.74,16.8,3.8,74.8,48670,92,20.2,22394,3.4,1.3,0.4,0,0.3,NA,NA,NA,91598,40581,71189,7.9,2.9,5.9,5.1,4.2,0.2,74.3,84,85.9 +3119,55137,"Waushara County, Wisconsin",Waushara County, Wisconsin,34190,24752,89.7,1.8,49.9,4.3,2.3,82,25.5,NA,2.3,2.85,7,7.2,83,43903,90.1,17.4,10333,5,2,0.3,0,0.6,NA,NA,NA,82262,39624,64968,8.1,4.4,8.5,10.9,10.2,0.2,69.8,81.4,83.8 +3120,55139,"Winnebago County, Wisconsin",Winnebago County, Wisconsin,40377,171357,87.8,2.6,38.4,5.2,2.2,79.6,17.1,NA,2.29,2.89,27.5,1.7,65.8,50897,94.5,31,71958,2.5,1.4,2.2,0.2,0.7,10.9,13.3,7.9,92895,40072,72873,7.1,1.9,4.8,4.5,3.8,0.4,81.2,88.5,89.8 +3121,55141,"Wood County, Wisconsin",Wood County, Wisconsin,38030,74039,92,0.8,43.9,5.4,3.2,78.4,21.4,21,2.29,2.86,17.9,3.5,73.4,45676,93.5,21.4,31942,1.8,1.5,1.4,0.3,0.8,10.3,11.2,8.8,86752,37954,66417,8.2,4.3,4.5,2.4,2.7,0,74.8,82.6,88.6 +3122,56001,"Albany County, Wyoming",Albany County, Wyoming,29485,37713,85,1.2,28.7,4,0.8,84.4,13.1,14.8,2.11,2.69,32.3,7.7,49.4,47944,96.9,55.5,16609,6.2,3.4,2.8,0.5,1.7,21,16.3,5.6,84861,37277,59881,6,3.4,7.8,7.7,4.5,0.2,90.1,92.8,89.6 +3123,56003,"Big Horn County, Wyoming",Big Horn County, Wyoming,31294,11737,89,0.5,41.5,5.3,2.2,75.5,21.5,NA,2.64,3.35,4.8,12.1,77.2,39315,88,20.9,4357,5.6,1.4,1.3,0,1.4,NA,NA,NA,77224,31066,60547,9.2,4.5,14.6,12.9,7,0.1,78.3,85.1,86.5 +3124,56005,"Campbell County, Wyoming",Campbell County, Wyoming,47514,47018,86.8,0.3,35.8,6.5,0.4,72.9,12.2,21.7,2.6,3.07,14,17.3,78.4,56365,91.9,22.2,17879,5.5,0.5,0.9,0,0.4,NA,NA,NA,105583,40983,95253,7.8,2.8,13,20.2,13.3,0.8,81,93.3,92.4 +3125,56007,"Carbon County, Wyoming",Carbon County, Wyoming,38025,14549,83.8,1.3,40.4,5.7,1,77.1,19,16.5,2.37,2.91,8,13.7,76.8,49229,91.2,22.8,5885,10.4,1.4,1.2,0,2.1,NA,NA,NA,83412,35421,66721,8.4,4.5,13.5,15.4,13,0,74.4,88,91.2 +3126,56009,"Converse County, Wyoming",Converse County, Wyoming,39639,13759,94.3,0.2,41.3,6.4,2.6,75.5,18,24.1,2.4,2.93,11,11.1,78.3,50141,93.7,22.9,5707,4.6,1.1,0.2,0,1.1,NA,NA,NA,93987,38337,79164,10.1,3,10.6,3.4,3.1,1,76.1,85.8,81.4 +3127,56011,"Crook County, Wyoming",Crook County, Wyoming,41250,7339,93.6,0,44.3,6.5,2.5,75.7,22.3,NA,2.52,3.11,5.9,15,76,52615,94.9,24,2891,3.5,0.8,0.7,0,0.2,NA,NA,NA,85290,35109,71209,10.3,0.9,6.2,3.2,3.3,0,80.7,87.2,86.1 +3128,56013,"Fremont County, Wyoming",Fremont County, Wyoming,31876,39472,71.8,0.5,39.4,5.9,1.8,75.4,19.6,NA,2.6,3.32,8.8,15.8,70.7,39318,93.5,25.3,14810,2.5,1.3,0.8,3.6,0.1,NA,NA,NA,82157,32717,64646,8.6,8.2,18.6,15.5,16.3,0.6,74.5,85.3,86.7 +3129,56015,"Goshen County, Wyoming",Goshen County, Wyoming,31276,12587,88.3,0.8,43.4,6.1,3.1,80.4,23.4,16.6,2.3,2.92,10.7,9.9,74.1,40835,93,24.6,5053,6,0.9,0.5,0.5,0.2,NA,NA,NA,81657,34997,64882,9.6,2.6,9.5,9.6,7.2,0.4,72.8,83.5,80.7 +3130,56017,"Hot Springs County, Wyoming",Hot Springs County, Wyoming,32164,4618,91.1,0,45.4,5.7,2.6,78.4,26.6,13.9,2.18,2.67,6.1,19.7,72.6,39534,94.4,26.4,2079,3.6,0.7,0,0,0,NA,NA,NA,77018,33942,64375,11.9,2,13.7,7.2,5.9,0,75.7,84.5,89.3 +3131,56019,"Johnson County, Wyoming",Johnson County, Wyoming,35894,8602,92.3,0,47,4.5,3.5,80.4,26.7,NA,2.16,2.9,7.2,12.4,79.6,50458,94.6,30.3,3919,2.8,1.3,0.5,0.8,0,NA,NA,NA,84353,39367,63905,9.1,2.6,10.1,13.9,10.3,0,78.9,82.8,87.7 +3132,56021,"Laramie County, Wyoming",Laramie County, Wyoming,43660,100661,82.2,2.2,38.2,5.8,2.1,77.3,16.9,NA,2.33,2.93,15.8,7.8,70.8,53938,94.5,32,42503,5.9,1.9,1.3,0.5,0.6,9.9,13.5,6.5,99326,42449,77884,13.5,2.8,9.6,9.2,10.8,0,82.8,89.7,90.8 +3133,56023,"Lincoln County, Wyoming",Lincoln County, Wyoming,40449,20158,93.5,0,41.2,5.8,1.9,74.2,18.6,24.7,2.55,3.18,7.7,12.6,80.1,50763,94.6,24.1,7872,4.2,0.7,0.6,0.1,0.7,NA,NA,NA,102285,40375,86092,8.1,2.1,13.1,7.2,15.2,0,82.4,89.9,86.2 +3134,56025,"Natrona County, Wyoming",Natrona County, Wyoming,40070,79735,89.4,0.6,38.2,5.8,1.6,76.1,16.4,18.5,2.35,3,15.5,8,73.6,47916,93.8,27.4,33285,4.6,2.2,1,0.3,0.6,9.7,12.2,6.4,95793,40978,71247,8.1,3.2,11.7,5.7,6.2,0.2,80.3,90.6,90.9 +3135,56027,"Niobrara County, Wyoming",Niobrara County, Wyoming,24568,2415,93.7,1.4,49.6,2.4,4.8,85.3,29.6,15.3,1.92,2.68,11.3,11,65.2,41712,94.2,19.6,1141,1.9,1,0,0,0,NA,NA,NA,73515,36676,48987,7,3.2,8.5,3.6,0.8,0,73.4,79.9,81.4 +3136,56029,"Park County, Wyoming",Park County, Wyoming,35277,30109,90.1,0.4,44.8,5.1,2.6,79.2,24.9,16.3,2.22,2.8,10.6,7.1,74.7,41154,95.8,35,13179,3.5,1.5,0.8,0,0.4,NA,NA,NA,94064,41425,70533,9.4,1.3,10.3,1.3,3.2,0.8,82.3,85.2,90.3 +3137,56031,"Platte County, Wyoming",Platte County, Wyoming,36458,8606,87.8,0.4,47.8,4.4,3.1,79.9,26.2,NA,2.19,2.8,8.2,19.3,72.5,45151,91.6,19.5,3877,4.7,1.9,0,0,0.8,NA,NA,NA,82117,37237,66299,8,4.5,22.5,0.8,20.9,1,71.6,83.7,78.1 +3138,56033,"Sheridan County, Wyoming",Sheridan County, Wyoming,38755,31585,92.5,0.4,42.9,4.7,2,78.5,22.1,NA,2.27,2.98,15.7,7.8,69.9,50208,96.3,33.4,13515,2.4,0.3,0.7,0,0.6,NA,NA,NA,90918,40533,70855,10.8,2.5,9.1,1.8,5.6,0.1,78.2,85.3,89.2 +3139,56035,"Sublette County, Wyoming",Sublette County, Wyoming,44977,8806,92.7,0,42.8,4.8,3,77.9,23.5,23,2.36,2.9,5.5,6.4,81.1,54683,96.2,31.1,3719,2.7,2.4,0.5,0,0,NA,NA,NA,128783,57348,82791,13.6,1.5,9.7,6.2,7.5,0.1,83.7,91.3,85.4 +3140,56037,"Sweetwater County, Wyoming",Sweetwater County, Wyoming,42961,41786,82.4,1.2,37.4,5.7,1.2,74.7,14.1,NA,2.45,3.04,12.9,18.9,74,54540,92.5,20.4,16863,8.6,0.6,0.5,0.3,2,NA,NA,NA,98608,40988,76464,9.2,5.1,12.9,10.5,9.5,0,79.1,89.7,89.1 +3141,56039,"Teton County, Wyoming",Teton County, Wyoming,53607,23358,80.5,0.6,40.1,4.1,0.9,82.7,17.5,NA,2.39,2.79,24.2,3.4,61.5,55463,97.2,61.2,9383,12.4,4.6,1.5,0,4.2,NA,NA,NA,185173,75541,112681,3,2.5,10,21.9,9.7,1.6,89.8,96.2,91.7 +3142,56041,"Uinta County, Wyoming",Uinta County, Wyoming,35207,20605,91,0.3,36.7,6.2,1.3,72.2,16.6,20.2,2.73,3.37,11.2,17.1,76.5,43883,94.6,21.3,7479,4.6,0.3,0.2,0.1,0.6,NA,NA,NA,89995,34568,82672,6.6,3.4,10.9,5.3,5.9,0,82.6,90.5,90.8 +3143,56043,"Washakie County, Wyoming",Washakie County, Wyoming,36599,7708,82.6,0.2,44.2,4.2,2.8,78.4,23.6,NA,2.21,2.84,11.7,6.9,74.2,42474,91.4,22,3417,9.9,0.5,0.3,0,0.3,NA,NA,NA,80444,36030,62648,8,1.3,12.4,12.7,8.2,2.5,72.3,86.4,84 +3144,56045,"Weston County, Wyoming",Weston County, Wyoming,37059,6835,85.8,0.1,43.1,4.4,1.6,80.7,21.4,NA,2.35,2.89,2.3,15.8,89,47865,91.6,18,2754,3.1,0.3,2.1,0,0.3,NA,NA,NA,98625,41745,87545,13.3,0.5,14.9,6.6,12.3,0,75.1,87.4,82.7 \ No newline at end of file diff --git a/data-raw/generation_climate_action/generation_climate_action-dataprep.R b/data-raw/generation_climate_action/generation_climate_action-dataprep.R new file mode 100644 index 00000000..243caeb7 --- /dev/null +++ b/data-raw/generation_climate_action/generation_climate_action-dataprep.R @@ -0,0 +1,20 @@ +# load packages ---------------------------------------------------------------- +library(tidyverse) +library(usethis) + +# load data -------------------------------------------------------------------- + +generation_climate_action <- data.frame( + generation = c(rep("Gen Z", 912), + rep("Millennial", 3160), + rep("Gen X", 3518), + rep("Boomer & older", 6074)), + response = c(rep("Took action", 292), rep("Didn't take action", 620), + rep("Took action", 885), rep("Didn't take action", 2275), + rep("Took action", 809), rep("Didn't take action", 2709), + rep("Took action", 1276), rep("Did't take action", 4798)) +) + +# Save ------------------------------------------------------------------------- + +use_data(generation_climate_action, overwrite = TRUE) diff --git a/data-raw/sdea/sdea-dataprep.R b/data-raw/sdea/sdea-dataprep.R new file mode 100644 index 00000000..7b6866e0 --- /dev/null +++ b/data-raw/sdea/sdea-dataprep.R @@ -0,0 +1,17 @@ +# load packages ---------------------------------------------------------------- + +library(tidyverse) +library(janitor) + +# load data -------------------------------------------------------------------- + +sdea <- read_csv("data-raw/sdea/sdea.csv") + +# cleaning: clean names -------------------------------------------------------- + +sdea <- sdea |> + clean_names() + +# save ------------------------------------------------------------------------- + +usethis::use_data(sdea, overwrite = TRUE) diff --git a/data-raw/sdea/sdea.csv b/data-raw/sdea/sdea.csv new file mode 100644 index 00000000..a4c47892 --- /dev/null +++ b/data-raw/sdea/sdea.csv @@ -0,0 +1,176 @@ +ID,Gender,Age,Condition,SDS_17,ERQ_Reappraisal,ERQ_Suppression,day1_pre_Suds,day1_post_Suds,day2_pre_Suds,day2_post_Suds,day3_pre_Suds,day3_post_Suds,Race +1,M,18,1,7,25,9,10,10,,,,, +2,F,18,1,7,31,13,10,20,10,10,20,20,Asian +3,M,19,1,6,31,17,20,40,0,10,0,10,White +4,F,20,1,7,28,22,30,30,20,50,30,30,White +5,M,19,1,4,31,18,30,30,20,20,10,10,White +6,F,19,1,3,27,16,10,14,20,20,20,20,Black +7,F,19,1,9,36,18,50,50,50,40,40,40,Asian +8,M,19,1,9,31,13,50,50,50,50,70,70,White +9,M,27,1,13,19,16,10,10,,,,, +10,F,31,1,7,34,13,10,20,20,10,10,10,Black & White +11,M,59,1,,,,,,,,,, +12,F,24,1,11,26,21,10,20,10,10,10,10,Asian +13,F,23,1,14,42,19,0,10,0,10,0,0, +14,F,18,1,11,33,20,0,20,30,40,10,20, +15,M,18,1,7,28,21,20,20,13,20,10,10,White +16,F,18,1,2,32,8,50,60,40,60,60,60,White +17,M,18,1,5,36,19,20,30,10,10,20,20,Asian +18,F,19,1,9,32,16,33,34,47,41,31,31,Asian +19,M,19,1,8,32,11,10,25,10,10,10,10,White +20,F,20,1,13,33,22,28,47,50,50,21,22,Asian +21,M,21,1,3,26,13,28,30,20,20,10,10,White +22,F,18,1,11,26,13,50,60,0,0,80,70,Black +23,M,18,1,8,25,12,12,4,8,22,21,15,Asian +24,M,19,1,7,19,21,50,35,,,,, +25,M,19,1,8,31,14,18,42,25,31,21,28,Black +26,F,19,1,4,30,8,27,27,20,20,19,19,White +27,F,18,1,9,36,16,40,50,20,10,15,20,White +28,M,18,1,2,34,14,57,44,54,40,52,61,Hispanic/Latino +29,M,19,1,,,,,,,,,, +30,M,19,1,1,20,7,60,45,20,27,5,0,White +31,F,18,1,4,33,12,25,30,25,25,30,30,White +32,F,18,1,2,27,14,10,10,10,10,11,10,Asian +33,F,18,1,6,35,12,32,71,15,58,11,68,White +34,F,18,1,10,35,21,50,60,50,50,60,50,Asian +35,F,19,1,5,23,7,30,30,20,30,20,20,White +36,M,21,1,4,31,17,65,45,25,45,10,75,White +37,F,20,1,5,28,11,28,28,52,49,32,32,White +51,M,19,4,8,34,16,25,45,,,20,35,White +52,M,18,4,2,22,15,10,40,,,10,60,Asian +53,M,19,4,7,29,12,30,30,,,32,35,White +54,M,19,4,14,28,18,0,10,,,0,10,White & Black +55,M,18,4,10,31,13,20,30,,,10,30,Hispanic/Latino +56,M,20,4,10,34,16,8,12,,,,, +57,M,18,4,6,32,13,50,60,,,10,20,White +58,M,19,4,9,31,13,55,60,,,30,38,White +59,F,18,4,,,,,,,,snow,, +60,M,18,4,,,,,,,,snow,, +61,F,19,4,,,,,,,,snow,, +62,F,18,4,,,,,,,,snow,, +63,F,24,4,,,,,,,,snow,, +64,M,19,4,,,,,,,,,, +65,F,18,4,,,,,,,,snow,, +66,F,21,4,,,,,,,,snow,, +67,M,18,4,,,,,,,,snow,, +68,F,19,4,,,,,,,,snow,, +69,F,19,4,,,,,,,,snow,, +70,F,19,4,,,,,,,,snow,, +71,F,19,4,,,,,,,,snow,, +72,F,23,4,,,,,,,,snow,, +73,F,20,4,3,38,10,30,40,,,20,30,Asian +74,M,19,4,10,27,22,40,20,,,30,30,Hispanic/Latino & White & Native American +75,M,18,4,12,39,16,15,25,,,10,10,Asian +76,F,19,4,7,35,14,30,20,,,40,20,White +77,M,21,4,10,24,9,20,30,,,20,30,White +78,F,19,4,3,33,16,20,40,,,15,20, +79,M,21,4,10,35,14,15,22,,,30,35,Asian +80,F,18,4,8,26,11,20,30,,,17,17,Asian +81,F,19,4,5,29,17,20,30,,,30,30,Asian +82,F,18,4,10,28,15,37,50,,,28,42,Asian +83,F,19,4,7,29,15,15,25,,,15,15,Asian +84,F,19,4,8,30,16,15,30,,,15,30,Hispanic/Latino & Black +85,F,19,4,9,35,15,35,25,,,0,10,White +86,F,20,4,6,24,10,15,55,,,10,25,White +87,M,20,4,6,32,16,30,30,,,20,20,White +88,F,20,4,13,30,17,25,20,,,22,20,White +89,M,,4,,,,,,,,,, +90,,,4,,,,,,,,,, +91,F,18,4,7,40,11,20,30,,,20,30,Asian +92,F,21,4,4,29,18,50,60,,,30,50, +93,M,20,4,10,20,17,30,30,,,40,40,White +94,,,4,,,,,,,,,, +95,F,18,4,6,29,14,10,30,,,10,20,White +96,M,20,4,10,31,12,30,40,,,10,20,White +97,M,20,4,10,34,18,60,50,,,30,50, +98,M,19,4,4,33,15,10,10,,,10,10,Hispanic/Latino +99,M,20,4,13,31,8,10,10,,,20,10,Black +100,F,19,4,4,25,20,50,60,,,30,40,White +101,,,4,,,,,,,,,, +102,,,4,,,,,,,,,, +103,F,20,4,6,35,13,30,50,,,20,10,White & Asian +104,M,20,4,2,27,18,40,50,,,10,30, +150,F,20,2,5,32,14,20,25,10,10,10,10,White +151,M,19,2,5,29,12,30,50,20,20,30,40,White +152,M,20,2,4,32,19,60,30,20,10,20,30,Asian +153,M,19,2,1,22,11,20,24,10,10,10,15,White +154,M,21,2,6,24,15,70,70,40,40,50,50,White +155,M,22,2,5,33,17,10,20,20,30,20,10,White +156,M,20,2,,,,,,,,,, +157,M,19,2,,,,,,,,,, +158,F,18,2,,,,,,,,,, +159,F,18,2,8,26,15,60,60,70,70,30,30,White +160,M,19,2,11,33,8,60,60,60,50,50,50,White +161,F,19,2,,,,,,,,,, +162,F,18,2,3,32,19,30,20,10,20,10,20,White +163,M,19,2,12,23,19,70,90,50,50,,, +164,F,18,2,5,27,8,20,50,0,0,0,10, +165,F,18,2,6,32,8,20,30,30,30,20,20,White & Hispanic/Latino +166,F,19,2,10,38,19,0,10,0,10,20,20,White & Hispanic/Latino +167,F,22,2,5,36,14,30,30,40,40,50,60,Black +168,F,18,2,,,,,,,,,, +169,M,18,2,9,35,19,10,10,10,10,20,20,Asian +170,F,18,2,2,32,12,50,50,60,70,50,50, +171,F,19,2,6,21,11,20,20,30,20,20,20, +172,F,19,2,1,30,19,20,30,10,10,10,20,Asian +173,F,19,2,8,27,5,70,70,50,50,30,50,White +174,F,18,2,3,29,15,30,20,30,20,50,50,White & Hispanic/Latino +175,F,19,2,8,21,22,20,30,10,10,20,30,White +176,F,18,2,4,24,7,30,40,40,40,20,20,White +177,F,19,2,8,26,14,37,37,23,27,15,17,White +178,M,18,2,10,30,10,30,35,20,25,20,25,Asian +179,M,20,2,4,29,7,60,50,20,20,30,30,White +180,M,18,2,10,33,19,30,20,10,10,0,5,White & Hispanic/Latino +181,M,19,2,9,33,15,30,30,30,30,50,50,White +182,M,18,2,7,35,21,40,40,20,30,30,30,Asian +183,M,20,2,9,27,25,30,30,50,50,20,20,Asian +184,M,20,2,7,30,18,30,20,10,10,20,10,Asian +185,M,21,2,7,29,16,50,40,40,50,30,20,Asian +186,M,19,2,9,38,19,35,20,10,20,30,30,Hispanic/Latino +187,M,18,2,7,33,15,30,20,30,20,10,20,White +188,M,18,2,12,,,20,60,50,40,,, +189,M,18,2,8,37,17,10,30,10,20,10,10,White & Hispanic/Latino +200,F,19,3,8,35,18,30,40,40,40,40,30,White +201,F,19,3,2,17,18,20,20,15,15,20,15,Black +202,M,19,3,11,,,10,10,,,,, +203,M,18,3,4,,,40,40,,,,, +204,F,,3,,,,,,,,,, +205,F,19,3,7,31,19,20,20,30,30,10,10,White +206,F,18,3,7,32,16,30,50,60,50,40,50,Hispanic/Latino +207,F,18,3,7,30,19,30,60,50,70,20,30,Asian +208,F,18,3,3,35,9,20,40,20,20,20,20,White & Asian & Hispanic/Latino +209,M,18,3,10,37,20,20,20,20,20,20,20,Asian +210,F,20,3,3,18,12,50,60,20,30,40,50,White +211,F,20,3,9,26,19,50,60,30,40,20,30,White +212,F,19,3,4,33,11,51,53,10,9,10,12,White +213,,,3,,,,,,,,,, +214,F,19,3,10,27,16,70,70,60,50,50,50,White +215,F,19,3,7,30,21,40,50,80,70,50,60,Asian +216,F,,3,,,,,,,,,, +217,M,19,3,6,35,17,20,30,20,20,20,40,Black +218,F,20,3,12,25,6,20,80,0,80,10,70, +219,M,20,3,,,,,,,,,, +220,F,18,3,12,33,9,30,40,30,30,50,50,Asian +221,M,18,3,9,35,16,20,20,40,40,10,20,Asian +222,M,18,3,14,27,13,30,20,30,20,20,20,Hispanic/Latino +223,F,19,3,3,27,13,70,70,30,30,20,20,Hispanic/Latino +224,F,18,3,4,36,8,30,30,70,70,10,20,Hispanic/Latino & White +225,F,19,3,4,36,12,10,20,20,20,20,20,White +226,F,18,3,8,41,16,10,10,0,10,0,10,Black +227,M,18,3,,,,,,,,,, +228,M,18,3,3,21,21,30,30,20,30,30,30,Asian +229,M,18,3,10,32,26,50,50,40,40,60,60, +230,M,20,3,6,30,18,20,20,10,20,0,0,Black +231,M,20,3,13,29,9,30,30,10,10,10,10,Asian +232,M,19,3,5,33,13,40,30,,,,, +233,M,19,3,8,28,19,20,20,30,40,10,20,White +234,M,18,3,7,30,8,20,20,,,,, +235,M,19,3,,,,,,,,,, +236,M,20,3,8,26,17,20,30,20,30,20,30,Asian +237,M,19,3,11,26,22,20,40,,,,, +238,M,18,3,12,27,20,10,50,30,50,40,50,Hispanic/Latino +239,M,18,3,15,33,18,12,34,10,12,11,13,White +240,M,18,3,9,29,21,35,40,10,10,,, +241,M,18,3,5,22,13,45,60,30,35,45,60,Asian +242,M,19,3,8,34,17,15,55,5,35,25,35,Black +243,M,19,3,9,32,19,20,45,12,12,10,12, \ No newline at end of file diff --git a/data-raw/skill_acquisition/skill_acquisition-dataprep.R b/data-raw/skill_acquisition/skill_acquisition-dataprep.R new file mode 100644 index 00000000..aba62d0b --- /dev/null +++ b/data-raw/skill_acquisition/skill_acquisition-dataprep.R @@ -0,0 +1,17 @@ +# load packages ---------------------------------------------------------------- + +library(tidyverse) +library(janitor) + +# load data -------------------------------------------------------------------- + +skill_acquisition <- read_csv("data-raw/skill_acquisition/skill_acquisition.csv") + +# cleaning: clean names -------------------------------------------------------- + +skill_acquisition <- skill_acquisition |> + clean_names() + +# save ------------------------------------------------------------------------- + +usethis::use_data(skill_acquisition, overwrite = TRUE) diff --git a/data-raw/skill_acquisition/skill_acquisition.csv b/data-raw/skill_acquisition/skill_acquisition.csv new file mode 100644 index 00000000..f6cdacfa --- /dev/null +++ b/data-raw/skill_acquisition/skill_acquisition.csv @@ -0,0 +1,1036 @@ +p_number,Heard_Before,TypeOfInfo,AmtOfInfo,Perceived_Ability,Manipulation_Check,technical_difficulties,technical_difficulties_description,gender,ethnic_1,ethnic_2,ethnic_3,ethnic_4,ethnic_5,ethnic_6,age,tried_before,fail_ac +1,1,1,1,5,5,0, ,1,0,0,1,0,0,0,33,1,1 +2,1,1,1,1,1,0, ,2,0,0,0,0,1,0,25,2,0 +3,1,1,1,5,4,0, ,1,0,0,1,0,0,0,21,1,0 +4,1,2,2,2,7,0, ,1,0,0,0,0,1,0,30,2,0 +5,1,1,2,2,7,0, ,2,0,0,0,0,1,0,37,2,0 +6,1,3,1,1,2,0, ,1,0,0,0,0,1,0,47,2,0 +7,1,1,2,4,3,0, ,1,0,0,0,0,0,1,19,2,0 +8,1,2,2,4,5,0, ,1,0,0,0,0,1,0,26,2,1 +9,1,2,1,2,4,0, ,2,0,0,0,0,1,0,35,2,0 +10,1,2,1,2,4,0, ,2,0,0,0,0,1,0,35,1,0 +11,1,1,2,5,6,0, ,1,0,1,0,0,0,0,40,2,0 +12,1,3,1,1,1,0, ,1,0,0,0,0,1,0,25,2,0 +13,1,3,1,1,1,0, ,2,0,0,0,0,1,0,49,2,0 +14,1,2,2,2,6,0, ,2,0,0,0,0,1,0,46,2,0 +15,1,1,1,1,1,0, ,2,0,0,0,0,1,0,44,2,1 +16,1,2,2,2,6,0, ,1,0,0,0,0,1,0,45,2,0 +17,1,1,2,2,3,0, ,2,0,0,0,0,1,0,33,2,0 +18,1,3,2,5,4,0, ,2,0,0,1,0,1,0,21,2,1 +19,1,3,1,2,2,0, ,2,0,0,0,0,1,0,32,2,0 +20,1,2,2,1,7,0, ,2,0,0,0,0,1,0,71,2,0 +21,1,3,2,3,3,0, ,2,0,0,0,0,1,0,42,2,0 +22,1,2,1,6,6,0, ,1,0,0,0,0,1,0,46,2,0 +23,1,3,2,2,1,0, ,1,0,0,0,0,1,0,33,2,0 +24,1,3,1,5,1,0, ,1,0,0,0,0,1,0,55,2,0 +25,1,3,2,3,1,0, ,2,0,0,0,0,1,0,39,1,0 +26,1,3,2,5,4,0, ,1,0,0,0,0,1,0,25,1,0 +27,1,2,1,7,5,0, ,2,0,0,0,0,1,0,45,2,0 +28,1,1,1,3,4,0, ,1,0,0,0,0,1,0,29,1,0 +29,1,1,1,5,2,0, ,1,0,0,0,0,1,0,51,1,0 +30,1,2,1,3,6,0, ,1,0,0,0,0,1,0,58,2,0 +31,1,1,1,7,3,1,video link disappeared quickly so I couldn't watch it.,1,0,0,0,0,1,0,66,1,0 +32,1,1,1,1,1,0, ,1,0,0,0,0,1,0,26,2,0 +33,1,1,2,1,1,0, ,2,0,0,0,0,1,0,63,2,0 +34,1,2,2,2,6,0, ,2,0,0,0,0,1,0,22,2,0 +35,1,3,2,3,1,0, ,2,1,0,0,0,0,0,29,2,0 +36,1,1,2,4,7,0, ,2,0,0,0,0,1,0,28,2,0 +37,1,2,2,3,1,0, ,1,0,0,0,0,1,0,23,2,0 +38,1,2,1,3,2,0, ,2,0,0,0,0,1,0,37,2,0 +39,1,2,1,7,6,0, ,2,0,0,0,0,1,0,29,1,0 +40,1,3,1,2,1,0, ,2,1,0,0,0,0,0,26,2,0 +41,1,1,1,6,6,0, ,1,0,0,0,0,1,0,36,1,0 +42,1,3,1,1,1,0, ,1,1,0,0,0,0,0,30,2,0 +43,1,1,2,4,5,0, ,2,0,0,0,0,1,0,36,2,0 +44,1,3,2,1,2,0, ,2,1,0,0,0,0,0,33,2,0 +45,1,1,1,1,1,0, ,2,0,0,0,0,1,0,59,2,0 +46,1,1,2,2,7,0, ,1,0,0,0,0,1,0,65,2,0 +47,1,2,2,3,5,0, ,1,0,0,0,0,1,0,31,2,0 +48,1,3,2,1,1,0, ,2,0,0,0,0,1,0,39,2,0 +49,1,2,1,2,2,0, ,1,0,0,0,0,1,0,33,2,0 +50,1,2,2,1,5,0, ,2,0,0,0,0,1,0,36,2,0 +51,1,2,2,2,6,0, ,2,0,0,1,0,0,0,53,2,0 +52,1,1,1,5,4,0, ,1,0,1,0,0,0,0,29,2,0 +53,1,2,2,2,6,0, ,1,0,0,0,0,1,0,30,2,0 +54,1,3,1,5,1,0, ,2,0,0,0,0,1,0,26,1,0 +55,1,2,1,3,2,0, ,1,0,0,0,0,1,0,21,2,0 +56,1,3,2,1,2,0, ,2,0,0,0,0,1,0,54,2,0 +57,1,3,1,2,1,0, ,1,0,0,0,0,1,0,30,2,0 +58,1,1,2,4,6,0, ,2,0,1,0,1,1,0,40,2,0 +59,1,2,1,5,5,0, ,2,0,0,0,0,1,0,55,2,0 +60,1,1,2,5,7,0, ,2,0,1,0,0,0,0,23,2,0 +61,1,1,1,3,5,0, ,2,0,0,0,0,1,0,27,2,0 +62,1,3,2,2,2,0, ,1,0,0,0,0,1,0,22,2,0 +63,1,2,2,2,2,0, ,2,0,0,0,0,1,0,38,2,0 +64,1,3,1,1,1,0, ,2,0,0,0,0,1,0,29,2,0 +65,1,2,1,1,3,0, ,2,0,0,0,0,1,0,33,2,0 +66,1,1,2,6,6,0, ,2,0,1,0,0,1,0,27,2,0 +67,1,3,1,5,2,0, ,1,0,1,0,0,0,0,24,2,0 +68,1,2,1,6,4,0, ,2,0,0,0,0,1,0,30,2,0 +69,1,3,1,1,1,0, ,1,0,0,0,0,1,0,28,2,0 +70,1,1,2,3,6,0, ,1,0,0,0,0,1,0,30,2,0 +71,1,3,2,2,5,0, ,1,0,1,0,0,0,0,26,2,0 +72,1,3,1,3,2,0, ,1,0,0,0,0,1,0,36,2,0 +73,1,1,1,3,2,0, ,1,0,0,0,0,1,0,23,2,0 +74,1,2,2,2,3,0, ,2,0,0,0,0,1,0,35,2,0 +75,1,3,2,1,5,0, ,1,0,0,1,0,0,0,28,2,0 +76,1,3,1,1,6,0, ,2,0,0,0,0,1,0,51,2,1 +77,1,3,1,1,1,0, ,1,0,0,1,0,0,0,28,2,0 +78,1,2,2,2,3,0, ,1,0,0,0,0,1,0,37,1,0 +79,1,2,2,7,1,0, ,2,0,1,0,0,0,0,31,1,1 +80,1,3,2,2,1,0, ,2,0,0,0,0,1,0,62,1,0 +81,1,1,1,5,6,0, ,2,0,0,0,0,1,0,28,2,0 +82,1,3,2,1,1,0, ,2,0,0,0,0,1,0,21,2,0 +83,1,1,1,2,1,0, ,1,0,0,0,0,1,0,27,2,0 +84,1,3,2,1,2,0, ,1,0,0,0,0,1,0,28,2,0 +85,1,2,1,5,1,0, ,2,0,0,0,0,1,0,42,2,0 +86,1,3,1,2,1,0, ,1,0,0,0,1,1,0,57,1,0 +87,1,1,1,5,3,0, ,2,0,0,0,0,1,0,27,2,0 +88,1,1,2,3,5,0, ,2,0,0,0,0,1,0,25,2,1 +89,1,2,2,3,3,0, ,1,0,0,0,0,1,0,24,1,1 +90,1,2,1,4,3,0, ,2,1,0,0,0,0,0,23,2,0 +91,1,2,2,6,5,1,just loading,2,0,0,0,0,1,0,44,1,1 +92,1,1,2,4,7,0, ,1,0,0,0,0,1,0,66,2,0 +93,1,2,2,4,3,0, ,1,0,0,0,0,1,0,26,2,0 +94,1,3,2,3,1,0, ,2,0,0,0,0,1,0,60,2,0 +95,1,2,1,3,4,0, ,2,0,0,0,0,1,0,32,2,0 +96,2,3,1,6,2,0, ,1,0,0,0,0,1,0,29,2,0 +97,1,1,2,5,5,0, ,1,0,0,0,0,1,0,24,2,0 +98,1,3,1,2,1,1,Some of the imagoes did not load,1,0,0,0,0,1,0,31,2,1 +99,1,1,1,1,7,0, ,1,0,0,0,0,1,0,23,2,0 +100,1,3,2,1,1,0, ,2,0,0,0,0,1,0,24,2,0 +101,1,1,2,4,7,0, ,1,0,0,0,0,1,0,30,2,0 +102,1,3,2,3,4,0, ,1,0,0,0,0,1,0,32,2,0 +103,1,3,1,1,1,0, ,1,0,0,0,0,1,0,35,2,0 +104,1,1,1,2,3,0, ,1,0,0,0,0,1,0,37,2,0 +105,1,2,1,5,4,0, ,2,0,0,0,0,1,0,44,1,0 +106,1,3,2,3,5,0, ,1,0,0,0,0,1,0,49,1,0 +107,1,2,1,3,1,0, ,1,0,0,0,0,1,0,46,2,0 +108,1,1,2,3,6,0, ,2,0,0,0,0,1,0,34,2,0 +109,1,3,1,2,1,0, ,2,0,0,0,0,1,0,52,2,0 +110,1,3,1,6,6,0, ,1,0,0,0,0,1,0,23,2,1 +111,1,1,1,2,1,1,"I'm not sure if it was intentional or not, but I only got to see about 1 second of the video before it automatically went to the next page.",1,0,0,0,0,1,0,32,2,0 +112,1,1,1,5,2,0, ,2,0,0,0,0,1,0,62,2,0 +113,1,1,1,3,5,0, ,2,0,0,0,0,1,0,46,2,0 +114,1,2,1,3,4,0, ,1,0,0,0,0,1,0,29,1,0 +115,1,2,2,1,6,0, ,2,0,0,0,0,1,0,32,2,0 +116,1,3,2,1,1,0, ,2,0,0,0,0,1,0,55,1,0 +117,1,1,1,2,4,0, ,2,1,0,0,0,0,0,28,1,0 +118,1,2,2,2,7,0, ,1,0,0,0,0,1,0,26,2,0 +119,1,3,1,1,4,0, ,2,0,0,0,0,1,0,27,2,0 +120,1,1,2,5,5,0, ,1,0,0,0,0,1,0,47,2,0 +121,1,2,1,1,2,0, ,2,0,0,1,0,0,0,34,2,0 +122,1,1,2,5,4,0, ,1,0,0,1,0,0,0,22,2,1 +123,1,2,1,3,2,0, ,1,0,0,0,0,1,0,24,2,0 +124,1,2,2,3,7,0, ,1,0,0,1,0,0,0,67,2,0 +125,1,2,2,3,6,0, ,2,0,0,0,0,1,0,22,1,0 +126,1,1,1,2,1,1,Video ended before tablecloth was removed.,2,0,0,0,0,1,0,51,2,0 +127,1,3,1,2,2,0, ,1,0,0,0,0,1,0,61,2,0 +128,1,2,1,3,2,0, ,2,0,0,0,0,1,0,22,2,0 +129,1,3,2,3,1,0, ,1,0,0,0,0,1,0,68,2,0 +130,1,1,2,5,6,0, ,1,0,0,0,0,1,0,49,2,0 +131,1,1,2,7,7,0, ,1,0,0,0,1,0,0,50,2,0 +132,1,3,2,7,1,0, ,1,0,0,0,0,1,0,56,2,0 +133,1,2,1,3,2,0, ,1,0,0,0,0,1,0,26,2,0 +134,1,2,2,1,4,0, ,2,0,0,0,0,1,0,39,2,1 +135,1,2,2,5,6,0, ,1,0,0,0,0,1,0,22,2,0 +136,1,2,1,3,2,0, ,2,0,0,0,0,1,0,27,2,0 +137,1,1,1,3,1,0, ,1,0,0,0,0,1,0,32,2,0 +138,1,1,2,2,1,0, ,2,0,0,0,0,1,0,21,2,1 +139,1,1,1,1,1,0, ,2,0,0,1,0,0,0,29,2,1 +140,1,2,2,3,6,0, ,1,0,0,0,0,1,0,26,2,0 +141,1,2,1,3,2,0, ,1,1,0,0,0,0,0,32,1,1 +142,1,3,2,2,1,0, ,2,0,0,0,0,1,0,29,2,0 +143,1,3,1,5,3,0, ,1,0,0,1,0,0,0,34,2,0 +144,1,2,2,2,7,1,"only on my end, my connection started to slow down",2,1,0,0,0,0,0,61,2,0 +145,1,1,2,2,5,0, ,2,0,0,0,0,1,0,34,2,0 +146,1,1,1,1,1,0, ,2,0,0,0,0,1,0,28,2,0 +147,1,3,2,2,1,0, ,2,0,0,0,0,1,0,29,2,0 +148,1,1,1,5,1,0, ,2,0,1,0,0,0,0,25,2,0 +149,1,3,2,1,1,0, ,2,0,0,0,0,1,0,21,2,0 +150,1,2,1,2,2,0, ,1,0,0,0,0,1,0,26,2,0 +151,1,2,1,5,2,0, ,2,0,0,0,0,1,0,32,2,1 +152,1,3,1,3,1,0, ,1,0,0,0,0,1,0,24,2,0 +153,1,2,2,5,2,0, ,1,0,0,0,0,1,0,21,1,0 +154,1,1,2,4,2,0, ,1,0,0,0,0,1,0,39,1,0 +155,1,2,2,3,6,0, ,2,0,0,0,0,1,0,44,2,0 +156,1,3,1,2,1,0, ,1,0,0,0,0,1,0,31,2,0 +157,1,1,1,2,1,0, ,2,0,0,0,0,0,1,19,2,1 +158,1,1,2,3,2,0, ,2,0,0,0,0,1,0,35,2,0 +159,1,2,1,2,2,0, ,2,0,0,0,0,1,0,30,2,0 +160,1,3,1,2,1,0, ,2,0,0,0,0,1,0,41,2,0 +161,1,1,1,5,6,0, ,1,1,0,0,0,0,0,28,2,0 +162,1,3,2,1,1,0, ,1,0,0,0,0,1,0,34,2,0 +163,1,2,2,2,5,0, ,2,0,0,0,0,1,0,30,2,0 +164,2,1,2,3,2,0, ,3,0,0,1,0,0,0,32,2,1 +165,1,2,2,3,5,0, ,1,0,0,0,0,1,0,32,2,0 +166,1,2,1,2,3,0, ,2,0,0,0,0,1,0,35,2,0 +167,1,3,2,2,5,0, ,2,0,0,0,0,1,0,35,2,0 +168,1,1,2,6,7,0, ,1,0,0,0,0,1,0,31,2,0 +169,1,3,2,3,3,0, ,2,0,0,0,0,1,0,23,2,0 +170,1,3,1,2,1,0, ,1,0,0,0,0,1,0,31,1,0 +171,1,3,1,1,1,0, ,2,0,0,0,0,1,0,31,2,1 +172,1,3,1,2,1,0, ,2,0,0,0,0,1,0,30,2,0 +173,1,1,1,3,2,0, ,2,0,0,0,0,1,0,30,2,0 +174,1,1,1,1,3,0, ,2,0,0,0,0,1,0,36,2,0 +175,2,3,2,5,5,0, ,1,0,0,1,0,0,0,27,2,1 +176,1,2,1,5,2,0, ,1,0,1,0,0,0,0,25,2,0 +177,1,2,2,3,6,0, ,2,0,0,0,0,1,0,35,2,0 +178,1,3,2,5,1,0, ,1,0,0,0,0,1,0,40,1,0 +179,1,2,1,4,5,0, ,2,0,0,0,0,1,0,38,2,0 +180,1,1,2,6,7,0, ,1,0,0,0,0,1,0,24,2,0 +181,1,1,2,5,7,0, ,2,0,0,0,0,1,0,36,2,0 +182,1,3,2,3,1,0, ,2,0,0,0,0,1,0,21,1,0 +183,1,1,2,1,1,0, ,2,0,0,0,0,1,0,29,2,0 +184,1,1,1,5,1,1,Video was only a second.,2,1,0,0,0,0,0,45,2,0 +185,1,1,1,2,2,0, ,1,0,0,0,0,1,0,30,2,0 +186,1,2,2,4,7,0, ,1,0,0,0,0,1,0,48,1,0 +187,1,3,1,1,1,0, ,1,0,0,0,0,1,0,25,2,0 +188,1,3,1,5,2,1,Page timed out.,1,1,0,0,0,0,0,33,1,0 +189,1,3,1,4,2,0, ,2,0,0,0,0,1,0,55,1,0 +190,2,1,2,1,1,0, ,2,0,0,0,0,1,0,29,2,0 +191,1,3,2,1,1,0, ,1,0,0,0,0,1,0,33,2,0 +192,1,1,2,3,5,0, ,2,0,0,0,0,1,0,38,2,0 +193,1,2,1,2,4,0, ,1,0,0,0,0,1,0,27,2,0 +194,1,2,1,1,4,0, ,2,0,1,0,0,1,0,32,2,0 +195,1,3,1,6,1,0, ,1,0,0,0,0,1,0,40,1,0 +196,1,3,2,2,2,0, ,2,0,0,0,0,1,0,33,2,0 +197,1,2,2,1,7,0, ,2,0,0,0,0,1,0,56,2,0 +198,1,2,2,2,7,0, ,2,0,0,1,0,0,0,35,2,0 +199,1,3,1,2,1,0, ,2,0,0,0,0,1,0,25,2,0 +200,1,1,1,6,1,0, ,2,0,0,0,0,1,0,34,1,0 +201,1,1,1,4,1,0, ,1,0,0,1,0,0,0,25,2,1 +202,1,1,1,3,1,0, ,2,0,0,0,0,1,0,22,2,0 +203,2,2,2,1,6,0, ,2,0,0,1,0,0,0,64,2,0 +204,1,1,2,1,1,0, ,2,0,0,0,0,1,0,56,2,0 +205,1,3,1,3,7,0, ,1,0,0,0,0,1,0,50,1,0 +206,1,3,2,3,2,0, ,1,0,0,1,0,0,0,23,2,0 +207,1,2,1,4,3,0, ,2,0,0,0,0,1,0,30,2,0 +208,2,3,2,3,7,0, ,2,0,0,0,0,1,0,40,2,1 +209,1,1,2,2,2,0, ,1,0,0,0,0,1,0,33,2,0 +210,1,2,1,3,1,0, ,2,0,0,1,0,0,0,21,1,1 +211,1,3,2,2,5,0, ,2,0,0,0,0,1,0,33,2,0 +212,1,2,1,3,1,0, ,2,0,0,0,0,1,0,59,2,0 +213,1,3,2,2,2,0, ,2,0,0,0,0,1,0,51,2,0 +214,1,1,2,2,6,0, ,2,0,0,0,0,1,0,31,2,0 +215,1,1,1,2,3,0, ,2,0,0,0,0,1,0,31,2,0 +216,1,1,2,3,6,0, ,1,0,0,0,0,1,0,25,2,0 +217,1,1,1,2,2,0, ,2,0,0,0,0,1,0,36,2,0 +218,1,3,2,1,1,0, ,2,0,0,0,0,1,0,38,2,0 +219,1,2,1,3,3,0, ,2,0,0,0,0,1,0,34,2,0 +220,1,2,2,1,7,0, ,2,0,0,0,0,1,0,30,2,0 +221,1,2,2,2,3,0, ,2,0,0,0,0,1,0,26,2,0 +222,1,3,1,1,1,0, ,1,0,0,0,0,1,0,32,2,0 +223,1,2,2,2,6,0, ,2,0,0,0,0,1,0,30,2,0 +224,1,1,1,3,5,0, ,2,0,0,1,0,0,0,22,2,0 +225,1,2,1,3,1,0, ,2,0,0,0,0,1,0,21,2,0 +226,1,1,2,4,6,0, ,1,0,0,0,0,1,0,30,2,0 +227,1,2,2,4,3,0, ,2,0,0,0,0,1,0,34,2,0 +228,1,2,1,1,1,0, ,2,0,0,0,0,1,0,54,2,0 +229,1,3,1,1,1,0, ,2,0,0,0,0,1,0,25,2,0 +230,1,1,1,4,1,0, ,2,0,0,0,0,1,0,20,2,0 +231,1,3,1,2,1,0, ,1,0,0,1,0,0,0,46,1,0 +232,1,2,1,1,1,0, ,2,0,0,0,0,1,0,27,2,0 +233,1,3,2,1,1,0, ,2,0,0,0,0,1,0,52,2,0 +234,1,1,1,2,3,0, ,1,0,0,1,0,0,0,34,2,0 +235,1,1,2,2,4,0, ,1,0,0,0,0,1,0,36,2,0 +236,1,3,2,3,1,0, ,1,0,0,1,0,0,0,25,2,0 +237,2,1,2,2,4,0, ,1,0,0,0,0,1,0,36,2,0 +238,1,1,2,7,7,0, ,2,0,1,1,0,0,0,55,1,1 +239,1,3,1,1,1,0, ,1,0,0,0,0,1,0,59,1,0 +240,2,2,2,1,5,0, ,2,0,0,0,0,1,0,34,2,0 +241,1,3,1,2,1,0, ,2,0,0,0,0,1,0,49,2,0 +242,1,3,1,6,3,0, ,2,0,0,0,0,1,0,28,2,0 +243,1,3,2,1,1,0, ,2,0,0,0,0,1,0,28,2,0 +244,1,2,2,2,7,0, ,1,0,0,0,0,1,0,60,2,0 +245,1,1,1,4,1,0, ,2,1,0,0,0,0,0,30,2,1 +246,1,2,1,2,2,0, ,3,0,0,0,0,1,0,23,2,0 +247,1,3,2,2,1,0, ,1,0,0,0,0,1,0,25,2,0 +248,1,1,2,3,6,0, ,1,0,0,1,0,0,0,46,2,0 +249,1,1,1,5,4,0, ,1,0,0,1,0,0,0,19,1,1 +250,1,1,1,3,1,0, ,2,0,0,0,0,1,0,53,2,0 +251,1,1,1,1,4,0, ,1,0,0,1,0,0,0,30,2,0 +252,1,2,2,2,4,0, ,2,0,0,0,0,1,0,49,2,0 +253,1,3,1,4,3,0, ,2,0,0,0,0,1,0,26,2,0 +254,1,3,2,5,4,0, ,2,0,0,0,0,1,0,35,2,1 +255,1,2,1,2,4,0, ,2,0,0,0,0,1,0,27,2,0 +256,1,2,2,4,5,0, ,2,0,1,0,0,0,0,44,2,0 +257,1,2,1,2,6,0, ,1,0,0,0,0,1,0,67,2,0 +258,1,3,2,2,2,1,LAST PAGE WAS LOADING FOR LONG TIME,1,0,1,0,0,1,0,32,2,0 +259,1,2,1,3,3,0, ,2,0,0,0,0,1,0,33,2,0 +260,1,1,2,5,7,0, ,2,0,0,0,0,1,0,30,2,0 +261,1,1,1,4,3,1,The video counted down and then just went to the next page,1,0,0,0,0,1,0,30,1,1 +262,1,3,1,1,1,0, ,1,0,0,0,0,1,0,51,2,0 +263,1,2,1,7,1,0, ,1,0,1,0,0,1,0,21,1,0 +264,1,1,1,2,1,1,I did not see a video loading. I don't know if this was purposeful or not.,2,1,0,0,0,0,0,39,2,1 +265,1,2,2,2,7,0, ,2,0,1,0,0,0,0,28,2,0 +266,1,2,2,3,5,0, ,2,0,0,0,0,1,0,24,2,0 +267,1,3,1,3,2,0, ,2,0,0,0,0,1,0,48,2,0 +268,1,1,2,5,6,0, ,2,0,0,0,0,1,0,48,2,0 +269,1,2,2,5,3,0, ,1,0,1,0,0,0,0,29,2,0 +270,1,3,1,1,2,0, ,2,0,0,0,0,1,0,44,2,0 +271,1,3,2,2,2,0, ,2,0,0,0,0,1,0,49,2,0 +272,1,2,1,1,1,0, ,2,1,0,0,0,0,0,28,2,0 +273,1,1,1,3,4,0, ,2,0,0,0,0,1,0,30,2,0 +274,1,3,2,3,1,0, ,2,0,0,1,0,0,0,29,2,0 +275,1,1,1,2,1,1,The video only played for 1 second beforethe page advanced,2,0,0,0,0,1,0,29,2,0 +276,1,1,2,6,4,0, ,1,0,0,0,0,1,0,52,1,0 +277,1,1,2,7,5,0, ,1,0,0,0,0,1,0,21,1,0 +278,1,1,2,6,5,0, ,2,0,0,0,0,1,0,34,2,0 +279,1,2,2,2,6,0, ,1,1,0,0,0,0,0,27,2,0 +280,1,2,1,6,4,0, ,1,0,0,0,0,1,0,29,1,0 +281,1,3,2,5,2,0, ,2,1,0,0,0,1,0,50,1,1 +282,1,3,1,3,2,0, ,2,0,0,0,0,1,0,25,2,0 +283,1,3,2,5,2,0, ,1,0,1,0,0,0,0,40,2,0 +284,1,2,1,2,1,0, ,2,0,0,0,0,0,1,35,1,0 +285,1,2,2,5,6,0, ,1,0,0,0,0,1,0,27,1,0 +286,1,2,2,6,5,0, ,2,0,1,0,0,0,0,22,2,0 +287,1,1,1,4,5,0, ,1,0,0,0,0,1,0,31,2,0 +288,1,1,2,7,7,0, ,2,0,0,0,0,1,0,65,2,0 +289,1,2,2,4,6,0, ,1,0,0,0,0,1,0,19,2,0 +290,1,3,1,2,1,0, ,1,0,0,0,0,1,0,50,2,0 +291,1,3,2,1,1,0, ,1,0,1,0,0,1,0,33,2,0 +292,1,3,1,2,1,0, ,1,0,0,0,0,1,0,40,2,0 +293,1,1,1,5,5,0, ,1,0,0,1,0,0,0,28,2,0 +294,1,1,1,5,3,0, ,2,0,0,0,0,1,0,40,2,0 +295,1,2,1,3,2,0, ,2,0,0,0,0,1,0,34,2,0 +296,1,2,1,4,3,0, ,1,0,0,0,0,1,0,32,2,0 +297,1,3,1,2,4,0, ,1,0,0,0,0,1,0,50,2,1 +298,1,3,2,1,5,0, ,2,0,0,0,0,1,0,24,2,0 +299,1,1,2,7,7,0, ,1,0,0,0,1,1,0,19,2,0 +300,1,2,2,4,5,0, ,2,0,1,0,0,0,0,28,2,0 +301,2,3,1,4,1,0, ,1,1,0,0,0,0,0,29,2,0 +302,1,1,2,2,3,0, ,2,0,0,0,1,1,0,28,2,0 +303,1,3,2,4,1,0, ,2,0,0,0,0,1,0,33,1,0 +304,1,3,2,5,1,0, ,1,0,0,0,0,1,0,28,2,0 +305,1,2,2,5,6,0, ,1,0,0,0,0,1,0,27,2,1 +306,1,1,2,1,6,0, ,2,0,0,0,0,1,0,34,2,0 +307,2,2,1,6,7,0, ,1,0,0,0,0,1,0,25,2,1 +308,1,2,1,4,3,0, ,1,0,0,0,0,1,0,40,2,0 +309,1,2,1,5,3,0, ,2,0,0,0,0,1,0,32,2,0 +310,1,2,1,1,1,0, ,2,1,0,0,0,0,0,28,1,0 +311,1,3,2,1,2,0, ,2,0,0,1,0,0,0,53,2,1 +312,1,1,1,2,1,0, ,3,0,0,0,0,0,1,22,2,0 +313,1,2,2,5,7,0, ,2,0,0,0,0,1,0,52,2,0 +314,1,1,2,2,7,0, ,2,0,1,0,0,0,0,38,2,0 +315,1,1,1,5,3,0, ,2,0,0,0,0,1,0,44,2,0 +316,1,2,1,3,2,0, ,1,0,1,0,0,0,0,21,2,0 +317,1,3,1,3,1,0, ,1,0,0,0,0,1,0,35,1,0 +318,1,1,2,5,3,0, ,2,1,0,0,0,0,0,40,1,0 +319,1,3,1,1,4,0, ,2,0,1,0,0,0,0,28,2,1 +320,1,1,2,2,7,0, ,2,1,0,0,0,0,0,44,2,0 +321,1,2,2,3,5,0, ,2,0,0,0,0,1,0,43,2,0 +322,1,3,1,4,1,0, ,2,0,0,0,0,1,0,18,2,0 +323,1,3,2,1,1,0, ,2,0,0,0,0,1,0,26,2,0 +324,1,1,1,3,5,0, ,1,0,0,0,0,1,0,51,2,0 +325,1,2,2,4,4,0, ,1,0,0,0,0,1,0,28,2,0 +326,1,3,2,1,1,0, ,2,0,0,0,0,1,0,31,2,0 +327,1,1,1,5,5,0, ,2,0,0,0,0,1,0,70,2,0 +328,1,3,2,1,2,0, ,2,0,0,0,0,1,0,46,2,0 +329,1,2,2,4,1,0, ,2,0,0,0,0,1,0,71,2,0 +330,1,2,1,5,4,0, ,1,0,0,0,0,1,0,49,2,0 +331,1,1,2,2,4,0, ,2,0,0,0,0,1,0,23,2,0 +332,1,3,1,1,1,0, ,2,0,0,0,0,1,0,44,2,0 +333,1,2,2,2,5,0, ,1,0,0,0,0,1,0,20,2,0 +334,1,2,1,3,5,0, ,1,1,0,0,0,0,0,25,2,0 +335,1,1,1,3,3,0, ,2,0,0,1,0,0,0,33,2,0 +336,1,3,2,1,2,0, ,2,0,1,0,0,0,0,45,2,0 +337,1,1,2,3,6,0, ,2,1,0,0,0,0,0,49,2,0 +338,1,2,2,6,3,0, ,2,0,0,0,0,1,0,34,2,0 +339,1,2,1,1,3,0, ,2,0,1,0,0,0,0,25,2,0 +340,1,1,1,2,1,1,the video never loaded,1,0,0,0,0,1,0,32,1,1 +341,1,3,2,1,1,0, ,2,0,0,0,0,1,0,30,2,0 +342,1,3,1,5,1,0, ,1,0,0,0,0,1,0,33,1,0 +343,1,2,2,2,4,0, ,2,0,0,0,0,1,0,59,2,0 +344,2,3,1,1,1,0, ,2,1,0,0,0,0,0,62,2,0 +345,1,1,2,2,3,0, ,2,0,0,0,0,1,0,45,2,0 +346,1,1,1,2,1,1,the video did not play,2,0,0,0,0,1,0,60,2,1 +347,1,2,2,2,3,0, ,1,0,0,0,0,1,0,31,2,0 +348,1,1,1,2,3,0, ,2,0,0,0,0,1,0,29,2,0 +349,1,3,2,2,1,0, ,1,0,0,0,0,1,0,56,2,0 +350,1,3,1,2,1,0, ,2,0,0,0,0,1,0,67,2,0 +351,1,3,1,6,1,1,"There was no more information in the ""more information"" section, just a timer.",2,0,0,0,0,1,0,38,1,0 +352,1,1,2,1,3,0, ,2,0,0,0,0,1,0,34,2,0 +353,1,3,1,3,3,0, ,1,0,0,0,0,1,0,35,2,1 +354,1,1,2,2,5,0, ,1,0,0,0,0,1,0,40,1,0 +355,1,2,1,1,4,0, ,1,0,0,0,0,1,0,38,2,0 +356,1,2,1,7,7,0, ,2,0,0,0,0,1,0,39,2,1 +357,1,3,2,3,2,0, ,1,0,0,0,0,1,0,38,2,0 +358,2,1,1,5,6,0, ,1,0,0,0,0,1,0,32,2,1 +359,1,1,2,4,2,0, ,2,0,1,0,0,0,0,25,2,0 +360,1,1,1,6,5,0, ,2,0,0,0,0,1,0,37,2,0 +361,1,3,1,2,3,0, ,2,0,0,0,0,1,0,45,2,0 +362,1,1,1,5,6,0, ,2,0,0,0,0,1,0,52,2,0 +363,1,3,2,3,1,0, ,1,0,0,1,0,0,0,37,2,0 +364,1,2,1,2,5,0, ,1,0,0,0,0,1,0,38,2,0 +365,1,2,2,2,7,0, ,2,0,0,0,0,1,0,62,2,0 +366,1,2,1,1,1,0, ,2,0,0,0,0,1,0,51,2,0 +367,1,1,1,1,2,0, ,1,0,0,0,0,1,0,29,2,0 +368,1,3,2,2,1,0, ,1,0,0,0,0,1,0,48,1,0 +369,1,1,2,5,3,0, ,2,1,0,0,0,0,0,64,2,0 +370,1,3,1,2,1,0, ,2,0,0,0,0,1,0,66,2,0 +371,1,2,2,1,7,0, ,2,0,0,1,0,0,0,27,2,0 +372,1,1,1,3,1,0, ,1,0,0,0,0,1,0,34,2,0 +373,1,1,2,5,5,0, ,1,0,0,0,0,1,0,63,2,0 +374,1,1,2,5,7,0, ,2,0,0,0,0,1,0,21,2,0 +375,1,2,1,4,4,0, ,1,1,0,0,0,0,0,28,2,0 +376,1,2,1,7,2,0, ,1,0,0,0,0,1,0,40,2,0 +377,1,3,2,4,3,0, ,1,0,0,0,0,1,0,28,2,0 +378,1,3,2,1,1,0, ,1,0,0,0,0,1,0,26,2,0 +379,1,3,1,1,1,0, ,1,0,0,0,0,1,0,30,2,1 +380,1,2,1,2,2,0, ,1,0,0,0,0,1,0,35,2,0 +381,1,1,2,2,4,0, ,1,0,1,0,0,1,0,25,2,0 +382,1,2,2,1,7,0, ,1,0,0,0,0,1,0,27,2,0 +383,1,3,2,3,1,0, ,2,0,1,0,0,0,0,26,2,0 +384,1,2,1,1,1,0, ,2,0,0,0,0,1,0,27,2,1 +385,1,3,1,5,4,0, ,1,0,0,0,0,1,0,68,1,1 +386,1,1,1,2,2,0, ,1,0,0,0,0,1,0,59,1,0 +387,1,2,2,2,5,0, ,1,0,0,0,0,1,0,41,2,0 +388,1,3,1,7,1,0, ,2,0,1,0,0,1,0,30,2,0 +389,1,2,2,4,7,0, ,1,1,0,0,0,0,0,30,1,0 +390,1,2,1,2,3,0, ,2,0,0,1,0,0,0,30,2,0 +391,1,1,2,3,2,0, ,1,0,0,1,0,0,0,31,2,0 +392,1,1,1,1,1,0, ,2,0,0,1,0,0,0,36,2,0 +393,1,1,1,3,5,0, ,2,0,0,0,0,1,0,42,2,0 +394,1,3,2,5,1,0, ,1,0,0,1,0,0,0,30,2,0 +395,1,2,1,5,4,0, ,1,0,0,0,0,1,0,38,1,0 +396,1,2,2,2,7,0, ,2,0,0,0,0,1,0,30,2,0 +397,1,3,2,2,1,0, ,2,0,0,0,0,1,0,52,2,1 +398,1,1,2,3,6,0, ,1,1,0,0,0,1,1,26,2,0 +399,1,3,1,2,1,0, ,2,0,0,0,0,1,0,38,2,0 +400,1,1,1,1,1,0, ,2,0,0,0,0,1,0,29,2,0 +401,1,1,1,3,1,1,It said watch video and then skipped to next page. if this was by design then no difficulties.,1,0,0,0,0,1,0,37,2,1 +402,1,2,2,6,6,0, ,1,0,0,0,0,1,0,36,2,0 +403,1,3,1,2,3,0, ,2,0,0,1,0,1,0,37,2,0 +404,1,3,2,3,2,0, ,1,0,0,0,0,1,0,29,2,0 +405,1,2,2,3,6,0, ,2,0,0,0,0,1,0,43,1,0 +406,1,1,2,4,6,0, ,1,0,0,0,0,1,0,23,2,0 +407,1,2,1,4,5,0, ,1,0,0,0,0,1,0,23,2,0 +408,1,2,2,4,5,0, ,2,1,0,0,0,1,0,23,2,0 +409,1,2,1,3,2,0, ,1,0,0,0,0,1,0,25,2,0 +410,1,1,1,6,2,0, ,1,0,1,0,0,0,0,25,1,0 +411,1,3,2,4,1,0, ,2,0,0,0,0,1,0,44,2,0 +412,1,1,2,2,6,0, ,1,0,0,0,0,1,0,41,1,0 +413,1,3,1,2,1,0, ,1,0,1,0,0,0,0,21,2,0 +414,1,1,2,4,7,0, ,3,0,0,0,0,1,0,24,2,0 +415,1,1,2,3,3,0, ,1,0,0,0,0,1,0,20,2,1 +416,1,1,1,3,3,0, ,1,0,0,0,0,1,0,28,2,1 +417,1,2,2,3,7,0, ,1,0,0,0,0,1,0,42,1,0 +418,1,3,1,1,2,0, ,2,0,0,1,0,0,0,31,2,0 +419,1,3,2,2,4,0, ,2,0,0,0,0,1,0,34,2,0 +420,1,2,2,2,7,0, ,1,0,0,0,0,1,0,33,2,0 +421,1,3,1,4,1,0, ,1,0,0,0,0,1,0,29,2,0 +422,1,1,1,3,3,0, ,1,0,0,0,0,1,0,29,2,0 +423,1,2,1,5,3,0, ,2,0,0,0,0,1,0,58,2,0 +424,1,2,1,5,3,0, ,1,0,0,0,0,1,0,23,2,0 +425,1,3,2,1,1,0, ,2,0,0,0,0,1,0,38,2,0 +426,1,1,1,1,1,1,didn't see video,2,0,0,0,0,1,0,68,2,1 +427,2,1,2,1,7,0, ,1,0,0,0,0,1,0,38,2,0 +428,1,1,2,6,7,0, ,1,0,0,0,0,1,0,35,2,0 +429,1,1,1,3,2,0, ,2,0,0,0,0,1,0,38,2,0 +430,1,2,1,1,1,1,"I'm not sure, the more instructions page went kind of fast. I had barely read it and it was gone.",1,0,0,0,0,1,0,39,2,0 +431,1,2,2,3,5,0, ,2,0,0,1,0,0,0,35,2,0 +432,1,3,2,2,1,0, ,2,0,0,0,0,1,0,27,2,0 +433,1,2,1,2,1,0, ,2,0,0,0,0,1,0,70,2,0 +434,1,3,1,2,1,0, ,1,0,0,0,0,1,0,39,2,0 +435,1,3,2,6,1,0, ,2,1,0,0,0,0,0,35,2,0 +436,1,2,2,3,4,0, ,1,0,0,0,0,1,0,33,2,0 +437,1,1,2,1,3,0, ,2,0,0,0,0,1,0,25,2,0 +438,1,3,1,2,1,0, ,1,0,0,1,0,0,0,30,2,0 +439,2,1,2,4,5,0, ,1,0,0,0,0,0,1,36,2,0 +440,1,3,1,1,1,0, ,2,1,0,0,0,0,0,44,2,0 +441,1,1,1,1,3,0, ,1,0,0,0,0,1,0,62,2,0 +442,1,2,1,3,2,1,As I was reading the 1-3 instructions...the screen changed before I was able to finish instruction 2 and 3.,1,0,0,0,0,1,0,25,1,0 +443,1,3,2,2,1,0, ,2,1,0,0,0,1,0,50,2,0 +444,1,3,1,1,1,0, ,2,0,0,0,0,1,0,49,2,0 +445,1,2,2,4,7,0, ,2,0,0,0,0,1,0,39,2,0 +446,1,1,1,5,5,0, ,1,0,0,1,0,0,0,27,2,0 +447,1,2,2,3,5,0, ,1,0,0,0,0,1,0,25,2,0 +448,1,2,1,2,3,0, ,2,0,0,0,0,1,0,34,2,0 +449,1,3,2,2,1,0, ,2,0,0,0,0,1,0,57,1,0 +450,1,1,1,2,1,0, ,1,0,0,0,0,1,0,35,2,0 +451,1,1,2,5,4,0, ,1,0,1,0,0,0,0,22,2,1 +452,1,1,2,4,7,0, ,1,0,0,0,0,0,1,57,2,0 +453,1,3,2,1,4,0, ,2,0,0,0,0,1,0,34,2,0 +454,1,3,1,2,1,0, ,2,0,0,0,0,1,0,21,2,0 +455,1,2,2,2,4,0, ,1,0,0,0,0,1,0,53,2,0 +456,1,1,1,4,4,1,I only saw the video for a second and then it skipped forward to the estimate on its own.,2,0,0,0,0,1,0,26,1,0 +457,1,2,1,4,1,0, ,2,0,0,0,0,1,0,25,2,0 +458,1,3,2,4,1,0, ,2,0,0,0,0,1,0,42,2,0 +459,1,2,2,4,3,0, ,2,0,0,0,0,1,0,24,2,0 +460,1,3,1,3,2,0, ,1,0,0,0,0,1,0,28,2,0 +461,2,1,2,1,7,0, ,2,0,0,0,0,1,0,34,2,0 +462,1,1,1,3,3,0, ,1,0,0,0,0,1,0,26,1,0 +463,1,1,2,4,3,0, ,2,0,0,0,0,1,0,36,2,0 +464,1,1,2,3,3,0, ,2,0,0,0,0,1,0,26,2,0 +465,1,2,2,3,5,0, ,1,0,0,0,0,1,0,31,2,0 +466,1,3,2,2,1,0, ,2,0,0,0,0,1,0,23,2,0 +467,1,3,1,3,2,1,"Mturk gave me a sign out error, I had to reopen the survey again sorry. Other than this I had no problems at all.",1,0,0,0,0,1,0,42,1,0 +468,1,2,1,2,2,0, ,2,1,0,0,0,0,0,35,2,0 +469,1,3,2,2,1,0, ,3,0,0,0,0,1,0,31,2,0 +470,1,2,1,1,1,0, ,1,0,0,0,0,1,0,39,2,0 +471,1,3,1,6,1,0, ,1,0,0,0,0,1,0,28,1,0 +472,1,1,1,4,4,0, ,1,0,0,1,0,0,0,34,2,0 +473,1,2,2,4,2,0, ,1,0,0,0,0,1,0,55,2,0 +474,1,3,1,3,1,0, ,1,0,0,0,0,1,0,18,2,0 +475,1,2,2,2,4,0, ,1,0,1,0,0,0,0,37,2,0 +476,1,1,1,3,1,1,Video never played,2,0,0,0,0,1,0,63,2,1 +477,1,2,1,4,6,0, ,2,0,0,0,0,1,0,37,2,0 +478,1,1,2,5,6,0, ,2,0,0,0,0,1,0,27,2,0 +479,1,3,1,2,1,0, ,1,1,0,0,0,0,0,43,2,0 +480,2,2,1,1,1,0, ,2,0,0,0,0,1,0,37,1,1 +481,1,1,1,3,2,0, ,1,0,0,0,0,1,0,29,2,0 +482,1,2,2,3,3,0, ,1,0,0,0,0,1,0,31,1,0 +483,1,3,2,2,2,0, ,2,0,0,1,0,0,0,45,2,0 +484,1,1,2,6,7,0, ,1,0,0,0,0,1,0,28,2,0 +485,1,1,1,5,4,0, ,1,0,0,0,0,1,0,36,2,0 +486,1,3,1,2,1,0, ,2,0,0,0,0,1,0,21,2,0 +487,1,3,2,1,1,0, ,2,1,0,0,0,0,0,42,2,0 +488,1,2,2,2,7,0, ,2,0,0,0,0,1,0,22,2,0 +489,1,2,1,3,2,0, ,1,0,0,0,0,1,0,23,2,0 +490,1,1,2,7,7,0, ,2,0,0,0,0,1,0,49,2,0 +491,1,3,1,3,1,0, ,1,0,0,0,0,1,0,32,1,0 +492,1,2,1,2,1,0, ,2,0,0,0,0,1,0,46,1,0 +493,1,3,2,2,1,0, ,2,0,0,0,0,1,0,41,2,0 +494,1,1,2,2,7,0, ,2,0,1,0,0,0,0,28,2,0 +495,1,2,2,2,3,0, ,2,0,0,0,0,1,0,29,2,0 +496,1,1,1,3,1,0, ,2,0,0,0,0,1,0,58,2,0 +497,1,3,2,2,1,0, ,2,0,0,1,0,0,0,41,2,0 +498,1,2,1,1,1,0, ,1,0,0,0,0,1,0,32,2,0 +499,1,1,2,6,6,0, ,2,0,0,0,0,1,0,27,2,0 +500,1,3,1,4,1,0, ,1,0,0,0,0,1,0,32,1,0 +501,1,1,1,4,4,0, ,1,0,0,0,0,1,0,49,2,0 +502,1,3,2,2,1,0, ,2,0,0,0,0,1,0,40,2,0 +503,1,2,2,1,3,0, ,2,0,0,0,0,1,0,38,2,0 +504,1,1,1,1,5,0, ,1,0,0,0,0,1,0,25,2,1 +505,1,3,1,1,1,0, ,1,1,0,0,0,0,0,23,2,0 +506,1,1,2,4,5,0, ,2,0,0,0,0,1,0,46,2,0 +507,1,3,2,2,3,0, ,2,0,0,0,0,1,0,32,2,0 +508,1,2,2,5,7,0, ,1,0,0,0,0,1,0,31,1,0 +509,1,2,1,1,6,0, ,2,0,0,1,0,1,0,25,2,0 +510,1,1,1,2,4,0, ,2,0,0,0,0,1,0,25,2,0 +511,1,2,1,4,2,0, ,2,0,0,0,0,1,0,42,2,0 +512,1,1,2,5,6,0, ,1,0,0,0,0,1,0,35,2,0 +513,1,2,2,2,3,0, ,2,0,0,0,0,1,0,59,2,0 +514,1,2,2,5,5,0, ,2,0,0,0,0,1,0,65,2,0 +515,1,3,1,2,1,0, ,2,0,0,0,0,1,0,31,2,0 +516,1,2,1,2,2,0, ,2,0,0,0,1,1,0,32,2,0 +517,1,3,2,4,1,0, ,2,0,0,0,0,1,0,57,2,0 +518,1,3,1,2,1,1,i never received any additional information,1,0,0,0,0,1,0,29,2,0 +519,1,1,2,3,6,0, ,2,0,0,0,0,1,0,35,2,0 +520,1,1,1,3,5,0, ,2,0,0,0,0,1,0,57,2,0 +521,1,2,2,3,7,0, ,2,0,0,0,0,1,0,43,2,0 +522,1,1,2,5,7,1, ,2,0,0,0,0,1,0,29,2,0 +523,1,3,2,1,7,0, ,2,1,0,0,0,0,0,49,2,0 +524,1,3,1,3,1,0, ,1,1,0,0,0,0,0,24,2,0 +525,1,3,2,5,1,0, ,2,0,0,0,0,1,0,54,1,0 +526,1,1,1,2,1,0, ,2,0,0,0,0,1,0,30,2,1 +527,1,2,1,3,3,0, ,2,0,0,0,0,1,0,22,2,0 +528,1,2,1,2,2,0, ,1,0,0,1,0,0,0,24,2,0 +529,1,1,2,6,6,0, ,2,1,0,0,0,0,0,38,2,0 +530,1,3,1,2,2,0, ,1,0,0,0,0,1,0,56,1,0 +531,1,3,2,6,1,0, ,1,0,0,0,0,1,0,44,1,0 +532,1,1,2,6,7,0, ,1,0,0,0,0,1,0,33,1,0 +533,1,3,1,6,1,0, ,1,1,0,0,0,0,0,29,1,0 +534,1,2,2,2,4,0, ,2,0,0,0,0,1,0,25,2,0 +535,1,2,1,1,4,0, ,2,0,0,0,0,1,0,64,2,0 +536,1,1,1,2,1,0, ,2,0,0,0,0,1,0,48,1,0 +537,1,2,1,4,5,0, ,1,0,0,0,0,1,0,33,2,0 +538,1,2,2,4,7,0, ,2,0,0,0,0,1,0,31,2,0 +539,1,1,1,1,1,0, ,2,0,0,0,0,1,0,27,2,0 +540,1,3,2,1,1,0, ,2,0,0,0,0,1,0,61,2,0 +541,1,3,1,6,1,0, ,2,0,0,0,0,1,0,56,2,0 +542,1,3,1,1,1,0, ,2,0,0,0,0,1,0,27,2,0 +543,2,1,2,5,4,0, ,2,1,0,0,0,0,0,22,2,0 +544,1,1,2,5,4,0, ,2,0,0,0,0,1,0,38,2,0 +545,1,1,1,5,1,0, ,2,0,0,0,0,1,0,35,2,1 +546,1,1,1,3,1,0, ,2,0,0,0,0,1,0,22,2,1 +547,1,2,2,3,7,0, ,1,1,0,0,0,0,0,31,2,0 +548,1,3,2,1,1,0, ,1,0,0,0,0,1,0,30,2,0 +549,1,2,1,1,1,0, ,2,0,0,0,0,1,0,33,2,0 +550,1,1,2,7,7,0, ,2,0,0,0,0,1,0,60,2,0 +551,1,2,1,3,4,0, ,2,0,0,0,0,1,0,45,1,0 +552,1,3,1,1,1,0, ,1,0,0,0,0,1,0,23,2,0 +553,1,2,2,5,5,0, ,1,0,0,0,0,1,0,42,1,0 +554,1,3,2,4,1,0, ,1,0,0,0,0,1,0,25,2,0 +555,1,3,2,2,5,0, ,1,0,0,0,0,1,0,43,2,0 +556,1,1,2,3,5,0, ,2,0,0,0,0,1,0,23,2,0 +557,1,3,2,2,1,0, ,2,0,0,0,0,1,0,51,2,0 +558,1,2,2,5,7,0, ,2,0,0,0,0,1,0,32,1,0 +559,1,1,1,2,6,0, ,1,0,0,0,0,1,0,25,2,0 +560,1,2,1,2,5,0, ,1,0,0,1,0,0,0,27,2,0 +561,1,3,2,1,2,0, ,2,0,0,0,0,1,0,28,2,0 +562,1,3,1,4,2,0, ,1,0,0,0,1,0,0,34,2,0 +563,1,1,1,4,4,0, ,1,1,0,0,0,0,0,27,2,0 +564,1,2,1,2,1,0, ,2,0,0,0,0,1,0,22,2,0 +565,1,2,2,4,3,0, ,1,0,0,0,0,1,0,36,2,1 +566,1,3,1,1,1,0, ,2,1,0,0,0,0,0,38,2,0 +567,1,2,2,3,3,0, ,1,0,0,1,0,0,0,24,2,0 +568,1,1,2,5,7,0, ,1,0,1,0,0,0,0,33,2,0 +569,1,3,2,2,2,0, ,1,0,0,0,0,1,0,42,2,1 +570,2,2,1,2,3,0, ,2,0,0,0,0,1,0,33,2,0 +571,1,1,2,4,3,0, ,2,0,0,0,0,1,0,26,2,0 +572,1,2,2,1,6,0, ,2,0,0,1,0,0,0,66,2,0 +573,1,1,1,5,4,0, ,1,0,0,0,0,1,0,34,2,1 +574,1,3,1,3,5,0, ,2,0,0,1,0,0,0,37,1,1 +575,1,1,1,5,3,0, ,1,0,0,0,0,1,0,27,2,0 +576,1,3,1,2,1,0, ,2,0,0,1,0,0,0,52,2,0 +577,1,1,2,5,4,0, ,2,1,0,0,0,0,0,28,2,0 +578,1,2,1,3,2,0, ,2,0,0,0,0,1,0,28,2,0 +579,1,1,1,5,4,0, ,1,0,0,0,0,1,0,49,2,0 +580,1,2,2,3,5,0, ,1,0,0,0,0,1,0,29,2,0 +581,1,2,1,1,6,0, ,2,0,0,0,0,1,0,67,1,0 +582,1,2,1,5,1,0, ,2,0,0,0,0,1,0,23,2,0 +583,1,3,1,1,1,0, ,2,0,0,0,0,1,0,28,2,0 +584,1,1,2,4,5,0, ,2,0,0,0,0,1,0,38,2,0 +585,1,3,2,4,1,0, ,1,0,0,0,0,1,0,20,2,0 +586,1,2,2,4,6,0, ,2,0,0,0,0,1,0,52,2,0 +587,1,1,1,2,4,0, ,2,0,0,0,0,1,0,60,2,0 +588,1,3,2,1,1,0, ,1,0,0,0,1,1,0,27,2,0 +589,1,3,1,2,2,0, ,1,0,1,0,0,0,0,22,1,1 +590,1,1,2,5,2,0, ,1,0,0,0,0,1,0,27,2,0 +591,1,3,1,1,2,0, ,1,0,0,0,0,1,0,25,2,1 +592,1,1,1,2,3,1,"The YouTube video didn't play before I was automatically advanced to the next page. I GUESSED what I would have seen, having seen the trick on video before.",1,0,0,0,0,1,0,66,2,0 +593,1,3,2,4,1,0, ,1,0,0,0,0,1,0,24,2,0 +594,1,2,1,3,6,0, ,2,0,0,0,0,1,0,40,2,0 +595,1,3,2,1,3,0, ,2,0,0,0,0,1,0,29,2,1 +596,1,2,2,1,3,0, ,1,0,0,0,0,1,0,37,2,0 +597,1,1,2,5,6,0, ,2,0,0,1,0,0,0,65,2,0 +598,1,1,2,4,5,0, ,1,0,0,1,0,0,0,19,2,0 +599,1,2,2,1,6,0, ,2,0,0,0,0,1,0,63,2,0 +600,1,1,1,4,6,1,The video started to load went black and then dissappeared--I am using the TOR Browser,2,0,0,0,1,0,0,32,2,0 +601,1,2,1,5,1,0, ,1,0,0,0,0,1,0,34,2,0 +602,1,1,1,4,3,0, ,1,0,0,0,0,1,0,49,2,0 +603,1,3,1,1,1,0, ,2,0,0,0,0,1,0,20,2,0 +604,1,3,1,2,1,0, ,1,0,1,0,0,1,0,52,2,0 +605,1,2,2,3,5,0, ,2,0,0,0,0,1,0,32,1,0 +606,1,1,2,6,7,0, ,1,0,0,0,0,1,0,38,2,0 +607,1,3,2,2,1,0, ,2,0,0,0,0,1,0,41,2,0 +608,1,2,1,3,2,0, ,2,0,0,0,0,1,0,48,2,0 +609,1,2,2,4,5,0, ,1,0,1,0,0,1,0,30,1,0 +610,1,3,2,2,1,0, ,2,0,0,0,0,1,0,37,2,0 +611,1,1,2,3,6,0, ,1,0,0,0,0,1,0,56,2,0 +612,1,2,1,6,5,0, ,2,0,0,0,0,1,0,30,2,0 +613,1,1,1,5,5,0, ,1,0,0,0,0,1,0,23,2,0 +614,1,2,1,2,1,0, ,2,0,0,0,0,1,0,32,2,0 +615,1,3,1,3,1,0, ,1,0,0,0,0,1,0,33,1,0 +616,1,3,2,1,1,0, ,2,0,0,0,0,1,0,42,2,1 +617,1,3,2,2,3,0, ,2,0,1,0,0,0,0,34,2,0 +618,1,3,1,2,1,0, ,2,0,1,0,0,0,0,32,2,0 +619,1,1,2,4,3,0, ,2,1,0,0,0,0,0,55,2,0 +620,1,2,2,5,1,0, ,1,1,0,0,0,0,0,38,1,1 +621,1,3,1,3,2,0, ,2,0,0,0,0,1,0,63,1,0 +622,1,1,2,1,2,0, ,1,0,0,0,0,1,0,37,1,0 +623,1,1,1,4,3,0, ,2,0,0,0,0,1,0,42,2,0 +624,1,2,1,4,7,0, ,1,0,1,0,0,0,0,31,2,0 +625,1,1,1,7,4,0, ,2,1,0,0,0,0,0,29,2,0 +626,1,1,2,3,5,0, ,1,0,0,0,0,1,0,43,2,0 +627,1,2,2,1,4,0, ,2,0,0,0,0,1,0,46,2,0 +628,1,1,1,4,1,1,"Well, the video showed up but didn't play. Instead, the survey jumped to the next page quickly.",1,0,0,0,0,1,0,38,2,0 +629,1,3,1,1,1,0, ,3,0,1,0,0,0,0,25,2,0 +630,1,3,2,5,1,0, ,1,1,0,0,0,0,0,25,2,0 +631,1,2,1,2,2,0, ,1,0,0,0,0,1,0,38,2,0 +632,1,2,2,3,7,0, ,2,0,1,0,0,1,0,61,2,0 +633,1,2,1,1,1,0, ,1,1,0,0,0,0,0,38,2,0 +634,1,1,2,3,6,0, ,2,0,0,0,0,1,0,40,2,0 +635,1,3,1,2,2,0, ,1,0,0,1,0,0,0,33,2,0 +636,1,1,2,5,7,0, ,2,1,0,0,0,0,0,22,2,0 +637,1,1,1,3,3,0, ,2,0,0,0,0,1,0,34,2,0 +638,1,3,2,1,1,0, ,2,0,0,1,0,0,0,30,2,0 +639,1,2,2,1,7,0, ,2,0,0,0,0,1,0,33,2,0 +640,1,3,1,5,1,0, ,1,0,0,0,0,1,0,62,2,0 +641,1,1,1,1,1,0, ,1,0,0,0,0,1,0,56,2,0 +642,1,3,2,3,1,0, ,2,1,0,0,0,0,0,29,2,0 +643,1,2,2,4,7,0, ,2,0,0,1,0,1,0,42,2,0 +644,2,2,1,5,3,0, ,1,0,0,1,0,0,0,27,2,1 +645,1,1,1,3,4,0, ,1,0,0,0,0,1,0,30,2,0 +646,1,3,1,2,1,0, ,2,0,0,0,0,1,0,30,2,0 +647,1,2,2,3,6,0, ,1,0,0,0,0,1,0,55,2,0 +648,1,2,1,4,1,0, ,1,0,0,0,0,1,0,39,2,0 +649,1,3,2,4,5,0, ,1,0,0,0,0,1,0,27,2,0 +650,1,3,2,5,4,0, ,2,0,0,0,1,0,0,30,1,1 +651,1,1,2,2,5,0, ,2,0,0,0,0,1,0,32,2,0 +652,1,1,1,3,2,0, ,2,0,0,0,0,1,0,30,2,0 +653,1,1,2,1,2,0, ,2,1,0,0,0,0,0,25,2,0 +654,2,2,1,1,1,0, ,1,1,0,0,0,0,0,38,2,0 +655,1,2,2,5,6,0, ,2,0,0,0,0,1,0,34,2,0 +656,1,3,1,3,2,0, ,2,0,0,0,0,1,0,29,2,0 +657,1,3,1,2,1,0, ,2,0,0,0,0,1,0,51,2,0 +658,1,2,2,2,3,0, ,1,0,0,0,0,1,0,38,2,0 +659,1,1,1,3,4,0, ,2,0,0,0,0,1,0,48,1,0 +660,1,2,1,5,4,0, ,1,0,0,0,0,1,0,29,2,0 +661,1,1,2,4,4,0, ,2,0,0,0,0,1,0,39,2,0 +662,1,2,2,5,6,0, ,1,0,0,0,0,1,0,75,2,0 +663,1,3,2,3,4,0, ,2,0,0,1,0,0,0,36,2,0 +664,1,2,1,3,6,0, ,1,0,0,0,1,1,0,56,1,0 +665,1,1,2,5,2,0, ,1,0,0,0,0,1,0,28,1,0 +666,1,3,1,4,1,0, ,2,1,1,0,0,1,0,28,2,0 +667,1,1,1,1,3,0, ,2,0,0,0,0,1,0,68,2,1 +668,1,1,1,7,6,0, ,2,0,1,0,0,0,0,27,1,1 +669,1,3,2,7,4,0, ,2,0,0,0,0,1,0,26,2,0 +670,1,2,2,5,4,0, ,1,0,0,0,0,1,0,71,2,0 +671,1,3,2,2,1,0, ,2,1,1,0,0,1,0,27,2,0 +672,1,1,2,5,7,0, ,2,0,0,0,0,1,0,29,2,0 +673,1,2,1,2,4,0, ,2,0,1,0,0,1,0,22,2,0 +674,1,3,1,2,1,0, ,2,0,0,0,0,1,0,25,2,0 +675,1,3,1,1,1,0, ,2,0,0,0,0,1,0,23,2,0 +676,1,3,2,2,1,0, ,1,0,0,0,0,1,0,34,2,0 +677,1,3,1,6,1,0, ,2,0,0,1,0,1,0,33,2,0 +678,1,1,1,3,1,0, ,2,0,0,0,0,1,0,40,2,0 +679,1,3,1,1,1,0, ,2,0,1,0,0,1,0,30,2,0 +680,1,2,2,6,6,0, ,2,0,0,0,0,1,0,48,1,0 +681,2,1,2,5,7,0, ,2,0,0,0,0,1,0,37,2,0 +682,1,2,2,2,5,0, ,2,0,0,0,0,1,0,58,2,0 +683,1,1,2,2,5,0, ,2,0,0,0,0,1,0,42,2,0 +684,1,2,1,2,2,0, ,2,0,1,0,0,1,0,31,2,0 +685,1,1,2,1,6,0, ,1,0,0,0,0,1,0,30,2,0 +686,1,2,2,5,6,0, ,2,0,0,0,0,1,0,33,2,0 +687,1,2,1,4,2,0, ,2,0,0,0,0,1,0,21,2,0 +688,1,1,1,1,1,1,"Video did not actually play, it started to lead then it advanced to the next page.",2,0,1,0,1,1,0,24,2,0 +689,1,3,2,4,1,0, ,2,0,0,1,0,0,0,44,2,0 +690,1,1,2,5,7,0, ,2,0,0,0,0,1,0,35,2,0 +691,1,3,1,1,1,0, ,2,0,0,0,0,1,0,43,2,0 +692,1,2,2,1,1,1,nothing happened I not sure what went wrong,1,0,0,0,0,1,0,48,2,1 +693,1,2,1,5,1,0, ,1,0,0,0,0,1,0,32,2,1 +694,1,3,2,3,1,0, ,2,0,0,0,0,1,0,19,2,1 +695,1,1,1,3,4,0, ,2,0,1,0,0,0,0,26,2,0 +696,1,3,2,1,1,0, ,2,0,0,0,0,1,0,42,2,0 +697,1,1,2,4,4,0, ,1,0,0,1,0,0,0,21,2,0 +698,1,2,2,6,6,0, ,1,1,0,0,0,0,0,35,1,0 +699,1,3,1,4,1,0, ,1,0,0,0,0,1,0,59,1,0 +700,1,2,1,4,2,1,I couldn't tell if the quick timer that went by was a technical difficulty or if it was meant to be there.,2,0,0,0,0,1,0,58,2,1 +701,1,3,1,6,2,0, ,2,0,0,0,0,1,0,41,1,0 +702,1,1,1,5,4,0, ,2,0,0,0,0,1,0,40,2,0 +703,1,1,1,5,2,1,"Clicked the video, it didn't play and just sent me to the next page.",2,0,0,0,0,1,0,25,2,0 +704,1,2,2,5,6,0, ,2,0,0,0,0,1,0,38,2,0 +705,1,2,1,3,3,0, ,2,0,0,0,0,1,0,47,2,0 +706,1,3,2,2,1,0, ,2,0,0,0,0,1,0,48,2,0 +707,1,1,1,5,2,0, ,1,0,0,0,0,1,0,40,1,0 +708,1,1,2,4,7,0, ,2,0,0,1,0,0,0,19,2,0 +709,1,2,1,5,5,0, ,1,0,0,0,0,1,0,21,2,0 +710,1,3,2,2,5,0, ,1,1,0,0,0,0,0,44,2,0 +711,2,3,1,2,2,0, ,1,0,0,0,0,1,0,32,2,0 +712,1,1,1,3,4,0, ,2,0,0,0,0,1,0,36,2,0 +713,1,1,2,3,6,0, ,1,0,0,0,0,1,0,29,2,0 +714,1,3,2,5,6,1,I wasnt sure if I was supposed to a video which I didnt,1,0,0,0,0,1,0,34,2,0 +715,1,1,2,6,5,0, ,1,0,0,0,0,1,0,58,1,0 +716,1,2,2,3,3,0, ,2,0,0,0,0,1,0,29,2,0 +717,1,1,2,2,7,0, ,2,0,0,0,0,1,0,40,2,0 +718,1,3,1,1,1,1,there was a countdown,2,0,0,0,0,1,0,29,2,0 +719,1,2,1,2,2,0, ,2,1,0,0,0,0,0,33,2,0 +720,1,2,1,5,1,1,I didn't see any video. The video just went by quickly,2,0,0,0,0,1,0,23,1,1 +721,1,2,2,3,5,1,"There was a spinning blue circle over the page the whole time, as if it were loading. I waited a long time and it never went away, but it didn't seem to have any effect on the way the survey worked. Everything seemed to load just fine and my answers worke.",2,0,0,0,0,1,0,31,2,0 +722,1,2,2,2,7,0, ,2,0,0,1,0,0,0,43,2,0 +723,1,3,2,6,1,0, ,1,0,1,0,0,0,0,57,1,0 +724,1,1,2,5,5,0, ,1,0,0,0,0,1,0,33,1,0 +725,1,1,1,4,2,0, ,2,0,0,0,0,1,0,20,2,1 +726,1,2,2,4,2,0, ,1,0,0,0,0,1,0,40,2,0 +727,1,3,1,2,2,0, ,2,0,0,0,0,1,0,43,2,0 +728,2,1,1,2,5,0, ,2,0,0,1,0,0,0,24,2,1 +729,1,2,1,5,3,0, ,1,0,0,0,0,1,0,58,2,0 +730,1,1,2,5,5,0, ,2,0,0,1,0,0,0,44,2,0 +731,1,3,1,6,2,0, ,1,0,1,0,0,1,0,33,2,0 +732,1,3,2,1,1,0, ,2,0,0,0,0,1,0,37,2,0 +733,1,2,1,1,1,0, ,1,0,0,0,0,1,0,29,1,0 +734,1,3,1,1,1,0, ,1,0,0,0,0,1,0,71,2,0 +735,1,2,2,1,7,0, ,1,0,0,1,0,0,0,34,1,0 +736,1,1,1,4,5,0, ,2,0,0,0,0,1,0,22,2,0 +737,1,3,2,2,6,0, ,1,0,0,0,0,1,0,35,2,0 +738,1,3,2,2,2,0, ,1,0,0,0,0,1,0,42,2,0 +739,1,2,2,3,4,0, ,1,0,0,0,0,1,0,52,2,0 +740,1,1,2,5,4,0, ,1,0,0,0,0,1,0,41,1,0 +741,1,2,1,2,2,0, ,1,0,0,0,0,1,0,23,2,0 +742,1,1,1,4,6,0, ,1,0,0,0,0,1,0,39,2,0 +743,1,3,1,3,1,0, ,2,0,0,0,0,1,0,25,2,0 +744,1,3,2,2,1,0, ,1,0,0,0,0,1,0,39,2,0 +745,1,2,1,4,6,0, ,1,0,0,0,0,1,0,29,2,0 +746,1,2,2,7,5,0, ,1,0,0,0,0,1,0,41,2,0 +747,1,1,2,6,7,0, ,2,0,0,0,0,1,0,42,2,0 +748,1,3,2,5,3,0, ,1,1,0,0,0,0,0,29,1,0 +749,1,1,1,4,5,0, ,1,1,0,0,0,0,0,57,2,0 +750,1,3,1,4,4,0, ,1,0,1,0,0,0,0,23,1,0 +751,1,1,2,2,3,0, ,1,0,0,0,0,1,0,33,2,0 +752,1,2,1,1,3,0, ,2,0,0,0,0,1,0,23,2,0 +753,1,2,2,5,7,0, ,1,0,0,0,0,1,0,31,1,0 +754,1,1,2,2,7,0, ,2,0,0,0,0,1,0,27,2,0 +755,1,2,1,4,2,1,"Got to read only part of the second line of instructions, but did get the general idea. Would have given it a shot",2,0,0,0,0,1,0,54,2,0 +756,1,3,1,2,1,0, ,2,0,0,0,0,1,0,72,2,0 +757,1,2,2,2,7,0, ,2,0,0,0,0,1,0,48,2,0 +758,1,3,2,5,3,0, ,1,0,0,0,0,1,0,22,1,0 +759,1,3,1,2,4,0, ,1,0,0,0,0,1,0,31,1,0 +760,1,1,1,5,6,0, ,2,0,0,0,0,1,0,50,1,0 +761,1,1,2,5,4,0, ,2,0,0,0,0,1,0,34,2,0 +762,1,2,1,1,4,1,"connectivity issues/slow loading, but it may have been on my end.",2,0,0,0,0,1,0,38,2,0 +763,1,3,1,4,2,0, ,1,0,0,0,0,1,0,34,2,1 +764,1,3,2,3,1,0, ,2,0,0,1,0,0,0,25,2,0 +765,1,2,2,5,3,0, ,1,1,0,0,0,0,0,38,1,0 +766,1,2,2,2,7,0, ,1,0,0,0,0,1,0,40,1,0 +767,1,3,2,2,1,0, ,2,0,0,0,0,1,0,51,2,0 +768,1,2,1,5,6,0, ,1,0,0,0,0,1,0,42,1,0 +769,1,3,1,5,1,0, ,2,1,0,0,0,0,0,21,2,0 +770,1,1,1,2,3,0, ,2,0,0,0,0,1,0,45,2,1 +771,1,1,2,4,5,0, ,2,0,1,0,0,0,0,29,2,0 +772,1,3,2,5,5,0, ,1,0,0,0,0,1,0,47,2,0 +773,1,3,1,3,2,0, ,2,0,0,0,0,1,0,38,2,0 +774,1,2,1,2,3,0, ,1,0,0,0,0,1,0,58,2,0 +775,2,1,2,3,5,0, ,1,0,0,1,0,0,0,25,2,0 +776,1,3,2,1,1,0, ,2,0,1,0,0,0,0,55,2,0 +777,1,1,1,4,2,0, ,2,0,0,0,0,1,0,25,1,0 +778,1,3,1,1,3,0, ,2,0,0,0,0,1,0,59,2,1 +779,1,1,2,5,5,0, ,2,0,0,0,0,1,0,33,2,0 +780,1,1,1,4,6,0, ,2,0,0,0,0,1,0,44,2,0 +781,1,2,2,2,6,0, ,2,0,0,0,0,0,1,28,2,0 +782,1,2,1,3,4,0, ,1,0,0,0,0,1,0,44,2,0 +783,1,3,2,1,1,0, ,1,0,0,0,0,1,0,21,2,0 +784,1,2,1,1,1,0, ,2,0,0,0,0,1,0,39,2,0 +785,1,1,1,5,3,0, ,1,0,0,1,0,0,0,37,1,0 +786,1,1,2,2,1,0, ,1,0,0,0,0,1,0,29,2,0 +787,1,2,2,3,2,0, ,1,0,0,0,0,1,0,46,2,0 +788,1,2,2,5,4,0, ,1,0,0,0,0,1,0,30,2,0 +789,1,3,1,1,2,0, ,1,0,0,0,0,1,0,33,2,0 +790,1,1,2,4,7,0, ,1,0,0,0,0,1,0,26,2,0 +791,1,1,1,2,1,0, ,1,0,0,1,0,0,0,32,2,0 +792,1,2,1,1,1,0, ,2,0,0,0,0,1,0,38,2,0 +793,1,1,2,6,7,0, ,2,0,0,0,0,1,0,65,2,0 +794,1,3,2,3,1,0, ,1,0,0,0,0,1,0,29,2,0 +795,1,3,1,1,1,0, ,1,0,0,0,0,1,0,33,2,0 +796,2,3,1,4,4,0, ,1,0,0,0,0,1,0,26,2,0 +797,1,1,1,2,3,0, ,1,0,0,0,0,1,0,34,2,0 +798,1,2,2,4,7,0, ,2,0,0,0,0,1,0,30,1,0 +799,1,2,1,4,4,0, ,2,0,0,0,0,1,0,56,2,0 +800,1,3,1,4,4,0, ,2,0,0,0,0,1,0,26,1,0 +801,1,3,2,1,3,0, ,2,1,0,0,0,0,0,23,2,0 +802,1,1,2,7,7,0, ,2,0,0,0,0,1,0,64,2,0 +803,1,3,1,3,2,0, ,2,0,0,0,0,1,0,40,2,0 +804,1,1,1,4,4,0, ,2,0,0,0,0,1,0,41,1,0 +805,1,2,2,4,4,0, ,1,0,0,0,0,1,0,24,2,1 +806,1,3,2,1,1,0, ,2,0,0,0,0,1,0,31,2,0 +807,1,2,1,2,1,0, ,2,0,0,0,0,1,0,29,2,0 +808,1,3,2,3,1,0, ,2,0,0,0,0,1,0,35,2,0 +809,1,2,1,2,5,0, ,2,0,1,0,0,0,0,70,2,0 +810,1,3,1,2,1,0, ,2,0,0,0,0,1,0,37,1,0 +811,1,1,2,3,7,0, ,2,0,0,0,0,1,0,54,2,0 +812,1,1,1,1,1,0, ,1,0,0,0,0,1,0,41,2,0 +813,1,2,2,7,1,0, ,1,0,0,1,0,0,0,27,2,0 +814,1,3,2,2,1,0, ,2,0,0,0,0,1,0,41,2,0 +815,1,2,2,1,2,0, ,1,0,0,0,0,1,0,36,2,0 +816,1,2,1,2,1,1,I don't know. I think the instructions on how to perform the trick glitched or something.,2,0,0,0,0,1,0,21,2,0 +817,1,1,2,6,7,0, ,1,0,0,0,0,1,0,35,2,0 +818,1,1,1,2,1,0, ,1,1,0,0,0,0,0,23,2,0 +819,1,2,1,3,2,0, ,2,0,0,0,0,1,0,26,2,0 +820,1,3,1,5,2,0, ,1,0,0,1,0,0,0,26,2,0 +821,1,3,1,1,1,0, ,1,0,0,0,0,1,0,28,2,0 +822,1,3,2,4,4,0, ,2,0,0,0,0,1,0,54,1,0 +823,1,1,2,2,7,0, ,2,0,0,0,0,1,0,32,2,0 +824,1,3,2,1,1,0, ,2,0,0,0,0,1,0,31,2,0 +825,1,2,2,6,3,0, ,1,0,0,0,0,1,0,29,1,0 +826,1,1,1,1,2,0, ,2,1,0,0,0,0,0,24,2,0 +827,1,2,1,5,1,0, ,1,0,0,0,0,1,0,38,2,0 +828,1,1,1,3,1,1,Not sure if it was a technical difficulty but the video never played.,2,0,0,0,0,1,0,25,2,1 +829,1,3,1,1,1,0, ,2,0,0,0,0,1,0,44,2,0 +830,1,2,2,2,4,0, ,1,0,0,0,0,1,0,33,2,0 +831,1,1,2,4,6,0, ,2,0,0,0,0,1,0,23,2,0 +832,1,1,2,3,5,0, ,2,0,0,1,0,0,0,32,1,1 +833,1,2,1,5,5,0, ,1,0,1,0,0,0,0,19,1,0 +834,1,3,2,2,1,0, ,2,0,0,1,0,0,0,26,2,0 +835,1,2,2,1,3,0, ,2,0,0,0,0,1,0,36,2,0 +836,1,1,1,2,2,0, ,2,0,0,0,0,1,0,29,2,0 +837,1,2,2,6,5,0, ,2,0,1,1,0,1,0,28,2,0 +838,1,3,1,1,1,0, ,1,0,0,0,0,1,0,35,2,0 +839,1,3,1,3,2,0, ,2,0,0,0,0,1,0,45,2,0 +840,1,1,1,2,2,0, ,2,0,0,0,0,1,0,32,2,0 +841,1,3,2,3,2,0, ,2,0,1,0,0,0,0,42,2,0 +842,1,2,1,2,5,0, ,1,0,0,0,0,1,0,31,2,0 +843,1,2,2,3,6,0, ,1,1,0,0,0,0,0,40,2,0 +844,1,1,2,5,5,0, ,1,0,0,1,0,0,0,34,2,0 +845,1,1,2,5,6,0, ,1,0,0,1,0,0,0,32,1,0 +846,1,3,2,2,1,0, ,2,0,0,0,0,1,0,30,2,0 +847,1,2,1,2,2,0, ,2,0,0,0,0,1,0,41,2,0 +848,1,1,1,2,6,0, ,2,0,0,0,0,1,0,53,1,0 +849,1,2,1,2,5,0, ,1,0,0,0,0,1,0,39,2,0 +850,1,2,2,3,5,0, ,1,0,0,0,0,1,0,34,1,0 +851,1,3,2,4,6,0, ,1,0,0,0,0,1,0,44,1,1 +852,1,1,2,4,7,0, ,2,0,0,0,0,1,0,23,2,0 +853,1,1,1,2,4,0, ,1,1,0,0,0,0,0,27,2,0 +854,1,3,1,3,1,0, ,2,0,0,0,0,1,0,22,2,0 +855,1,3,1,1,4,0, ,2,1,0,0,0,0,0,45,2,0 +856,1,1,1,6,5,0, ,2,1,0,0,0,0,0,34,2,0 +857,1,3,1,4,1,0, ,1,0,1,0,0,1,0,34,2,0 +858,1,3,1,7,1,0, ,1,0,1,0,0,0,0,27,2,0 +859,2,2,2,3,2,0, ,1,0,1,0,0,0,0,51,2,0 +860,1,3,2,1,5,0, ,2,0,0,0,0,1,0,36,2,1 +861,1,1,2,4,7,0, ,2,0,0,0,0,1,0,28,2,0 +862,1,1,2,2,7,0, ,2,0,0,0,0,1,0,38,2,0 +863,2,1,2,1,7,0, ,2,1,0,0,0,0,0,34,2,0 +864,1,2,1,1,7,0, ,2,0,0,0,0,1,0,50,2,0 +865,1,2,1,2,2,0, ,1,0,0,1,0,0,0,44,2,0 +866,1,1,1,4,2,0, ,2,1,0,0,0,0,0,53,2,1 +867,1,3,2,1,1,0, ,2,0,0,0,0,1,0,32,2,0 +868,1,2,2,2,2,0, ,1,0,0,0,0,1,0,38,2,0 +869,1,2,2,4,3,1,dishes on the floor!,2,1,0,0,0,0,0,45,1,0 +870,1,3,2,1,4,0, ,2,1,0,0,0,0,0,32,2,0 +871,1,3,2,1,2,0, ,2,0,0,0,0,1,0,20,2,0 +872,1,2,1,4,1,1,page went away,2,0,0,0,0,1,0,36,2,1 +873,1,2,2,1,1,0, ,2,0,0,0,0,1,0,32,2,0 +874,1,1,1,3,5,0, ,2,0,0,0,0,1,0,67,2,0 +875,1,3,1,5,2,0, ,1,1,0,0,0,0,0,24,2,0 +876,1,2,1,1,4,0, ,2,0,0,0,0,1,0,56,2,0 +877,1,1,1,6,7,0, ,1,0,0,0,0,1,0,34,1,0 +878,1,1,2,5,7,0, ,2,0,0,0,0,1,0,33,1,0 +879,1,2,2,2,5,0, ,2,0,0,0,0,1,0,26,2,0 +880,1,1,2,3,7,0, ,2,0,0,0,0,1,0,32,2,0 +881,1,3,2,4,7,0, ,1,0,0,0,0,1,0,33,2,0 +882,2,1,2,5,7,0, ,1,1,0,0,0,0,0,25,2,0 +883,1,2,1,2,3,0, ,1,0,0,0,0,1,0,43,1,0 +884,1,3,1,1,2,0, ,2,0,0,0,0,1,0,42,2,0 +885,1,3,2,1,1,0, ,2,0,0,0,0,1,0,33,2,0 +886,1,2,1,1,2,0, ,2,0,1,0,0,0,0,35,2,0 +887,1,1,1,1,1,0, ,1,0,1,0,0,0,0,27,2,1 +888,1,1,1,4,2,0, ,2,1,0,0,0,0,0,43,2,0 +889,1,2,1,1,1,0, ,1,0,0,0,0,1,0,22,2,1 +890,1,2,2,3,3,0, ,2,1,0,0,0,0,0,18,2,1 +891,1,1,2,5,5,0, ,1,0,0,0,0,1,0,27,2,0 +892,1,1,1,1,1,0, ,1,0,0,0,1,1,0,38,2,0 +893,1,3,2,2,1,0, ,2,0,0,0,0,1,0,30,2,0 +894,1,3,2,1,1,0, ,2,0,0,0,0,1,0,63,2,0 +895,1,2,2,1,3,0, ,1,0,0,0,0,1,0,43,2,0 +896,1,3,1,2,1,0, ,1,0,0,0,0,1,0,23,2,0 +897,1,3,1,1,1,0, ,2,0,0,0,0,1,0,56,2,0 +898,1,1,1,6,3,0, ,2,0,0,0,0,1,0,44,1,0 +899,1,2,2,2,4,0, ,2,0,0,0,0,1,0,42,2,0 +900,1,2,1,3,3,0, ,2,0,0,0,0,1,0,30,1,0 +901,1,1,1,1,4,0, ,2,0,0,0,0,1,0,30,2,1 +902,1,1,2,4,2,0, ,2,0,0,0,0,1,0,58,2,0 +903,1,2,2,5,3,0, ,1,0,0,0,0,1,0,20,2,0 +904,1,1,2,5,7,1,Video would not load in the survey so I right-click copied the link URL and opened in a tab on my browser. The video played perfectly there.,1,0,0,0,0,1,0,25,2,0 +905,1,2,1,1,3,0, ,1,0,0,0,0,1,0,28,2,0 +906,1,3,2,6,1,0, ,2,0,0,0,0,1,0,27,2,0 +907,1,3,1,3,1,1,When the counter stopped I had to refresh the page to get to the questions.,1,1,0,0,0,0,0,27,2,0 +908,1,2,2,3,4,0, ,1,0,0,0,0,1,0,18,2,1 +909,1,3,1,2,1,0, ,1,0,0,0,0,1,0,24,2,0 +910,1,2,1,1,2,0, ,2,0,0,0,0,1,0,51,2,0 +911,1,1,1,6,5,0, ,2,1,0,0,0,0,0,21,2,0 +912,2,1,2,3,6,0, ,1,0,0,0,0,1,0,62,2,1 +913,1,3,2,2,2,0, ,1,0,0,0,0,1,0,33,2,0 +914,1,3,1,1,1,0, ,2,0,0,0,0,1,0,29,2,0 +915,1,2,1,1,5,0, ,2,0,0,0,0,0,1,35,1,0 +916,2,1,1,5,4,0, ,2,0,0,0,0,1,0,27,2,1 +917,1,2,2,1,4,0, ,2,0,0,0,0,1,0,43,1,0 +918,1,3,2,5,2,0, ,1,0,0,1,0,0,0,34,1,0 +919,1,1,2,5,6,0, ,1,0,0,0,0,1,0,24,2,0 +920,1,1,1,3,5,0, ,2,0,0,0,0,1,0,22,2,0 +921,1,1,1,2,5,0, ,2,0,0,0,0,1,0,48,2,0 +922,1,2,1,2,4,0, ,2,1,0,0,0,0,0,35,2,0 +923,1,3,1,1,1,0, ,2,0,0,0,0,1,0,35,2,0 +924,1,2,1,2,2,0, ,2,0,0,0,0,1,0,60,2,0 +925,1,1,2,4,7,0, ,2,0,0,0,0,1,0,37,2,0 +926,1,2,2,2,4,0, ,1,0,0,1,0,0,0,22,2,0 +927,1,3,2,1,1,0, ,2,0,0,0,0,1,0,28,2,0 +928,1,3,2,2,2,0, ,2,0,0,1,0,1,0,24,2,0 +929,1,2,2,7,7,0, ,1,0,0,0,0,1,0,30,1,0 +930,1,3,1,3,1,0, ,2,0,0,0,0,1,0,34,2,0 +931,1,3,1,2,4,0, ,2,0,0,1,0,0,0,26,2,0 +932,1,2,2,3,7,0, ,2,1,0,0,0,1,0,26,2,0 +933,1,1,2,1,3,0, ,2,1,0,0,0,0,0,39,2,0 +934,1,1,1,1,1,0, ,2,0,0,0,0,1,0,37,2,1 +935,1,1,2,4,5,0, ,1,0,0,0,0,1,0,35,2,0 +936,1,2,2,2,4,0, ,2,0,0,0,0,1,0,30,2,0 +937,1,1,1,1,1,0, ,1,0,0,0,0,1,0,55,2,1 +938,1,3,1,1,1,0, ,2,0,0,0,0,1,0,57,2,0 +939,1,3,2,1,1,0, ,2,0,0,0,0,1,0,37,2,0 +940,1,1,1,1,1,0, ,2,1,0,0,0,0,0,50,2,0 +941,1,3,2,1,1,0, ,2,0,0,0,0,1,0,54,2,0 +942,1,1,2,6,7,0, ,1,0,0,0,0,1,0,29,2,0 +943,2,2,1,3,4,0, ,1,0,0,0,0,1,0,19,2,0 +944,1,2,2,5,4,0, ,1,0,0,0,0,1,0,20,2,0 +945,1,3,2,2,2,0, ,1,0,0,0,0,1,0,40,2,0 +946,1,3,1,2,2,0, ,2,0,0,0,0,1,0,47,2,1 +947,1,2,1,1,1,0, ,1,0,1,0,0,0,0,19,1,1 +948,1,1,2,5,5,0, ,2,0,0,0,0,1,0,44,2,0 +949,1,3,2,2,2,0, ,2,1,0,0,0,0,0,32,2,0 +950,1,2,1,2,1,0, ,2,0,0,0,0,1,0,32,2,0 +951,1,3,1,1,1,0, ,2,1,0,0,0,0,0,23,2,0 +952,1,3,1,3,1,0, ,1,0,0,0,0,1,0,25,1,0 +953,1,1,2,2,3,0, ,2,0,0,0,0,1,0,21,2,0 +954,2,1,1,5,5,0, ,1,0,0,1,0,0,0,45,2,0 +955,1,2,1,5,1,0, ,2,0,0,0,0,1,0,53,2,0 +956,1,2,2,5,6,0, ,1,0,0,0,0,1,0,46,2,0 +957,1,1,2,1,4,0, ,2,0,0,0,0,1,0,37,1,0 +958,1,2,2,6,5,0, ,1,0,0,0,0,1,0,24,1,0 +959,1,1,1,5,2,1,i did not see a video or directions of any sort,2,0,0,0,0,1,0,56,2,1 +960,1,1,1,1,5,0, ,1,1,0,0,0,0,0,33,2,0 +961,1,3,2,3,3,0, ,2,0,0,1,0,0,0,30,2,0 +962,1,3,2,1,1,0, ,2,1,0,0,0,0,0,29,2,0 +963,1,1,2,4,7,0, ,2,0,0,1,0,0,0,21,2,0 +964,1,2,1,4,3,0, ,2,0,0,0,0,1,0,40,2,0 +965,1,2,1,5,5,0, ,1,0,0,0,0,1,0,35,1,0 +966,1,2,2,3,7,0, ,2,0,0,0,0,1,0,31,2,0 +967,1,3,1,2,1,0, ,2,1,0,0,0,0,0,42,2,0 +968,1,1,1,3,1,0, ,2,0,0,0,0,1,0,56,2,0 +969,1,3,2,6,1,0, ,1,0,0,0,0,1,0,30,2,0 +970,1,1,2,3,3,0, ,2,0,0,0,0,1,0,27,2,0 +971,1,2,2,3,5,0, ,2,0,1,0,0,0,0,24,2,0 +972,1,3,1,4,1,0, ,2,0,0,0,0,1,0,38,2,0 +973,1,1,1,5,5,0, ,1,0,0,0,0,1,0,32,1,0 +974,1,1,2,2,1,0, ,1,0,0,0,0,1,0,31,2,0 +975,1,3,2,7,1,0, ,2,0,0,0,0,1,0,23,1,0 +976,1,2,2,4,7,0, ,2,0,0,0,0,1,0,56,2,0 +977,1,3,2,2,1,0, ,1,0,1,0,0,0,0,31,2,0 +978,1,3,1,4,3,0, ,1,0,1,0,0,0,0,31,2,0 +979,1,2,2,1,6,0, ,2,0,1,0,0,0,0,50,2,0 +980,1,2,1,5,2,0, ,2,0,0,0,0,1,0,41,2,0 +981,1,1,2,3,6,0, ,1,0,0,0,0,1,0,35,2,0 +982,1,2,1,4,1,0, ,1,0,0,0,0,1,0,29,1,0 +983,1,1,1,2,4,0, ,2,0,0,0,0,1,0,67,1,0 +984,1,3,1,2,2,0, ,1,0,0,0,0,1,0,35,2,0 +985,1,1,1,2,1,0, ,2,0,0,0,0,1,0,43,2,0 +986,1,2,1,4,4,0, ,2,0,0,0,0,1,0,43,1,0 +987,1,3,1,4,2,0, ,2,1,0,0,0,0,0,43,2,0 +988,1,1,2,5,6,0, ,2,0,0,0,0,1,0,21,2,0 +989,1,3,2,4,2,0, ,2,0,0,0,0,1,0,21,2,0 +990,1,3,1,1,1,0, ,2,0,0,0,0,1,0,38,2,0 +991,1,2,2,2,3,0, ,1,0,0,0,0,1,0,28,1,0 +992,1,1,2,3,7,0, ,2,0,0,1,0,0,0,44,2,0 +993,1,2,2,4,6,0, ,1,0,0,0,0,1,0,24,1,0 +994,1,2,2,1,6,0, ,1,0,0,0,0,1,0,47,2,0 +995,1,3,2,2,1,0, ,1,0,0,0,0,1,0,41,2,0 +996,1,2,1,3,2,0, ,1,0,0,0,0,1,0,29,2,0 +997,1,1,1,1,1,0, ,1,0,0,0,0,1,0,55,2,1 +998,1,2,1,1,1,0, ,2,0,0,0,0,1,0,33,2,1 +999,1,1,1,2,1,0, ,2,0,0,0,0,1,0,23,2,0 +1000,1,3,1,2,1,0, ,1,0,0,0,0,1,0,27,2,0 +1001,1,3,2,5,2,0, ,2,0,0,0,0,1,0,23,2,0 +1002,1,1,2,3,2,0, ,2,0,0,0,0,1,0,60,2,0 +1003,1,2,2,5,6,0, ,2,0,0,1,0,0,0,26,1,0 +1004,1,2,2,4,5,0, ,2,0,0,0,0,1,0,34,2,0 +1005,1,3,2,3,2,0, ,1,0,0,0,0,1,0,31,2,0 +1006,1,3,1,1,1,0, ,2,0,0,0,0,1,0,51,2,0 +1007,1,2,2,1,7,0, ,2,0,0,0,0,1,0,32,2,0 +1008,1,2,1,7,3,0, ,1,0,0,1,0,0,0,25,1,0 +1009,1,1,2,3,6,0, ,1,0,0,1,0,0,0,28,2,0 +1010,1,1,1,4,4,0, ,1,0,0,0,0,1,0,35,2,0 +1011,1,1,2,4,4,0, ,1,0,0,0,0,1,0,32,2,0 +1012,1,1,1,2,3,0, ,1,0,0,1,0,0,0,28,2,0 +1013,1,1,1,1,1,0, ,3,0,0,0,0,1,0,27,2,1 +1014,1,3,2,4,4,0, ,2,0,0,0,0,1,0,64,2,1 +1015,1,2,2,1,6,0, ,1,0,0,0,0,1,0,30,2,0 +1016,1,1,1,1,4,0, ,2,0,0,0,0,1,0,24,2,1 +1017,1,3,1,1,1,0, ,1,0,0,0,0,1,0,31,2,0 +1018,1,3,1,2,2,0, ,1,0,0,0,0,1,0,36,2,0 +1019,1,1,2,5,5,0, ,2,1,0,0,0,0,0,27,2,0 +1020,1,3,2,2,2,0, ,1,0,0,0,0,1,0,38,2,0 +1021,1,3,2,1,1,0, ,1,0,0,0,0,1,0,31,2,0 +1022,1,2,1,4,4,0, ,1,0,1,0,0,0,0,20,2,0 +1023,1,2,2,6,6,0, ,2,1,0,0,0,0,0,22,2,0 +1024,1,2,1,5,1,0, ,1,0,0,0,0,1,0,19,2,1 +1025,1,3,2,2,7,0, ,2,0,0,0,0,1,0,44,2,0 +1026,1,1,2,5,6,0, ,2,1,0,0,0,0,0,26,1,0 +1027,1,3,1,3,5,0, ,1,0,0,1,0,0,0,30,2,1 +1028,1,1,2,4,5,0, ,1,0,1,0,0,0,0,33,2,0 +1029,1,3,1,6,1,0, ,1,0,0,1,0,0,0,35,2,0 +1030,1,2,1,3,2,0, ,2,0,0,0,0,1,0,51,1,0 +1031,1,1,1,4,3,0, ,1,0,0,0,0,1,0,34,2,1 +1032,1,3,1,1,1,0, ,1,0,0,1,0,0,0,35,1,0 +1033,1,2,1,4,1,1,did not see any information about the trick,1,0,0,0,0,1,0,34,2,1 +1034,1,1,2,5,6,0, ,1,0,0,1,0,0,0,49,2,0 +1035,1,3,2,1,6,0, ,1,0,0,0,0,1,0,26,2,0 \ No newline at end of file diff --git a/data/Brazil_death_anxiety.rda b/data/Brazil_death_anxiety.rda new file mode 100644 index 00000000..98f13012 Binary files /dev/null and b/data/Brazil_death_anxiety.rda differ diff --git a/data/EVs_region.rda b/data/EVs_region.rda new file mode 100644 index 00000000..a4ce4957 Binary files /dev/null and b/data/EVs_region.rda differ diff --git a/data/county_2023.rda b/data/county_2023.rda new file mode 100644 index 00000000..0d921f14 Binary files /dev/null and b/data/county_2023.rda differ diff --git a/data/generation_climate_action.rda b/data/generation_climate_action.rda new file mode 100644 index 00000000..a2f2d6e4 Binary files /dev/null and b/data/generation_climate_action.rda differ diff --git a/data/sdea.rda b/data/sdea.rda new file mode 100644 index 00000000..2d2168d0 Binary files /dev/null and b/data/sdea.rda differ diff --git a/data/skill_acquisition.rda b/data/skill_acquisition.rda new file mode 100644 index 00000000..d7847f0a Binary files /dev/null and b/data/skill_acquisition.rda differ diff --git a/man/Brazil_death_anxiety.Rd b/man/Brazil_death_anxiety.Rd new file mode 100644 index 00000000..47926e51 --- /dev/null +++ b/man/Brazil_death_anxiety.Rd @@ -0,0 +1,55 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/data-Brazil_death_anxiety.R +\docType{data} +\name{Brazil_death_anxiety} +\alias{Brazil_death_anxiety} +\title{Brazil death anxiety} +\format{ +A data frame with 200 rows and 28 variables. +\describe{ +\item{participant}{Participant id} +\item{gender}{Gender of pariticipant.} +\item{year_born}{Year participant was born.} +\item{age_in_2015}{Age of participant when data was collected.} +\item{ethnicity}{Ethnicity of participant.} +\item{marital_status}{Marital status of participant.} +\item{employment}{Employment status of participant.} +\item{occupation}{Occupation of participant.} +\item{fivefears_1}{The first entry in a free list of participants’ fears and worries.} +\item{fivefears_2}{The second entry in a free list of participants’ fears and worries.} +\item{fivefears_3}{The third entry in a free list of participants’ fears and worries.} +\item{fivefears_4}{The fourth entry in a free list of participants’ fears and worries.} +\item{fivefears_5}{The fifth entry in a free list of participants’ fears and worries.} +\item{worry_death}{Do you worry about dying?} +\item{incomplete_bucket_list}{Does it bother you that you may die before you have done everything you wanted to?} +\item{deathly_ill}{Do you worry that you may be very ill for a long time before you die?} +\item{concern_for_others}{Does it upset you to think that others may see you suffering when you die?} +\item{painful_death}{Do you worry that dying may be very painful?} +\item{loved_ones}{Do you worry that the persons most close to you won’t be with you when you are dying?} +\item{die_alone}{Do you worry that you may be alone when you are dying?} +\item{cognitive_function}{Does the thought bother you that you might lose control of your mind before death?} +\item{expenses_burden}{Do you worry that expenses connected with your dying will be a burden for other people?} +\item{as_you_wish}{Does it worry you that your instructions or will about your belongings may not be carried out after you die?} +\item{buried_alive}{Are you afraid that you may be buried before you are really dead?} +\item{left_behind}{Does the thought of leaving loved ones behind you when you die disturb you?} +\item{remembered}{Do you worry that those you care about may not remember you after your death?} +\item{permenant}{Does the thought worry you that with death you may be gone forever?} +\item{after_death}{Are you worried about not knowing what to expect after death?} +} +} +\source{ +Jong, J., Halberstadt, J., Bluemke, M. et al. Death anxiety, exposure to death, mortuary preferences, and religiosity in five countries. Sci Data 6, 154 (2019). \href{https://doi.org/10.1038/s41597-019-0163-x}{Link to doi} +} +\usage{ +Brazil_death_anxiety +} +\description{ +The dataset consists of responses from 200 individuals from Brazil. +The main measure is the DAQ, a 15-item multidimensional scale that +measures fears related to suffering, loneliness, the unknown, and +personal extinction (see Variable Description). The scale measures +range from 0 (“not at all”) to 8 (“very much”). In addition, the +file contains a free-list measure of participants’ fears and worries, +which may be coded, and several demographic variables. +} +\keyword{datasets} diff --git a/man/EVs_region.Rd b/man/EVs_region.Rd new file mode 100644 index 00000000..bac60d0f --- /dev/null +++ b/man/EVs_region.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/data-EVs_region.R +\docType{data} +\name{EVs_region} +\alias{EVs_region} +\title{Electric vehicles} +\format{ +A data frame with 5085 observations on the following 2 variables. +\describe{ +\item{\code{region}}{a factor with levels \code{Urban, Suburban} and \code{Rural}} +\item{\code{consideration}}{a factor with levels \code{Not too or not at all likely}, \code{Very or somewhat likely} and \code{Do not expect to buy a vehicle}} +} +} +\source{ +Pew Research Center, Survey of U.S. adults conducted April 28-May 4, 2025. "Americans' Views on Energy at the Start of Trump's Second Term" +} +\usage{ +EVs_region +} +\description{ +Pew research results regarding consideration of buying electric vehicle. +} +\keyword{datasets} diff --git a/man/county_2023.Rd b/man/county_2023.Rd new file mode 100644 index 00000000..29cd051a --- /dev/null +++ b/man/county_2023.Rd @@ -0,0 +1,64 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/data-county_2023.R +\docType{data} +\name{county_2023} +\alias{county_2023} +\title{county_2023} +\format{ +A data frame with 3144 rows and 43 columns. +\describe{ +\item{\code{geoid}}{Unique numeric code used by the U.S. Census Bureau to identify specific geographic areas.} +\item{\code{county_state}}{Name of county and state.} +\item{\code{name}}{Name of county.} +\item{\code{state}}{Name of state.} +\item{\code{individual_income}}{Median individual income for the county, measure in 2018 USD.} +\item{\code{population_size}}{Number of people residing in the county.} +\item{\code{white}}{Percent of the population who identified as only white.} +\item{\code{african_american}}{Percent of the population who identified as only Black or African American.} +\item{\code{age}}{Median age of those who live in the county, measured in years.} +\item{\code{age_under_5}}{Percent of the population under the age of 5.} +\item{\code{age_85_plus}}{Percent of the population age 85 and older.} +\item{\code{age_18_plus}}{Percent of the population age 18 and older.} +\item{\code{age_65_plus}}{Percent of the population age 65 and older.} +\item{\code{travel_time}}{Mean travel time to work, measured in minutes.} +\item{\code{household_size}}{Mean household size.} +\item{\code{family_size}}{Mean family size.} +\item{\code{one_unit_structure}}{Percent of properties with a residential building that contains a single housing dwelling unit.} +\item{\code{two_unit_structure}}{Percent of properties with a residential building that contains two or more separate housing units (such as a duplex or apartments).} +\item{\code{mobile_and_other}}{Percent of properties with mobile homes and all other types of housing structures.} +\item{\code{individual_income_25_plus}}{Median individual income for those age 25 or older.} +\item{\code{hs_grad}}{Percent of the population over the age 25 or older with at least a high school diploma.} +\item{\code{college_grad}}{Percent of the population over the age 25 or older with at least a Bachelor's Degree.} +\item{\code{total_households}}{Total number of households in the county.} +\item{\code{spanish_speaking}}{Percent of households that speak Spanish.} +\item{\code{indo_european_language}}{Percent of households that speak an Indo-European language other than English.} +\item{\code{api_language}}{Percent of households that speak an Asian and Pacific Islander language.} +\item{\code{non_euro_api}}{Percent of households speaking an non-European or Asian and Pacific Islander language.} +\item{\code{limited_english}}{Percent of households that speak limited English.} +\item{\code{poverty}}{Percent of population living below the poverty line.} +\item{\code{poverty_18}}{Percent of population under the age of 18 living below the poverty line.} +\item{\code{poverty_65}}{Percent of the population over the age of 65 living below the povery line.} +\item{\code{household_income_mean}}{Mean household income, measured in 2018 USD.} +\item{\code{household_income_median}}{Median household income, measured in 2018 USD.} +\item{\code{per_capita_income}}{Mean income per capita, measured in 2018 USD.} +\item{\code{veterans}}{Percent of the civilian population age 18 or older who served in the military.} +\item{\code{unemployment_20_64}}{Unemployment rate for those age 20 to 64.} +\item{\code{uninsured}}{Percent of the civilian population who is uninsured.} +\item{\code{uninsured_6}}{Percent of population under the age of 6 who are uninsured.} +\item{\code{uninsured_19}}{Percent of the population under the age of 19 who are uninsured.} +\item{\code{uninsured_65}}{Percent of the population age 65 and older who are uninsured.} +\item{\code{computers}}{Percent of households that have a laptop or desktop computer.} +\item{\code{smartphones}}{Percent of households that have a smartphone.} +\item{\code{broadband}}{Percent of households with computers that have access to broadband internet.} +} +} +\source{ +\url{https://www.census.gov/programs-surveys/acs/data.html} collected using the \code{tidycensus} package. +} +\usage{ +county_2023 +} +\description{ +County level data from the US Census American Community Survey 2023 5-year estimates. +} +\keyword{datasets} diff --git a/man/generation_climate_action.Rd b/man/generation_climate_action.Rd new file mode 100644 index 00000000..df239675 --- /dev/null +++ b/man/generation_climate_action.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/data-generation_climate_action.R +\docType{data} +\name{generation_climate_action} +\alias{generation_climate_action} +\title{Poll on climate change activism} +\format{ +A data frame with 13664 observations on the following 2 variables. +\describe{ +\item{\code{generation}}{a factor with levels \code{Gen Z, Millenial, Gen X} and \code{Boomer & older}} +\item{\code{response}}{a factor with levels \code{Took action} and \code{Did not take action}} +} +} +\source{ +Pew Research Center, American Trends Panel. Survey conducted April 20 - 29, 2021. "Gen Z, Millennials Stand Out for Climate Change Activism, Social Media Engagement With Issue" +} +\usage{ +generation_climate_action +} +\description{ +A Pew Research poll published in May of 2021 looks at how Americans' attitudes about climate change differ by generation, party and other factors. +} +\keyword{datasets} diff --git a/man/openintro-package.Rd b/man/openintro-package.Rd index 495c73eb..bddc8754 100644 --- a/man/openintro-package.Rd +++ b/man/openintro-package.Rd @@ -24,7 +24,6 @@ Useful links: Authors: \itemize{ - \item Mine Çetinkaya-Rundel \email{cetinkaya.mine@gmail.com} (\href{https://orcid.org/0000-0001-6452-2420}{ORCID}) \item David Diez \email{david.m.diez@gmail.com} \item Andrew Bray \email{andrew.bray@gmail.com} \item Albert Y. Kim \email{albert.ys.kim@gmail.com} (\href{https://orcid.org/0000-0001-7824-306X}{ORCID}) diff --git a/man/openintro_pal.Rd b/man/openintro_pal.Rd index 7438ee5b..c8c121e8 100644 --- a/man/openintro_pal.Rd +++ b/man/openintro_pal.Rd @@ -11,7 +11,7 @@ openintro_pal(palette = "main", reverse = FALSE, ...) \item{reverse}{Boolean indicating whether the palette should be reversed} -\item{...}{Additional arguments to pass to \code{\link[grDevices:colorRampPalette]{grDevices::colorRampPalette()}}} +\item{...}{Additional arguments to pass to \code{\link[grDevices:colorRamp]{grDevices::colorRampPalette()}}} } \description{ Not exported diff --git a/man/scale_color_openintro.Rd b/man/scale_color_openintro.Rd index fd404c4a..c02a3627 100644 --- a/man/scale_color_openintro.Rd +++ b/man/scale_color_openintro.Rd @@ -14,7 +14,7 @@ scale_color_openintro(palette = "main", discrete = TRUE, reverse = FALSE, ...) \item{reverse}{Boolean indicating whether the palette should be reversed} \item{...}{Additional arguments passed to \code{\link[ggplot2:discrete_scale]{ggplot2::discrete_scale()}} or -\code{\link[ggplot2:scale_color_gradientn]{ggplot2::scale_color_gradientn()}}, used respectively when discrete is TRUE or FALSE} +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_color_gradientn()}}, used respectively when discrete is TRUE or FALSE} } \description{ Color scale constructor for OpenIntro IMS colors diff --git a/man/scale_fill_openintro.Rd b/man/scale_fill_openintro.Rd index d23c6600..96d18a4f 100644 --- a/man/scale_fill_openintro.Rd +++ b/man/scale_fill_openintro.Rd @@ -14,7 +14,7 @@ scale_fill_openintro(palette = "main", discrete = TRUE, reverse = FALSE, ...) \item{reverse}{Boolean indicating whether the palette should be reversed} \item{...}{Additional arguments passed to \code{\link[ggplot2:discrete_scale]{ggplot2::discrete_scale()}} or -\code{\link[ggplot2:scale_fill_gradientn]{ggplot2::scale_fill_gradientn()}}, used respectively when discrete is TRUE or FALSE} +\code{\link[ggplot2:scale_gradient]{ggplot2::scale_fill_gradientn()}}, used respectively when discrete is TRUE or FALSE} } \description{ Fill scale constructor for OpenIntro IMS colors diff --git a/man/sdea.Rd b/man/sdea.Rd new file mode 100644 index 00000000..964112c6 --- /dev/null +++ b/man/sdea.Rd @@ -0,0 +1,47 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/data-sdea.R +\docType{data} +\name{sdea} +\alias{sdea} +\title{Spatial distancing, emotional arousal} +\format{ +A data frame with 175 rows and 14 variables. +\describe{ +\item{id}{Subject ID number.} +\item{gender}{M = Male; F = Female.} +\item{age}{Age of the participants.} +\item{condition}{1 = Reactivation + Regulation; 2= No Regulation; 3 = No Reactivation; 4 = Neither.} +\item{sds_17}{Social desirability scale.} +\item{erq_reappraisal}{motion Regulation Questionnaire - Reappraisal Subscale.} +\item{erq_suppression}{Emotion Regulation Questionnaire - Suppression Subscale.} +\item{day1_pre_suds}{Day 1 Subjective Units of Distress Scale Pre-Session.} +\item{day1_post_suds}{Day 1 Subjective Units of Distress Scale Post-Session.} +\item{day2_pre_suds}{Day 2 Subjective Units of Distress Scale Pre-Session.} +\item{day2_post_suds}{Day 2 Subjective Units of Distress Scale Post-Session.} +\item{day3_pre_suds}{Day 3 Subjective Units of Distress Scale Pre-Session.} +\item{day3_post_suds}{Day 3 Subjective Units of Distress Scale Post-Session.} +\item{race}{The self identified race of the participant.} +} +} +\source{ +Parikh, N., McGovern, B. & LaBar, K.S. Spatial distancing reduces emotional arousal to reactivated memories. Psychon Bull Rev 26, 1967–1973 (2019).\href{https://doi.org/10.3758/s13423-019-01648-z}{Link to doi} + +\if{html}{\out{